2025-07-24T03:41:58.7583177Z Current runner version: '2.327.0' 2025-07-24T03:41:58.7594837Z Runner name: 'i-02d30d6e44b6b83c6' 2025-07-24T03:41:58.7595923Z Runner group name: 'default' 2025-07-24T03:41:58.7597046Z Machine name: 'EC2AMAZ-IFQ8336' 2025-07-24T03:41:58.7600788Z ##[group]GITHUB_TOKEN Permissions 2025-07-24T03:41:58.7603973Z Contents: read 2025-07-24T03:41:58.7604832Z Metadata: read 2025-07-24T03:41:58.7605519Z ##[endgroup] 2025-07-24T03:41:58.7608426Z Secret source: Actions 2025-07-24T03:41:58.7609339Z Prepare workflow directory 2025-07-24T03:41:58.8192471Z Prepare all required actions 2025-07-24T03:41:58.8237022Z Getting action download info 2025-07-24T03:41:59.0395974Z Download action repository 'pytorch/test-infra@main' (SHA:e32c622fbd62d34f173b9f131f1eca78782b2be2) 2025-07-24T03:43:05.5197997Z Download action repository 'pytorch/pytorch@main' (SHA:07df6ba7f5597488a93b3855d52d2ead55675125) 2025-07-24T03:46:17.6154754Z Download action repository 'seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-07-24T03:46:18.3037355Z Getting action download info 2025-07-24T03:46:18.5017057Z Download action repository 'actions/checkout@v4' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-07-24T03:46:19.0486895Z Uses: pytorch/pytorch/.github/workflows/_win-build.yml@refs/tags/ciflow/trunk/149961 (27c8ef1839e0747b36769efb192befc9308ff93c) 2025-07-24T03:46:19.0491185Z ##[group] Inputs 2025-07-24T03:46:19.0491558Z build-environment: win-vs2022-cuda12.6-py3 2025-07-24T03:46:19.0491879Z cuda-version: 12.6 2025-07-24T03:46:19.0492559Z use-xpu: false 2025-07-24T03:46:19.0492760Z xpu-version: 2025-07-24T03:46:19.0492960Z vc-year: 2022 2025-07-24T03:46:19.0493163Z build-with-debug: false 2025-07-24T03:46:19.0493408Z sync-tag: 2025-07-24T03:46:19.0493589Z test-matrix: 2025-07-24T03:46:19.0493831Z runner: windows.4xlarge.nonephemeral 2025-07-24T03:46:19.0494110Z ##[endgroup] 2025-07-24T03:46:19.0494377Z Complete job name: win-vs2022-cuda12.6-py3 / build 2025-07-24T03:46:19.1137719Z ##[group]Run git config --global core.longpaths true 2025-07-24T03:46:19.1138355Z git config --global core.longpaths true 2025-07-24T03:46:19.1138718Z git config --global core.symlinks true 2025-07-24T03:46:19.1139025Z  2025-07-24T03:46:19.1139385Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-07-24T03:46:19.1139972Z # the directory on Windows and prevent GHA from checking out as reported 2025-07-24T03:46:19.1140464Z # in https://github.com/actions/checkout/issues/1018 2025-07-24T03:46:19.1140851Z git config --global core.fsmonitor false 2025-07-24T03:46:19.1166347Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:46:19.1167066Z env: 2025-07-24T03:46:19.1167264Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:19.1167499Z ##[endgroup] 2025-07-24T03:46:20.0187978Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-07-24T03:46:20.0188522Z env: 2025-07-24T03:46:20.0188716Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:20.0188964Z ##[endgroup] 2025-07-24T03:46:20.4575689Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-07-24T03:46:20.4576497Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-07-24T03:46:20.4577173Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-07-24T03:46:20.4577685Z # handle tool 2025-07-24T03:46:20.4578128Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-07-24T03:46:20.4578619Z Foreach ($process In $processes) { 2025-07-24T03:46:20.4578960Z  Try { 2025-07-24T03:46:20.4579626Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-07-24T03:46:20.4581914Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-07-24T03:46:20.4582388Z  } 2025-07-24T03:46:20.4582665Z  Catch { 2025-07-24T03:46:20.4583006Z  Write-Output "No leftover $process process, continuing" 2025-07-24T03:46:20.4583438Z  Write-Output $_ 2025-07-24T03:46:20.4583722Z  } 2025-07-24T03:46:20.4583950Z } 2025-07-24T03:46:20.4584145Z  2025-07-24T03:46:20.4584706Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-07-24T03:46:20.4585330Z # for hung processes 2025-07-24T03:46:20.4585628Z Foreach ($process In $processes) { 2025-07-24T03:46:20.4585987Z  Try { 2025-07-24T03:46:20.4586433Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-07-24T03:46:20.4586956Z  } 2025-07-24T03:46:20.4587222Z  Catch { 2025-07-24T03:46:20.4587477Z  Write-Output $_ 2025-07-24T03:46:20.4587883Z  } 2025-07-24T03:46:20.4588113Z } 2025-07-24T03:46:20.4588343Z  2025-07-24T03:46:20.4588545Z Try { 2025-07-24T03:46:20.4588844Z  # Print all the processes for debugging 2025-07-24T03:46:20.4589375Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-07-24T03:46:20.4589897Z } 2025-07-24T03:46:20.4590150Z Catch { 2025-07-24T03:46:20.4590576Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-07-24T03:46:20.4591185Z  Write-Output $_ 2025-07-24T03:46:20.4591471Z } 2025-07-24T03:46:20.4609991Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T03:46:20.4610501Z env: 2025-07-24T03:46:20.4610785Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:20.4611051Z ##[endgroup] 2025-07-24T03:46:20.8805853Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T03:46:20.8872861Z Finished 2025-07-24T03:46:22.0914600Z No leftover python process, continuing 2025-07-24T03:46:22.1655698Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-07-24T03:46:22.1656561Z At C:\actions-runner\_work\_temp\5af2afe9-c0a5-443f-81d3-898365dc6026.ps1:9 char:5 2025-07-24T03:46:22.1657319Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T03:46:22.1657863Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:22.1658412Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-07-24T03:46:22.1659301Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T03:46:22.1660007Z 2025-07-24T03:46:22.1678354Z No leftover ninja process, continuing 2025-07-24T03:46:22.1687290Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-07-24T03:46:22.1688075Z At C:\actions-runner\_work\_temp\5af2afe9-c0a5-443f-81d3-898365dc6026.ps1:9 char:5 2025-07-24T03:46:22.1688695Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T03:46:22.1689210Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:22.1689815Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-07-24T03:46:22.1690700Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T03:46:22.1691396Z 2025-07-24T03:46:22.1703410Z No leftover cl process, continuing 2025-07-24T03:46:22.1715456Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-07-24T03:46:22.1716263Z At C:\actions-runner\_work\_temp\5af2afe9-c0a5-443f-81d3-898365dc6026.ps1:9 char:5 2025-07-24T03:46:22.1717664Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T03:46:22.1718209Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:22.1718778Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-07-24T03:46:22.1719731Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T03:46:22.1720421Z 2025-07-24T03:46:22.1734644Z No leftover nvcc process, continuing 2025-07-24T03:46:22.1748258Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-07-24T03:46:22.1749059Z At C:\actions-runner\_work\_temp\5af2afe9-c0a5-443f-81d3-898365dc6026.ps1:9 char:5 2025-07-24T03:46:22.1749752Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T03:46:22.1750241Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:22.1750795Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-07-24T03:46:22.1751680Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T03:46:22.1752412Z 2025-07-24T03:46:22.1795601Z No leftover sccache process, continuing 2025-07-24T03:46:22.1809396Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-07-24T03:46:22.1811712Z At C:\actions-runner\_work\_temp\5af2afe9-c0a5-443f-81d3-898365dc6026.ps1:9 char:5 2025-07-24T03:46:22.1812355Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T03:46:22.1812922Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:22.1813452Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-07-24T03:46:22.1814370Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T03:46:22.1815032Z 2025-07-24T03:46:22.1824212Z No leftover git process, continuing 2025-07-24T03:46:22.1835437Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-07-24T03:46:22.1836227Z At C:\actions-runner\_work\_temp\5af2afe9-c0a5-443f-81d3-898365dc6026.ps1:9 char:5 2025-07-24T03:46:22.1836876Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T03:46:22.1837328Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:22.1837886Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-07-24T03:46:22.1838770Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T03:46:22.1839426Z 2025-07-24T03:46:22.4804330Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-24T03:46:22.4805361Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-24T03:46:22.4806042Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-24T03:46:22.4806579Z At C:\actions-runner\_work\_temp\5af2afe9-c0a5-443f-81d3-898365dc6026.ps1:21 char:6 2025-07-24T03:46:22.4807296Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T03:46:22.4807807Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:22.4808285Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-24T03:46:22.4809059Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-24T03:46:22.4809694Z 2025-07-24T03:46:22.4831891Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-24T03:46:22.4832903Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-24T03:46:22.4833814Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-24T03:46:22.4834356Z At C:\actions-runner\_work\_temp\5af2afe9-c0a5-443f-81d3-898365dc6026.ps1:21 char:6 2025-07-24T03:46:22.4834982Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T03:46:22.4835464Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:22.4835967Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-24T03:46:22.4836701Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-24T03:46:22.4837353Z 2025-07-24T03:46:22.4860846Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-24T03:46:22.4861799Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-24T03:46:22.4862570Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-24T03:46:22.4863080Z At C:\actions-runner\_work\_temp\5af2afe9-c0a5-443f-81d3-898365dc6026.ps1:21 char:6 2025-07-24T03:46:22.4863715Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T03:46:22.4864246Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:22.4864736Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-24T03:46:22.4865493Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-24T03:46:22.4866128Z 2025-07-24T03:46:22.4890899Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-24T03:46:22.4892474Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-24T03:46:22.4893687Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-24T03:46:22.4894587Z At C:\actions-runner\_work\_temp\5af2afe9-c0a5-443f-81d3-898365dc6026.ps1:21 char:6 2025-07-24T03:46:22.4895623Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T03:46:22.4896563Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:22.4897521Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-24T03:46:22.4898862Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-24T03:46:22.4900025Z 2025-07-24T03:46:22.4920650Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-24T03:46:22.4922128Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-24T03:46:22.4923500Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-24T03:46:22.4924083Z At C:\actions-runner\_work\_temp\5af2afe9-c0a5-443f-81d3-898365dc6026.ps1:21 char:6 2025-07-24T03:46:22.4924731Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T03:46:22.4925232Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:22.4925745Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-24T03:46:22.4926504Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-24T03:46:22.4927132Z 2025-07-24T03:46:22.4950697Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-24T03:46:22.4951728Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-24T03:46:22.4952516Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-24T03:46:22.4953076Z At C:\actions-runner\_work\_temp\5af2afe9-c0a5-443f-81d3-898365dc6026.ps1:21 char:6 2025-07-24T03:46:22.4953871Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T03:46:22.4954332Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:22.4954772Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-24T03:46:22.4955474Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-24T03:46:22.4956047Z 2025-07-24T03:46:22.4979576Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-24T03:46:22.4980465Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-24T03:46:22.4981078Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-24T03:46:22.4981559Z At C:\actions-runner\_work\_temp\5af2afe9-c0a5-443f-81d3-898365dc6026.ps1:21 char:6 2025-07-24T03:46:22.4982144Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T03:46:22.4982647Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:46:22.4983124Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-24T03:46:22.4983832Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-24T03:46:22.4984400Z 2025-07-24T03:46:22.7528913Z Caption CommandLine ProcessId 2025-07-24T03:46:22.7529459Z 2025-07-24T03:46:22.7529816Z System Idle Process 0 2025-07-24T03:46:22.7530300Z 2025-07-24T03:46:22.7531723Z System 4 2025-07-24T03:46:22.7532178Z 2025-07-24T03:46:22.7532533Z Registry 168 2025-07-24T03:46:22.7532979Z 2025-07-24T03:46:22.7534181Z smss.exe 408 2025-07-24T03:46:22.7535429Z 2025-07-24T03:46:22.7535714Z csrss.exe 520 2025-07-24T03:46:22.7536125Z 2025-07-24T03:46:22.7536695Z csrss.exe 596 2025-07-24T03:46:22.7537111Z 2025-07-24T03:46:22.7537875Z wininit.exe 648 2025-07-24T03:46:22.7539006Z 2025-07-24T03:46:22.7540105Z winlogon.exe winlogon.exe 668 2025-07-24T03:46:22.7540949Z 2025-07-24T03:46:22.7541243Z services.exe 740 2025-07-24T03:46:22.7541651Z 2025-07-24T03:46:22.7542830Z lsass.exe C:\Windows\system32\lsass.exe 760 2025-07-24T03:46:22.7543346Z 2025-07-24T03:46:22.7543881Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 888 2025-07-24T03:46:22.7544546Z 2025-07-24T03:46:22.7545076Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 912 2025-07-24T03:46:22.7545759Z 2025-07-24T03:46:22.7546150Z fontdrvhost.exe "fontdrvhost.exe" 936 2025-07-24T03:46:22.7546659Z 2025-07-24T03:46:22.7547052Z fontdrvhost.exe "fontdrvhost.exe" 944 2025-07-24T03:46:22.7547536Z 2025-07-24T03:46:22.7548000Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 128 2025-07-24T03:46:22.7548633Z 2025-07-24T03:46:22.7549468Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 476 2025-07-24T03:46:22.7550049Z 2025-07-24T03:46:22.7550598Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 488 2025-07-24T03:46:22.7551239Z 2025-07-24T03:46:22.7552408Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1112 2025-07-24T03:46:22.7553123Z 2025-07-24T03:46:22.7553416Z dwm.exe "dwm.exe" 1156 2025-07-24T03:46:22.7553820Z 2025-07-24T03:46:22.7554422Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1256 2025-07-24T03:46:22.7555214Z 2025-07-24T03:46:22.7555687Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1316 2025-07-24T03:46:22.7556354Z 2025-07-24T03:46:22.7557668Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1328 2025-07-24T03:46:22.7558282Z 2025-07-24T03:46:22.7558859Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1380 2025-07-24T03:46:22.7559543Z 2025-07-24T03:46:22.7560051Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1432 2025-07-24T03:46:22.7560667Z 2025-07-24T03:46:22.7561192Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1464 2025-07-24T03:46:22.7561785Z 2025-07-24T03:46:22.7562748Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1512 2025-07-24T03:46:22.7563592Z 2025-07-24T03:46:22.7566727Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1536 2025-07-24T03:46:22.7570152Z 2025-07-24T03:46:22.7570932Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1596 2025-07-24T03:46:22.7571942Z 2025-07-24T03:46:22.7572638Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1716 2025-07-24T03:46:22.7573498Z 2025-07-24T03:46:22.7574227Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1724 2025-07-24T03:46:22.7575236Z 2025-07-24T03:46:22.7576089Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1732 2025-07-24T03:46:22.7577091Z 2025-07-24T03:46:22.7577858Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1844 2025-07-24T03:46:22.7578908Z 2025-07-24T03:46:22.7579945Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1916 2025-07-24T03:46:22.7580974Z 2025-07-24T03:46:22.7581891Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1924 2025-07-24T03:46:22.7583029Z 2025-07-24T03:46:22.7584003Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 1952 2025-07-24T03:46:22.7586237Z 2025-07-24T03:46:22.7587222Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 1972 2025-07-24T03:46:22.7588194Z 2025-07-24T03:46:22.7589214Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2032 2025-07-24T03:46:22.7590299Z 2025-07-24T03:46:22.7591143Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2128 2025-07-24T03:46:22.7592090Z 2025-07-24T03:46:22.7593020Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2136 2025-07-24T03:46:22.7594099Z 2025-07-24T03:46:22.7594850Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2256 2025-07-24T03:46:22.7595515Z 2025-07-24T03:46:22.7596850Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2284 2025-07-24T03:46:22.7597630Z 2025-07-24T03:46:22.7598192Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2380 2025-07-24T03:46:22.7598936Z 2025-07-24T03:46:22.7599530Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2468 2025-07-24T03:46:22.7600840Z 2025-07-24T03:46:22.7601687Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2568 2025-07-24T03:46:22.7602693Z 2025-07-24T03:46:22.7603752Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2704 2025-07-24T03:46:22.7605015Z 2025-07-24T03:46:22.7606143Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2712 2025-07-24T03:46:22.7607440Z 2025-07-24T03:46:22.7608361Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2720 2025-07-24T03:46:22.7609526Z 2025-07-24T03:46:22.7610537Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2728 2025-07-24T03:46:22.7611735Z 2025-07-24T03:46:22.7613115Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2736 2025-07-24T03:46:22.7614478Z 2025-07-24T03:46:22.7615447Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2752 2025-07-24T03:46:22.7616652Z 2025-07-24T03:46:22.7617311Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2760 2025-07-24T03:46:22.7618068Z 2025-07-24T03:46:22.7618577Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2768 2025-07-24T03:46:22.7619203Z 2025-07-24T03:46:22.7619862Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3020 2025-07-24T03:46:22.7620625Z 2025-07-24T03:46:22.7621116Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 3028 2025-07-24T03:46:22.7621707Z 2025-07-24T03:46:22.7622201Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3080 2025-07-24T03:46:22.7622831Z 2025-07-24T03:46:22.7623275Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3108 2025-07-24T03:46:22.7623811Z 2025-07-24T03:46:22.7624607Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3132 2025-07-24T03:46:22.7625460Z 2025-07-24T03:46:22.7626140Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3508 2025-07-24T03:46:22.7626935Z 2025-07-24T03:46:22.7627469Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3632 2025-07-24T03:46:22.7628051Z 2025-07-24T03:46:22.7628798Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4088 2025-07-24T03:46:22.7629588Z 2025-07-24T03:46:22.7630129Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a77055 /state1:0x41c64e6d 2684 2025-07-24T03:46:22.7630773Z 2025-07-24T03:46:22.7632702Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 2692 2025-07-24T03:46:22.7634711Z 2025-07-24T03:46:22.7635520Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 1676 2025-07-24T03:46:22.7636397Z 2025-07-24T03:46:22.7636865Z vds.exe C:\Windows\System32\vds.exe 1772 2025-07-24T03:46:22.7644552Z 2025-07-24T03:46:22.7645686Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 3336 2025-07-24T03:46:22.7646351Z 2025-07-24T03:46:22.7646991Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 3276 2025-07-24T03:46:22.7647882Z 2025-07-24T03:46:22.7648261Z msdtc.exe C:\Windows\System32\msdtc.exe 2000 2025-07-24T03:46:22.7648787Z 2025-07-24T03:46:22.7649426Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 3944 2025-07-24T03:46:22.7650728Z 2025-07-24T03:46:22.7652092Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s WdiSystemHost 3232 2025-07-24T03:46:22.7652915Z 2025-07-24T03:46:22.7653507Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 864 2025-07-24T03:46:22.7654200Z 2025-07-24T03:46:22.7654658Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 4240 2025-07-24T03:46:22.7655293Z 2025-07-24T03:46:22.7657436Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 4360 2025-07-24T03:46:22.7658059Z 2025-07-24T03:46:22.7658590Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 4740 2025-07-24T03:46:22.7659213Z 2025-07-24T03:46:22.7659953Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 4920 2025-07-24T03:46:22.7660849Z 2025-07-24T03:46:22.7662659Z 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 4856 2025-07-24T03:46:22.7664361Z 2025-07-24T03:46:22.7664778Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4884 2025-07-24T03:46:22.7665288Z 2025-07-24T03:46:22.7665838Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 4324 2025-07-24T03:46:22.7666486Z 2025-07-24T03:46:22.7667010Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 1092 2025-07-24T03:46:22.7667621Z 2025-07-24T03:46:22.7668019Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2652 2025-07-24T03:46:22.7668627Z 2025-07-24T03:46:22.7669190Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 1100 2025-07-24T03:46:22.7669781Z 2025-07-24T03:46:22.7670275Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 4928 2025-07-24T03:46:22.7670878Z 2025-07-24T03:46:22.7671377Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 1528 2025-07-24T03:46:22.7672046Z 2025-07-24T03:46:22.7672452Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2316 2025-07-24T03:46:22.7673017Z 2025-07-24T03:46:22.7673594Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2112 1648 4552 2025-07-24T03:46:22.7674282Z 2025-07-24T03:46:22.7674686Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3752 2025-07-24T03:46:22.7675198Z 2025-07-24T03:46:22.7675646Z taskhostw.exe taskhostw.exe /RuntimeWide 1556 2025-07-24T03:46:22.7676154Z 2025-07-24T03:46:22.7676829Z ngentask.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:528 1560 2025-07-24T03:46:22.7677525Z 2025-07-24T03:46:22.7678135Z ngentask.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:532 1240 2025-07-24T03:46:22.7678826Z 2025-07-24T03:46:22.7679241Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3920 2025-07-24T03:46:22.7679809Z 2025-07-24T03:46:22.7680223Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4524 2025-07-24T03:46:22.7680728Z 2025-07-24T03:46:22.7681234Z TrustedInstaller.exe C:\Windows\servicing\TrustedInstaller.exe 4696 2025-07-24T03:46:22.7681838Z 2025-07-24T03:46:22.7682646Z TiWorker.exe C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.7313_none_56ed2c2b9919af2f\TiWorker.exe -Embedding 3544 2025-07-24T03:46:22.7683557Z 2025-07-24T03:46:22.7684125Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 1416 2025-07-24T03:46:22.7684808Z 2025-07-24T03:46:22.7685463Z ngen.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 4268 2025-07-24T03:46:22.7686218Z 2025-07-24T03:46:22.7686932Z ngen.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 5104 2025-07-24T03:46:22.7687685Z 2025-07-24T03:46:22.7688123Z svchost.exe C:\Windows\system32\svchost.exe -k defragsvc 1968 2025-07-24T03:46:22.7688676Z 2025-07-24T03:46:22.7689102Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3648 2025-07-24T03:46:22.7690573Z 2025-07-24T03:46:22.7691409Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\5af2afe9-c0a5-443f-81d3-898365dc6026.ps1'" 3716 2025-07-24T03:46:22.7692333Z 2025-07-24T03:46:22.7692939Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 4216 2025-07-24T03:46:22.7693643Z 2025-07-24T03:46:22.7694492Z mscorsvw.exe C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe -StartupEvent 2f0 -InterruptEvent 0 -NGENProcess 3f8 -Pipe 3fc -Comment "NGen Worker Process" 1684 2025-07-24T03:46:22.7695422Z 2025-07-24T03:46:22.7695425Z 2025-07-24T03:46:22.7695429Z 2025-07-24T03:46:22.7989632Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-07-24T03:46:22.7990101Z with: 2025-07-24T03:46:22.7990637Z github-secret: *** 2025-07-24T03:46:22.7992628Z instructions: To forward remote desktop on your local machine ssh as follows: ssh -L 3389:localhost:3389 %%username%%@%%hostname%% And then change password using `passwd` command. To start build locally, change working folder to \actions-runner\_work\pytorch\pytorch, Activate miniconda and Visual Studio environment, by running: call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 2025-07-24T03:46:22.7994663Z activate-with-label: false 2025-07-24T03:46:22.7994911Z label: with-ssh 2025-07-24T03:46:22.7995115Z remove-existing-keys: true 2025-07-24T03:46:22.7995417Z fail-silently: true 2025-07-24T03:46:22.7995613Z env: 2025-07-24T03:46:22.7995842Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:22.7996098Z ##[endgroup] 2025-07-24T03:46:22.9644451Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-07-24T03:46:22.9646710Z ciflow reference detected, attempting to extract PR number 2025-07-24T03:46:23.4202480Z Grabbing public ssh keys from https://github.com/pytorch-bot[bot].keys 2025-07-24T03:46:23.4950402Z No SSH keys found for user pytorch-bot[bot] 2025-07-24T03:46:23.4950971Z Grabbing public ssh keys from https://github.com/benjaminglass1.keys 2025-07-24T03:46:23.5835577Z Public keys pulled and installed to C:\Users\runneruser\.ssh\authorized_keys 2025-07-24T03:46:23.5885948Z Login using: ssh runneruser@ec2-34-232-63-157.compute-1.amazonaws.com 2025-07-24T03:46:23.5886479Z To forward remote desktop on your local machine ssh as follows: 2025-07-24T03:46:23.5887048Z ssh -L 3389:localhost:3389 runneruser@ec2-34-232-63-157.compute-1.amazonaws.com 2025-07-24T03:46:23.5887558Z And then change password using `passwd` command. 2025-07-24T03:46:23.5887799Z 2025-07-24T03:46:23.5888072Z To start build locally, change working folder to \actions-runner\_work\pytorch\pytorch, 2025-07-24T03:46:23.5888622Z Activate miniconda and Visual Studio environment, by running: 2025-07-24T03:46:23.5889353Z call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-07-24T03:46:23.5889987Z call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 2025-07-24T03:46:23.6135000Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-07-24T03:46:23.6135469Z with: 2025-07-24T03:46:23.6135667Z no-sudo: true 2025-07-24T03:46:23.6135861Z submodules: recursive 2025-07-24T03:46:23.6136081Z fetch-depth: 0 2025-07-24T03:46:23.6136274Z env: 2025-07-24T03:46:23.6136444Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:23.6136678Z ##[endgroup] 2025-07-24T03:46:23.6235015Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-07-24T03:46:23.6235900Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-07-24T03:46:23.6256402Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:46:23.6256844Z env: 2025-07-24T03:46:23.6257029Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:23.6257256Z ##[endgroup] 2025-07-24T03:46:23.6708218Z ##[group]Run # Use all available CPUs for fetching 2025-07-24T03:46:23.6708722Z # Use all available CPUs for fetching 2025-07-24T03:46:23.6709030Z cd "${GITHUB_WORKSPACE}" 2025-07-24T03:46:23.6709339Z git config --global fetch.parallel 0 2025-07-24T03:46:23.6709687Z git config --global submodule.fetchJobs 0 2025-07-24T03:46:23.6710087Z  2025-07-24T03:46:23.6710454Z # Clean workspace. The default checkout action should also do this, but 2025-07-24T03:46:23.6710947Z # do it here as well just in case 2025-07-24T03:46:23.6711237Z if [[ -d .git ]]; then 2025-07-24T03:46:23.6711490Z  if [ -z "${NO_SUDO}" ]; then 2025-07-24T03:46:23.6711798Z  sudo git clean -ffdx 2025-07-24T03:46:23.6712038Z  else 2025-07-24T03:46:23.6712237Z  git clean -ffdx 2025-07-24T03:46:23.6712456Z  fi 2025-07-24T03:46:23.6712640Z fi 2025-07-24T03:46:23.6732204Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:46:23.6732652Z env: 2025-07-24T03:46:23.6732832Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:23.6733065Z NO_SUDO: true 2025-07-24T03:46:23.6733250Z ##[endgroup] 2025-07-24T03:46:23.7746143Z ##[group]Run actions/checkout@v4 2025-07-24T03:46:23.7746408Z with: 2025-07-24T03:46:23.7746612Z ref: 27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:46:23.7746920Z fetch-depth: 0 2025-07-24T03:46:23.7747122Z submodules: recursive 2025-07-24T03:46:23.7747347Z show-progress: false 2025-07-24T03:46:23.7747568Z repository: pytorch/pytorch 2025-07-24T03:46:23.7747950Z token: *** 2025-07-24T03:46:23.7748145Z ssh-strict: true 2025-07-24T03:46:23.7748357Z ssh-user: git 2025-07-24T03:46:23.7748578Z persist-credentials: true 2025-07-24T03:46:23.7748955Z clean: true 2025-07-24T03:46:23.7749172Z sparse-checkout-cone-mode: true 2025-07-24T03:46:23.7749434Z fetch-tags: false 2025-07-24T03:46:23.7749660Z lfs: false 2025-07-24T03:46:23.7749847Z set-safe-directory: true 2025-07-24T03:46:23.7750072Z env: 2025-07-24T03:46:23.7750247Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:46:23.7750476Z ##[endgroup] 2025-07-24T03:46:23.9242153Z Syncing repository: pytorch/pytorch 2025-07-24T03:46:23.9243525Z ##[group]Getting Git version info 2025-07-24T03:46:23.9243917Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-07-24T03:46:23.9352334Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-07-24T03:46:23.9578826Z git version 2.49.0.windows.1 2025-07-24T03:46:23.9628775Z ##[endgroup] 2025-07-24T03:46:23.9642388Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\c920978a-aa61-4fab-be0c-c1bef5210814\.gitconfig' 2025-07-24T03:46:23.9663638Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\c920978a-aa61-4fab-be0c-c1bef5210814' before making global git config changes 2025-07-24T03:46:23.9666076Z Adding repository directory to the temporary git global config as a safe directory 2025-07-24T03:46:23.9676184Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:46:23.9945978Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-07-24T03:46:23.9952290Z ##[group]Initializing the repository 2025-07-24T03:46:23.9964074Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:46:24.0348135Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-07-24T03:46:24.0395645Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-07-24T03:46:24.0666267Z ##[endgroup] 2025-07-24T03:46:24.0666719Z ##[group]Disabling automatic garbage collection 2025-07-24T03:46:24.0679428Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-07-24T03:46:24.0934203Z ##[endgroup] 2025-07-24T03:46:24.0934624Z ##[group]Setting up auth 2025-07-24T03:46:24.0950432Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-07-24T03:46:24.1216113Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2025-07-24T03:46:24.6475495Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-07-24T03:46:24.6805292Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2025-07-24T03:46:25.1092372Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-07-24T03:46:25.1370345Z ##[endgroup] 2025-07-24T03:46:25.1370767Z ##[group]Fetching the repository 2025-07-24T03:46:25.1386189Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-07-24T03:47:21.3983227Z From https://github.com/pytorch/pytorch 2025-07-24T03:47:21.3983719Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-07-24T03:47:21.3984302Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-07-24T03:47:21.3985011Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-07-24T03:47:21.3985720Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-07-24T03:47:21.3986302Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-07-24T03:47:21.3986881Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-07-24T03:47:21.3987413Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-07-24T03:47:21.3987927Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-07-24T03:47:21.3988456Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-07-24T03:47:21.3989001Z * [new branch] ZainRizvi-patch-1 -> origin/ZainRizvi-patch-1 2025-07-24T03:47:21.3989611Z * [new branch] add-missing-args-normalization -> origin/add-missing-args-normalization 2025-07-24T03:47:21.3990196Z * [new branch] addVllmPin -> origin/addVllmPin 2025-07-24T03:47:21.3990908Z * [new branch] add_windows_testing_back -> origin/add_windows_testing_back 2025-07-24T03:47:21.3991420Z * [new branch] addbuildvllm -> origin/addbuildvllm 2025-07-24T03:47:21.3992664Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-07-24T03:47:21.3993154Z * [new branch] addsimde -> origin/addsimde 2025-07-24T03:47:21.3993629Z * [new branch] addvllpinnedfile -> origin/addvllpinnedfile 2025-07-24T03:47:21.3994154Z * [new branch] adi/skip_slow_tests -> origin/adi/skip_slow_tests 2025-07-24T03:47:21.3994638Z * [new branch] adi/test -> origin/adi/test 2025-07-24T03:47:21.3995087Z * [new branch] adi/test_fusions -> origin/adi/test_fusions 2025-07-24T03:47:21.3995595Z * [new branch] adi/test_presve_change -> origin/adi/test_presve_change 2025-07-24T03:47:21.3996101Z * [new branch] adi/test_timm -> origin/adi/test_timm 2025-07-24T03:47:21.3996605Z * [new branch] adi/testpresve_change -> origin/adi/testpresve_change 2025-07-24T03:47:21.3997245Z * [new branch] adi/update_openblas -> origin/adi/update_openblas 2025-07-24T03:47:21.3997775Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-07-24T03:47:21.3998331Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-07-24T03:47:21.3998857Z * [new branch] albanD-patch-1 -> origin/albanD-patch-1 2025-07-24T03:47:21.3999348Z * [new branch] alt-disable -> origin/alt-disable 2025-07-24T03:47:21.3999822Z * [new branch] angelayi/155426 -> origin/angelayi/155426 2025-07-24T03:47:21.4000291Z * [new branch] angelayi/157183 -> origin/angelayi/157183 2025-07-24T03:47:21.4000860Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-07-24T03:47:21.4001546Z * [new branch] angelayi/aoti_custom_op -> origin/angelayi/aoti_custom_op 2025-07-24T03:47:21.4002106Z * [new branch] angelayi/benchmark -> origin/angelayi/benchmark 2025-07-24T03:47:21.4002635Z * [new branch] angelayi/benchmark2 -> origin/angelayi/benchmark2 2025-07-24T03:47:21.4003264Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-07-24T03:47:21.4003905Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-07-24T03:47:21.4004411Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-07-24T03:47:21.4004912Z * [new branch] angelayi/del_lib -> origin/angelayi/del_lib 2025-07-24T03:47:21.4005390Z * [new branch] angelayi/docs -> origin/angelayi/docs 2025-07-24T03:47:21.4005849Z * [new branch] angelayi/docs2 -> origin/angelayi/docs2 2025-07-24T03:47:21.4006381Z * [new branch] angelayi/dynamo_fake_input -> origin/angelayi/dynamo_fake_input 2025-07-24T03:47:21.4006928Z * [new branch] angelayi/fake_device -> origin/angelayi/fake_device 2025-07-24T03:47:21.4007477Z * [new branch] angelayi/int_lift_constants -> origin/angelayi/int_lift_constants 2025-07-24T03:47:21.4008023Z * [new branch] angelayi/logging.bak -> origin/angelayi/logging.bak 2025-07-24T03:47:21.4008538Z * [new branch] angelayi/logging2 -> origin/angelayi/logging2 2025-07-24T03:47:21.4009048Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-07-24T03:47:21.4556901Z * [new branch] angelayi/pytree -> origin/angelayi/pytree 2025-07-24T03:47:21.4557739Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-07-24T03:47:21.4558278Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-07-24T03:47:21.4558941Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-07-24T03:47:21.4559533Z * [new branch] angelayi/update_schema_msg -> origin/angelayi/update_schema_msg 2025-07-24T03:47:21.4560088Z * [new branch] aoti_static_linkage -> origin/aoti_static_linkage 2025-07-24T03:47:21.4560600Z * [new branch] aoti_weight_sharing -> origin/aoti_weight_sharing 2025-07-24T03:47:21.4561127Z * [new branch] arsh/symint_mm_ind_decomp -> origin/arsh/symint_mm_ind_decomp 2025-07-24T03:47:21.4561801Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-07-24T03:47:21.4562451Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-07-24T03:47:21.4563050Z * [new branch] atalman-patch-1 -> origin/atalman-patch-1 2025-07-24T03:47:21.4563553Z * [new branch] atalman-patch-2 -> origin/atalman-patch-2 2025-07-24T03:47:21.4564044Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-07-24T03:47:21.4564534Z * [new branch] atalman-patch-4 -> origin/atalman-patch-4 2025-07-24T03:47:21.4565006Z * [new branch] atalman-patch-5 -> origin/atalman-patch-5 2025-07-24T03:47:21.4565559Z * [new branch] atalman-patch-6 -> origin/atalman-patch-6 2025-07-24T03:47:21.4566049Z * [new branch] atalman-patch-7 -> origin/atalman-patch-7 2025-07-24T03:47:21.4566533Z * [new branch] atalman-patch-8 -> origin/atalman-patch-8 2025-07-24T03:47:21.4567057Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-07-24T03:47:21.4567646Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-07-24T03:47:21.4568237Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-07-24T03:47:21.4568817Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-07-24T03:47:21.4569314Z * [new branch] backupvllm -> origin/backupvllm 2025-07-24T03:47:21.4569759Z * [new branch] base/1.5 -> origin/base/1.5 2025-07-24T03:47:21.4570308Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-07-24T03:47:21.4570912Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-07-24T03:47:21.4571439Z * [new branch] benchmarking-script -> origin/benchmarking-script 2025-07-24T03:47:21.4572202Z * [new branch] benjaminglass1/mark-large-tensor-tests-serial -> origin/benjaminglass1/mark-large-tensor-tests-serial 2025-07-24T03:47:21.4572955Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-07-24T03:47:21.4573468Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-07-24T03:47:21.4573977Z * [new branch] bf/cg-capture-size -> origin/bf/cg-capture-size 2025-07-24T03:47:21.4574470Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-07-24T03:47:21.4574958Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-07-24T03:47:21.4575591Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-07-24T03:47:21.4576578Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-07-24T03:47:21.4577609Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-07-24T03:47:21.4578185Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-07-24T03:47:21.4578854Z * [new branch] bf/improve-kernel-bench -> origin/bf/improve-kernel-bench 2025-07-24T03:47:21.4579409Z * [new branch] bf/kernel-benchmark -> origin/bf/kernel-benchmark 2025-07-24T03:47:21.4579939Z * [new branch] bf/partition-move-cpu -> origin/bf/partition-move-cpu 2025-07-24T03:47:21.4580487Z * [new branch] bf/partition-turn-on -> origin/bf/partition-turn-on 2025-07-24T03:47:21.4581015Z * [new branch] bf/recompile-context -> origin/bf/recompile-context 2025-07-24T03:47:21.4581582Z * [new branch] bf/reduce-scatter-copy-in -> origin/bf/reduce-scatter-copy-in 2025-07-24T03:47:21.4582164Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-07-24T03:47:21.4582676Z * [new branch] bf16adamw -> origin/bf16adamw 2025-07-24T03:47:21.5133087Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-07-24T03:47:21.5133767Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-07-24T03:47:21.5134404Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-07-24T03:47:21.5134976Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-07-24T03:47:21.5135533Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-07-24T03:47:21.5136095Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-07-24T03:47:21.5136660Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-07-24T03:47:21.5137256Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-07-24T03:47:21.5137833Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-07-24T03:47:21.5138392Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-07-24T03:47:21.5138952Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-07-24T03:47:21.5139496Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-07-24T03:47:21.5140073Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-07-24T03:47:21.5140668Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-07-24T03:47:21.5141240Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-07-24T03:47:21.5141825Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-07-24T03:47:21.5142371Z * [new branch] bit8_transpose_pack -> origin/bit8_transpose_pack 2025-07-24T03:47:21.5142933Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-07-24T03:47:21.5143492Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-07-24T03:47:21.5143983Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-07-24T03:47:21.5144549Z * [new branch] bowenbao/partial_min_max_reduce -> origin/bowenbao/partial_min_max_reduce 2025-07-24T03:47:21.5145166Z * [new branch] brister/always_wrapper_ir -> origin/brister/always_wrapper_ir 2025-07-24T03:47:21.5145752Z * [new branch] brister/test_block_ptr_same -> origin/brister/test_block_ptr_same 2025-07-24T03:47:21.5146653Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-07-24T03:47:21.5148012Z * [new branch] brister/wrapper_fx_precomputed_size -> origin/brister/wrapper_fx_precomputed_size 2025-07-24T03:47:21.5148628Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-07-24T03:47:21.5149083Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-07-24T03:47:21.5150067Z * [new branch] camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 -> origin/camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 2025-07-24T03:47:21.5151184Z * [new branch] camyll/test_precommit_hooks_lintrunner -> origin/camyll/test_precommit_hooks_lintrunner 2025-07-24T03:47:21.5152046Z * [new branch] camyllh/cherry-pick-155109-revert-to-release2.8 -> origin/camyllh/cherry-pick-155109-revert-to-release2.8 2025-07-24T03:47:21.5152981Z * [new branch] camyllh/cherrypick-151547-for-release28 -> origin/camyllh/cherrypick-151547-for-release28 2025-07-24T03:47:21.5153791Z * [new branch] camyllh/cherrypick_152932_for_release_2.8 -> origin/camyllh/cherrypick_152932_for_release_2.8 2025-07-24T03:47:21.5154536Z * [new branch] camyllh/revert-138222-in-release-2.8 -> origin/camyllh/revert-138222-in-release-2.8 2025-07-24T03:47:21.5155306Z * [new branch] camyllh/revert-155412-on-release-branch -> origin/camyllh/revert-155412-on-release-branch 2025-07-24T03:47:21.5156066Z * [new branch] camyllh/revert-156552-on-release-2.8 -> origin/camyllh/revert-156552-on-release-2.8 2025-07-24T03:47:21.5156780Z * [new branch] camyllh/revert_156517_on_release_2.8 -> origin/camyllh/revert_156517_on_release_2.8 2025-07-24T03:47:21.5157431Z * [new branch] camyllh/test_setup_hooks_push -> origin/camyllh/test_setup_hooks_push 2025-07-24T03:47:21.5158276Z * [new branch] cherry-pick-147095-by-pytorch_bot_bot_ -> origin/cherry-pick-147095-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5159047Z * [new branch] cherry-pick-149654-by-pytorch_bot_bot_ -> origin/cherry-pick-149654-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5644326Z * [new branch] cherry-pick-151939-by-pytorch_bot_bot_ -> origin/cherry-pick-151939-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5645153Z * [new branch] cherry-pick-154174-by-pytorch_bot_bot_ -> origin/cherry-pick-154174-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5645928Z * [new branch] cherry-pick-155214-by-pytorch_bot_bot_ -> origin/cherry-pick-155214-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5646705Z * [new branch] cherry-pick-155255-by-pytorch_bot_bot_ -> origin/cherry-pick-155255-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5647462Z * [new branch] cherry-pick-155896-by-pytorch_bot_bot_ -> origin/cherry-pick-155896-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5648249Z * [new branch] cherry-pick-156260-by-pytorch_bot_bot_ -> origin/cherry-pick-156260-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5649020Z * [new branch] cherry-pick-156499-by-pytorch_bot_bot_ -> origin/cherry-pick-156499-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5649773Z * [new branch] cherry-pick-156664-by-pytorch_bot_bot_ -> origin/cherry-pick-156664-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5650530Z * [new branch] cherry-pick-156708-by-pytorch_bot_bot_ -> origin/cherry-pick-156708-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5651293Z * [new branch] cherry-pick-156719-by-pytorch_bot_bot_ -> origin/cherry-pick-156719-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5652041Z * [new branch] cherry-pick-156731-by-pytorch_bot_bot_ -> origin/cherry-pick-156731-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5652796Z * [new branch] cherry-pick-156783-by-pytorch_bot_bot_ -> origin/cherry-pick-156783-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5653765Z * [new branch] cherry-pick-156847-by-pytorch_bot_bot_ -> origin/cherry-pick-156847-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5654645Z * [new branch] cherry-pick-156876-by-pytorch_bot_bot_ -> origin/cherry-pick-156876-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5655413Z * [new branch] cherry-pick-156888-by-pytorch_bot_bot_ -> origin/cherry-pick-156888-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5656166Z * [new branch] cherry-pick-156898-by-pytorch_bot_bot_ -> origin/cherry-pick-156898-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5656931Z * [new branch] cherry-pick-156910-by-pytorch_bot_bot_ -> origin/cherry-pick-156910-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5657681Z * [new branch] cherry-pick-157014-by-pytorch_bot_bot_ -> origin/cherry-pick-157014-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5658441Z * [new branch] cherry-pick-157017-by-pytorch_bot_bot_ -> origin/cherry-pick-157017-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5659211Z * [new branch] cherry-pick-157023-by-pytorch_bot_bot_ -> origin/cherry-pick-157023-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5659963Z * [new branch] cherry-pick-157130-by-pytorch_bot_bot_ -> origin/cherry-pick-157130-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5660725Z * [new branch] cherry-pick-157179-by-pytorch_bot_bot_ -> origin/cherry-pick-157179-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5661481Z * [new branch] cherry-pick-157292-by-pytorch_bot_bot_ -> origin/cherry-pick-157292-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5662230Z * [new branch] cherry-pick-157322-by-pytorch_bot_bot_ -> origin/cherry-pick-157322-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5662990Z * [new branch] cherry-pick-157453-by-pytorch_bot_bot_ -> origin/cherry-pick-157453-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5663739Z * [new branch] cherry-pick-157466-by-pytorch_bot_bot_ -> origin/cherry-pick-157466-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5664502Z * [new branch] cherry-pick-157467-by-pytorch_bot_bot_ -> origin/cherry-pick-157467-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5665255Z * [new branch] cherry-pick-157503-by-pytorch_bot_bot_ -> origin/cherry-pick-157503-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5666006Z * [new branch] cherry-pick-157513-by-pytorch_bot_bot_ -> origin/cherry-pick-157513-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5666766Z * [new branch] cherry-pick-157516-by-pytorch_bot_bot_ -> origin/cherry-pick-157516-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5667523Z * [new branch] cherry-pick-157558-by-pytorch_bot_bot_ -> origin/cherry-pick-157558-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5668286Z * [new branch] cherry-pick-157598-by-pytorch_bot_bot_ -> origin/cherry-pick-157598-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5669159Z * [new branch] cherry-pick-157600-by-pytorch_bot_bot_ -> origin/cherry-pick-157600-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5669935Z * [new branch] cherry-pick-157630-by-pytorch_bot_bot_ -> origin/cherry-pick-157630-by-pytorch_bot_bot_ 2025-07-24T03:47:21.5670709Z * [new branch] cherry-pick-157695-by-pytorch_bot_bot_ -> origin/cherry-pick-157695-by-pytorch_bot_bot_ 2025-07-24T03:47:21.6115103Z * [new branch] cherry-pick-157732-by-pytorch_bot_bot_ -> origin/cherry-pick-157732-by-pytorch_bot_bot_ 2025-07-24T03:47:21.6115917Z * [new branch] cherry-pick-157733-by-pytorch_bot_bot_ -> origin/cherry-pick-157733-by-pytorch_bot_bot_ 2025-07-24T03:47:21.6116706Z * [new branch] cherry-pick-157843-by-pytorch_bot_bot_ -> origin/cherry-pick-157843-by-pytorch_bot_bot_ 2025-07-24T03:47:21.6117462Z * [new branch] cherry-pick-157993-by-pytorch_bot_bot_ -> origin/cherry-pick-157993-by-pytorch_bot_bot_ 2025-07-24T03:47:21.6118268Z * [new branch] cherry-pick-158064-by-pytorch_bot_bot_ -> origin/cherry-pick-158064-by-pytorch_bot_bot_ 2025-07-24T03:47:21.6119336Z * [new branch] cherry-pick-158126-by-pytorch_bot_bot_ -> origin/cherry-pick-158126-by-pytorch_bot_bot_ 2025-07-24T03:47:21.6120237Z * [new branch] cherry-pick-158152-by-pytorch_bot_bot_ -> origin/cherry-pick-158152-by-pytorch_bot_bot_ 2025-07-24T03:47:21.6121014Z * [new branch] cherry-pick-158295-by-pytorch_bot_bot_ -> origin/cherry-pick-158295-by-pytorch_bot_bot_ 2025-07-24T03:47:21.6121870Z * [new branch] cherry-pick-158301-by-pytorch_bot_bot_ -> origin/cherry-pick-158301-by-pytorch_bot_bot_ 2025-07-24T03:47:21.6122627Z * [new branch] cherry-pick-158537-by-pytorch_bot_bot_ -> origin/cherry-pick-158537-by-pytorch_bot_bot_ 2025-07-24T03:47:21.6123419Z * [new branch] cherry-pick-158572-by-pytorch_bot_bot_ -> origin/cherry-pick-158572-by-pytorch_bot_bot_ 2025-07-24T03:47:21.6124057Z * [new branch] cherry-pick-158595 -> origin/cherry-pick-158595 2025-07-24T03:47:21.6124622Z * [new branch] cherry-pick-PR-158746 -> origin/cherry-pick-PR-158746 2025-07-24T03:47:21.6125144Z * [new branch] chilli/flex_vllm -> origin/chilli/flex_vllm 2025-07-24T03:47:21.6125637Z * [new branch] ck-epilogue-fix -> origin/ck-epilogue-fix 2025-07-24T03:47:21.6126168Z * [new branch] ckluk2-compileThread-1 -> origin/ckluk2-compileThread-1 2025-07-24T03:47:21.6126728Z * [new branch] ckluk2-compileThread-2 -> origin/ckluk2-compileThread-2 2025-07-24T03:47:21.6127303Z * [new branch] ckluk2-compileThread-64 -> origin/ckluk2-compileThread-64 2025-07-24T03:47:21.6127825Z * [new branch] ckluk2-test-1 -> origin/ckluk2-test-1 2025-07-24T03:47:21.6128290Z * [new branch] cleantest1 -> origin/cleantest1 2025-07-24T03:47:21.6129096Z * [new branch] codex/create-test-for-tensor-memory-leak-in-cudagraph -> origin/codex/create-test-for-tensor-memory-leak-in-cudagraph 2025-07-24T03:47:21.6130129Z * [new branch] codex/update-default-size_hint-fallback-value -> origin/codex/update-default-size_hint-fallback-value 2025-07-24T03:47:21.6130852Z * [new branch] collective_c_shim -> origin/collective_c_shim 2025-07-24T03:47:21.6131469Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-07-24T03:47:21.6132125Z * [new branch] comply-with-setuptools -> origin/comply-with-setuptools 2025-07-24T03:47:21.6132642Z * [new branch] context_test -> origin/context_test 2025-07-24T03:47:21.6133122Z * [new branch] copilot/fix-157446 -> origin/copilot/fix-157446 2025-07-24T03:47:21.6133594Z * [new branch] copy_graph -> origin/copy_graph 2025-07-24T03:47:21.6134069Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-07-24T03:47:21.6134571Z * [new branch] csl/3_proc_sm -> origin/csl/3_proc_sm 2025-07-24T03:47:21.6135117Z * [new branch] csl/add_file_merge_conflict_csv -> origin/csl/add_file_merge_conflict_csv 2025-07-24T03:47:21.6135695Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-07-24T03:47:21.6136242Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-07-24T03:47:21.6136793Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-07-24T03:47:21.6137428Z * [new branch] csl/ci_upload_artifacts_with_running -> origin/csl/ci_upload_artifacts_with_running 2025-07-24T03:47:21.6138083Z * [new branch] csl/clean_up_max_jobs_override -> origin/csl/clean_up_max_jobs_override 2025-07-24T03:47:21.6138638Z * [new branch] csl/clean_up_more_tags -> origin/csl/clean_up_more_tags 2025-07-24T03:47:21.6139334Z * [new branch] csl/disable_periodic_tests -> origin/csl/disable_periodic_tests 2025-07-24T03:47:21.6139981Z * [new branch] csl/docker_instru_ssh -> origin/csl/docker_instru_ssh 2025-07-24T03:47:21.6140587Z * [new branch] csl/faketensortest_super_setup -> origin/csl/faketensortest_super_setup 2025-07-24T03:47:21.6141223Z * [new branch] csl/fix_docker_imgs_for_release -> origin/csl/fix_docker_imgs_for_release 2025-07-24T03:47:21.6663852Z * [new branch] csl/fix_flaky_dist_test -> origin/csl/fix_flaky_dist_test 2025-07-24T03:47:21.6664395Z * [new branch] csl/katex -> origin/csl/katex 2025-07-24T03:47:21.6664883Z * [new branch] csl/keep_going_main -> origin/csl/keep_going_main 2025-07-24T03:47:21.6682773Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-07-24T03:47:21.6683601Z * [new branch] csl/lintrunner_changed_files_removed -> origin/csl/lintrunner_changed_files_removed 2025-07-24T03:47:21.6684390Z * [new branch] csl/lintrunner_changed_files_removed_test -> origin/csl/lintrunner_changed_files_removed_test 2025-07-24T03:47:21.6685096Z * [new branch] csl/lintrunner_stuff -> origin/csl/lintrunner_stuff 2025-07-24T03:47:21.6685605Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-07-24T03:47:21.6686121Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-07-24T03:47:21.6686652Z * [new branch] csl/print_set_output -> origin/csl/print_set_output 2025-07-24T03:47:21.6687149Z * [new branch] csl/revert_open -> origin/csl/revert_open 2025-07-24T03:47:21.6687632Z * [new branch] csl/rocm_binary -> origin/csl/rocm_binary 2025-07-24T03:47:21.6688112Z * [new branch] csl/rocm_inductor -> origin/csl/rocm_inductor 2025-07-24T03:47:21.6688748Z * [new branch] csl/rocm_upload_artifacts_while_running -> origin/csl/rocm_upload_artifacts_while_running 2025-07-24T03:47:21.6689372Z * [new branch] csl/skip_build -> origin/csl/skip_build 2025-07-24T03:47:21.6689831Z * [new branch] csl/td_dynamo -> origin/csl/td_dynamo 2025-07-24T03:47:21.6690382Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-07-24T03:47:21.6690951Z * [new branch] csl/unused_docker -> origin/csl/unused_docker 2025-07-24T03:47:21.6691540Z * [new branch] csl/update_mobile_build_docker_img -> origin/csl/update_mobile_build_docker_img 2025-07-24T03:47:21.6692241Z * [new branch] csl/viable_strict_concurrency_group -> origin/csl/viable_strict_concurrency_group 2025-07-24T03:47:21.6692825Z * [new branch] csl/win_sccache -> origin/csl/win_sccache 2025-07-24T03:47:21.6693331Z * [new branch] cublasltrelax2 -> origin/cublasltrelax2 2025-07-24T03:47:21.6693813Z * [new branch] cublasrelax2 -> origin/cublasrelax2 2025-07-24T03:47:21.6694312Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-07-24T03:47:21.6694844Z * [new branch] custom_lowering_dict -> origin/custom_lowering_dict 2025-07-24T03:47:21.6695339Z * [new branch] d4l3k/delete_hook -> origin/d4l3k/delete_hook 2025-07-24T03:47:21.6695824Z * [new branch] d4l3k/dist_queue -> origin/d4l3k/dist_queue 2025-07-24T03:47:21.6696293Z * [new branch] d4l3k/fix_h100_ci -> origin/d4l3k/fix_h100_ci 2025-07-24T03:47:21.6696774Z * [new branch] d4l3k/wait_stream -> origin/d4l3k/wait_stream 2025-07-24T03:47:21.6697304Z * [new branch] dcp-safetensor-test-fix -> origin/dcp-safetensor-test-fix 2025-07-24T03:47:21.6698030Z * [new branch] dcp_zoc -> origin/dcp_zoc 2025-07-24T03:47:21.6699216Z * [new branch] delete-quant-docs -> origin/delete-quant-docs 2025-07-24T03:47:21.6699932Z * [new branch] dependabot/pip/dot-ci/docker/protobuf-5.29.5 -> origin/dependabot/pip/dot-ci/docker/protobuf-5.29.5 2025-07-24T03:47:21.6700653Z * [new branch] deprecation_decorator -> origin/deprecation_decorator 2025-07-24T03:47:21.6701232Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-07-24T03:47:21.6701895Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-07-24T03:47:21.6702552Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-07-24T03:47:21.6703092Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-07-24T03:47:21.6703586Z * [new branch] dev/joona/cat -> origin/dev/joona/cat 2025-07-24T03:47:21.6704101Z * [new branch] dev/joona/cat_remove_graph -> origin/dev/joona/cat_remove_graph 2025-07-24T03:47:21.6704672Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-07-24T03:47:21.6705250Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-07-24T03:47:21.6705945Z * [new branch] dev/joona/maxpool2dwithindices_errmsg -> origin/dev/joona/maxpool2dwithindices_errmsg 2025-07-24T03:47:21.6706646Z * [new branch] dev/joona/mps_linear_macos14 -> origin/dev/joona/mps_linear_macos14 2025-07-24T03:47:21.6707174Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-07-24T03:47:21.7176907Z * [new branch] dev/joona/sdpa_nans -> origin/dev/joona/sdpa_nans 2025-07-24T03:47:21.7177589Z * [new branch] dev/joona/synchronize_benchmark -> origin/dev/joona/synchronize_benchmark 2025-07-24T03:47:21.7178195Z * [new branch] dev/joona/topk_newapi -> origin/dev/joona/topk_newapi 2025-07-24T03:47:21.7178758Z * [new branch] dev/joona/type_inf -> origin/dev/joona/type_inf 2025-07-24T03:47:21.7179276Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-07-24T03:47:21.7179738Z * [new branch] disable -> origin/disable 2025-07-24T03:47:21.7180161Z * [new branch] divup -> origin/divup 2025-07-24T03:47:21.7180759Z * [new branch] divyanshk-log-api-usage-datapipes-1 -> origin/divyanshk-log-api-usage-datapipes-1 2025-07-24T03:47:21.7181395Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-07-24T03:47:21.7181913Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-07-24T03:47:21.7182476Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-07-24T03:47:21.7183120Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-07-24T03:47:21.7183719Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-07-24T03:47:21.7184300Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-07-24T03:47:21.7184857Z * [new branch] enable-b200-benchmark -> origin/enable-b200-benchmark 2025-07-24T03:47:21.7185367Z * [new branch] enable_td_rocm -> origin/enable_td_rocm 2025-07-24T03:47:21.7185843Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-07-24T03:47:21.7186313Z * [new branch] eqy-patch-10 -> origin/eqy-patch-10 2025-07-24T03:47:21.7187075Z * [new branch] example-convert-torch.nn -> origin/example-convert-torch.nn 2025-07-24T03:47:21.7187650Z * [new branch] exclamaforte/amd-ma -> origin/exclamaforte/amd-ma 2025-07-24T03:47:21.7188465Z * [new branch] exclamaforte/bump-transformer-version -> origin/exclamaforte/bump-transformer-version 2025-07-24T03:47:21.7189262Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-07-24T03:47:21.7190029Z * [new branch] exclamaforte/debug-autotuner-profile -> origin/exclamaforte/debug-autotuner-profile 2025-07-24T03:47:21.7190760Z * [new branch] exclamaforte/do_bench_refactor -> origin/exclamaforte/do_bench_refactor 2025-07-24T03:47:21.7191451Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-07-24T03:47:21.7192222Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-07-24T03:47:21.7193070Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-07-24T03:47:21.7193802Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-07-24T03:47:21.7194448Z * [new branch] exclamaforte/gemm-benchmark-run -> origin/exclamaforte/gemm-benchmark-run 2025-07-24T03:47:21.7195121Z * [new branch] exclamaforte/gemm-export-model -> origin/exclamaforte/gemm-export-model 2025-07-24T03:47:21.7195749Z * [new branch] exclamaforte/gemm-model -> origin/exclamaforte/gemm-model 2025-07-24T03:47:21.7196496Z * [new branch] exclamaforte/gemm-model-all-data-collection -> origin/exclamaforte/gemm-model-all-data-collection 2025-07-24T03:47:21.7197241Z * [new branch] exclamaforte/gemm-to-amd -> origin/exclamaforte/gemm-to-amd 2025-07-24T03:47:21.7197868Z * [new branch] exclamaforte/heuristic-choices -> origin/exclamaforte/heuristic-choices 2025-07-24T03:47:21.7198522Z * [new branch] exclamaforte/just-gemm-model -> origin/exclamaforte/just-gemm-model 2025-07-24T03:47:21.7199102Z * [new branch] exclamaforte/log_mul -> origin/exclamaforte/log_mul 2025-07-24T03:47:21.7199685Z * [new branch] exclamaforte/memory-counter -> origin/exclamaforte/memory-counter 2025-07-24T03:47:21.7200334Z * [new branch] exclamaforte/scheduler-refactor -> origin/exclamaforte/scheduler-refactor 2025-07-24T03:47:21.7201037Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-07-24T03:47:21.7201855Z * [new branch] exclamaforte/update-autotune-configs -> origin/exclamaforte/update-autotune-configs 2025-07-24T03:47:21.7202664Z * [new branch] exclamaforte/update-autotune-configs-2 -> origin/exclamaforte/update-autotune-configs-2 2025-07-24T03:47:21.7203462Z * [new branch] exclamaforte/update-pandas-numpy-ci -> origin/exclamaforte/update-pandas-numpy-ci 2025-07-24T03:47:21.7710779Z * [new branch] exclamforte/gemm-model-final -> origin/exclamforte/gemm-model-final 2025-07-24T03:47:21.7711376Z * [new branch] exec -> origin/exec 2025-07-24T03:47:21.7711871Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-07-24T03:47:21.7712406Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-07-24T03:47:21.7712898Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-07-24T03:47:21.7713379Z * [new branch] export-D68846308 -> origin/export-D68846308 2025-07-24T03:47:21.7713868Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-07-24T03:47:21.7714351Z * [new branch] export-D71446522 -> origin/export-D71446522 2025-07-24T03:47:21.7715025Z * [new branch] export-D72391401 -> origin/export-D72391401 2025-07-24T03:47:21.7715506Z * [new branch] export-D72483950 -> origin/export-D72483950 2025-07-24T03:47:21.7716096Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-07-24T03:47:21.7716581Z * [new branch] export-D73287751 -> origin/export-D73287751 2025-07-24T03:47:21.7717075Z * [new branch] export-D75183591 -> origin/export-D75183591 2025-07-24T03:47:21.7717548Z * [new branch] export-D75605373 -> origin/export-D75605373 2025-07-24T03:47:21.7718026Z * [new branch] export-D75617432 -> origin/export-D75617432 2025-07-24T03:47:21.7718516Z * [new branch] export-D75659965 -> origin/export-D75659965 2025-07-24T03:47:21.7718998Z * [new branch] export-D76080931 -> origin/export-D76080931 2025-07-24T03:47:21.7719473Z * [new branch] export-D76463347 -> origin/export-D76463347 2025-07-24T03:47:21.7719957Z * [new branch] export-D76797250 -> origin/export-D76797250 2025-07-24T03:47:21.7720427Z * [new branch] export-D76885271 -> origin/export-D76885271 2025-07-24T03:47:21.7720914Z * [new branch] export-D76885620 -> origin/export-D76885620 2025-07-24T03:47:21.7721480Z * [new branch] export-D76936623 -> origin/export-D76936623 2025-07-24T03:47:21.7721957Z * [new branch] export-D76958268 -> origin/export-D76958268 2025-07-24T03:47:21.7722439Z * [new branch] export-D77639021 -> origin/export-D77639021 2025-07-24T03:47:21.7722905Z * [new branch] export-D78047846 -> origin/export-D78047846 2025-07-24T03:47:21.7723394Z * [new branch] export-D78308105 -> origin/export-D78308105 2025-07-24T03:47:21.7723869Z * [new branch] export-D78363609 -> origin/export-D78363609 2025-07-24T03:47:21.7724346Z * [new branch] export-D78375400 -> origin/export-D78375400 2025-07-24T03:47:21.7724824Z * [new branch] export-D78431075 -> origin/export-D78431075 2025-07-24T03:47:21.7725294Z * [new branch] export-D78431305 -> origin/export-D78431305 2025-07-24T03:47:21.7725771Z * [new branch] export-D78524147 -> origin/export-D78524147 2025-07-24T03:47:21.7726246Z * [new branch] export-D78580107 -> origin/export-D78580107 2025-07-24T03:47:21.7726727Z * [new branch] export-D78588406 -> origin/export-D78588406 2025-07-24T03:47:21.7727215Z * [new branch] export-D78691422 -> origin/export-D78691422 2025-07-24T03:47:21.7727690Z * [new branch] export-D78758466 -> origin/export-D78758466 2025-07-24T03:47:21.7728173Z * [new branch] export-D78822171 -> origin/export-D78822171 2025-07-24T03:47:21.7728638Z * [new branch] export-D78822351 -> origin/export-D78822351 2025-07-24T03:47:21.7729122Z * [new branch] export-D78822507 -> origin/export-D78822507 2025-07-24T03:47:21.7729596Z * [new branch] export-D78826994 -> origin/export-D78826994 2025-07-24T03:47:21.7730195Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-07-24T03:47:21.7730856Z * [new branch] ezyang/wip-aot-descriptors -> origin/ezyang/wip-aot-descriptors 2025-07-24T03:47:21.7731373Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-07-24T03:47:21.7731843Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-07-24T03:47:21.7732312Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-07-24T03:47:21.7732871Z * [new branch] fca -> origin/fca 2025-07-24T03:47:21.7733296Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-07-24T03:47:21.7733820Z * [new branch] fca5 -> origin/fca5 2025-07-24T03:47:21.7734332Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-07-24T03:47:21.8265510Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-07-24T03:47:21.8266444Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-07-24T03:47:21.8267147Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-07-24T03:47:21.8267657Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-07-24T03:47:21.8268180Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-07-24T03:47:21.8268697Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-07-24T03:47:21.8269218Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-07-24T03:47:21.8269799Z * [new branch] findhao/fix-indirect-access -> origin/findhao/fix-indirect-access 2025-07-24T03:47:21.8270367Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-07-24T03:47:21.8270892Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-07-24T03:47:21.8271420Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-07-24T03:47:21.8271953Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-07-24T03:47:21.8272511Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-07-24T03:47:21.8273050Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-07-24T03:47:21.8273528Z * [new branch] fix -> origin/fix 2025-07-24T03:47:21.8274047Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-07-24T03:47:21.8274603Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-07-24T03:47:21.8275098Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-07-24T03:47:21.8275640Z * [new branch] fix-inductor-periodic-0528 -> origin/fix-inductor-periodic-0528 2025-07-24T03:47:21.8276248Z * [new branch] fix-issue-149534-attempt-1 -> origin/fix-issue-149534-attempt-1 2025-07-24T03:47:21.8276849Z * [new branch] fix-rlease-feature-template -> origin/fix-rlease-feature-template 2025-07-24T03:47:21.8277383Z * [new branch] fix_153389 -> origin/fix_153389 2025-07-24T03:47:21.8277874Z * [new branch] fix_allow_train_eval_msg -> origin/fix_allow_train_eval_msg 2025-07-24T03:47:21.8278393Z * [new branch] fix_fake_tensor_issue -> origin/fix_fake_tensor_issue 2025-07-24T03:47:21.8278879Z * [new branch] fix_sbgemm_bf16 -> origin/fix_sbgemm_bf16 2025-07-24T03:47:21.8279341Z * [new branch] fixes-triage -> origin/fixes-triage 2025-07-24T03:47:21.8279804Z * [new branch] flex-lowering -> origin/flex-lowering 2025-07-24T03:47:21.8280344Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-07-24T03:47:21.8280966Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-07-24T03:47:21.8281620Z * [new branch] fsdp-qps-drop -> origin/fsdp-qps-drop 2025-07-24T03:47:21.8282314Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-07-24T03:47:21.8282788Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-07-24T03:47:21.8283356Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-07-24T03:47:21.8283795Z * [new branch] fused_qkv -> origin/fused_qkv 2025-07-24T03:47:21.8284228Z * [new branch] fx_cpp -> origin/fx_cpp 2025-07-24T03:47:21.8284658Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-07-24T03:47:21.8285145Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-07-24T03:47:21.8285632Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-07-24T03:47:21.8286118Z * [new branch] gh/CaoE/1/base -> origin/gh/CaoE/1/base 2025-07-24T03:47:21.8286581Z * [new branch] gh/CaoE/1/head -> origin/gh/CaoE/1/head 2025-07-24T03:47:21.8287039Z * [new branch] gh/CaoE/1/orig -> origin/gh/CaoE/1/orig 2025-07-24T03:47:21.8287508Z * [new branch] gh/CaoE/2/base -> origin/gh/CaoE/2/base 2025-07-24T03:47:21.8287959Z * [new branch] gh/CaoE/2/head -> origin/gh/CaoE/2/head 2025-07-24T03:47:21.8288521Z * [new branch] gh/CaoE/2/orig -> origin/gh/CaoE/2/orig 2025-07-24T03:47:21.8288992Z * [new branch] gh/CaoE/3/base -> origin/gh/CaoE/3/base 2025-07-24T03:47:21.8289440Z * [new branch] gh/CaoE/3/head -> origin/gh/CaoE/3/head 2025-07-24T03:47:21.8289909Z * [new branch] gh/CaoE/3/orig -> origin/gh/CaoE/3/orig 2025-07-24T03:47:21.8842485Z * [new branch] gh/ColinPeppler/72/base -> origin/gh/ColinPeppler/72/base 2025-07-24T03:47:21.8843116Z * [new branch] gh/ColinPeppler/72/head -> origin/gh/ColinPeppler/72/head 2025-07-24T03:47:21.8843706Z * [new branch] gh/ColinPeppler/72/orig -> origin/gh/ColinPeppler/72/orig 2025-07-24T03:47:21.8844292Z * [new branch] gh/ColinPeppler/75/base -> origin/gh/ColinPeppler/75/base 2025-07-24T03:47:21.8844865Z * [new branch] gh/ColinPeppler/75/head -> origin/gh/ColinPeppler/75/head 2025-07-24T03:47:21.8845421Z * [new branch] gh/ColinPeppler/75/orig -> origin/gh/ColinPeppler/75/orig 2025-07-24T03:47:21.8845998Z * [new branch] gh/ColinPeppler/76/base -> origin/gh/ColinPeppler/76/base 2025-07-24T03:47:21.8846557Z * [new branch] gh/ColinPeppler/76/head -> origin/gh/ColinPeppler/76/head 2025-07-24T03:47:21.8847107Z * [new branch] gh/ColinPeppler/76/orig -> origin/gh/ColinPeppler/76/orig 2025-07-24T03:47:21.8847669Z * [new branch] gh/ColinPeppler/77/base -> origin/gh/ColinPeppler/77/base 2025-07-24T03:47:21.8848217Z * [new branch] gh/ColinPeppler/77/head -> origin/gh/ColinPeppler/77/head 2025-07-24T03:47:21.8848835Z * [new branch] gh/ColinPeppler/77/orig -> origin/gh/ColinPeppler/77/orig 2025-07-24T03:47:21.8849433Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-07-24T03:47:21.8849957Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-07-24T03:47:21.8850482Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-07-24T03:47:21.8850989Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-07-24T03:47:21.8851503Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-07-24T03:47:21.8852007Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-07-24T03:47:21.8852524Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-07-24T03:47:21.8853259Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-07-24T03:47:21.8853895Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-07-24T03:47:21.8854420Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-07-24T03:47:21.8854918Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-07-24T03:47:21.8855409Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-07-24T03:47:21.8855902Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-07-24T03:47:21.8856384Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-07-24T03:47:21.8856872Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-07-24T03:47:21.8857358Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-07-24T03:47:21.8857843Z * [new branch] gh/H-Huang/172/base -> origin/gh/H-Huang/172/base 2025-07-24T03:47:21.8858333Z * [new branch] gh/H-Huang/172/head -> origin/gh/H-Huang/172/head 2025-07-24T03:47:21.8858821Z * [new branch] gh/H-Huang/172/orig -> origin/gh/H-Huang/172/orig 2025-07-24T03:47:21.8859306Z * [new branch] gh/H-Huang/177/base -> origin/gh/H-Huang/177/base 2025-07-24T03:47:21.8859780Z * [new branch] gh/H-Huang/177/head -> origin/gh/H-Huang/177/head 2025-07-24T03:47:21.8860264Z * [new branch] gh/H-Huang/177/orig -> origin/gh/H-Huang/177/orig 2025-07-24T03:47:21.8860738Z * [new branch] gh/H-Huang/180/base -> origin/gh/H-Huang/180/base 2025-07-24T03:47:21.8861225Z * [new branch] gh/H-Huang/180/head -> origin/gh/H-Huang/180/head 2025-07-24T03:47:21.8861713Z * [new branch] gh/H-Huang/180/orig -> origin/gh/H-Huang/180/orig 2025-07-24T03:47:21.8862195Z * [new branch] gh/H-Huang/182/base -> origin/gh/H-Huang/182/base 2025-07-24T03:47:21.8862688Z * [new branch] gh/H-Huang/182/head -> origin/gh/H-Huang/182/head 2025-07-24T03:47:21.8863165Z * [new branch] gh/H-Huang/182/orig -> origin/gh/H-Huang/182/orig 2025-07-24T03:47:21.8863655Z * [new branch] gh/H-Huang/183/base -> origin/gh/H-Huang/183/base 2025-07-24T03:47:21.8864141Z * [new branch] gh/H-Huang/183/head -> origin/gh/H-Huang/183/head 2025-07-24T03:47:21.8864624Z * [new branch] gh/H-Huang/183/orig -> origin/gh/H-Huang/183/orig 2025-07-24T03:47:21.8865114Z * [new branch] gh/H-Huang/185/base -> origin/gh/H-Huang/185/base 2025-07-24T03:47:21.8865596Z * [new branch] gh/H-Huang/185/head -> origin/gh/H-Huang/185/head 2025-07-24T03:47:21.8866087Z * [new branch] gh/H-Huang/185/orig -> origin/gh/H-Huang/185/orig 2025-07-24T03:47:21.8866585Z * [new branch] gh/H-Huang/187/base -> origin/gh/H-Huang/187/base 2025-07-24T03:47:21.9370527Z * [new branch] gh/H-Huang/187/head -> origin/gh/H-Huang/187/head 2025-07-24T03:47:21.9371094Z * [new branch] gh/H-Huang/187/orig -> origin/gh/H-Huang/187/orig 2025-07-24T03:47:21.9371593Z * [new branch] gh/H-Huang/191/base -> origin/gh/H-Huang/191/base 2025-07-24T03:47:21.9372092Z * [new branch] gh/H-Huang/191/head -> origin/gh/H-Huang/191/head 2025-07-24T03:47:21.9372585Z * [new branch] gh/H-Huang/191/orig -> origin/gh/H-Huang/191/orig 2025-07-24T03:47:21.9373075Z * [new branch] gh/H-Huang/192/base -> origin/gh/H-Huang/192/base 2025-07-24T03:47:21.9373561Z * [new branch] gh/H-Huang/192/head -> origin/gh/H-Huang/192/head 2025-07-24T03:47:21.9374896Z * [new branch] gh/H-Huang/192/orig -> origin/gh/H-Huang/192/orig 2025-07-24T03:47:21.9375511Z * [new branch] gh/H-Huang/193/base -> origin/gh/H-Huang/193/base 2025-07-24T03:47:21.9376021Z * [new branch] gh/H-Huang/193/head -> origin/gh/H-Huang/193/head 2025-07-24T03:47:21.9376506Z * [new branch] gh/H-Huang/193/orig -> origin/gh/H-Huang/193/orig 2025-07-24T03:47:21.9376997Z * [new branch] gh/H-Huang/194/base -> origin/gh/H-Huang/194/base 2025-07-24T03:47:21.9377481Z * [new branch] gh/H-Huang/194/head -> origin/gh/H-Huang/194/head 2025-07-24T03:47:21.9377970Z * [new branch] gh/H-Huang/194/orig -> origin/gh/H-Huang/194/orig 2025-07-24T03:47:21.9378459Z * [new branch] gh/H-Huang/195/base -> origin/gh/H-Huang/195/base 2025-07-24T03:47:21.9378942Z * [new branch] gh/H-Huang/195/head -> origin/gh/H-Huang/195/head 2025-07-24T03:47:21.9379425Z * [new branch] gh/H-Huang/195/orig -> origin/gh/H-Huang/195/orig 2025-07-24T03:47:21.9379908Z * [new branch] gh/H-Huang/196/base -> origin/gh/H-Huang/196/base 2025-07-24T03:47:21.9380399Z * [new branch] gh/H-Huang/196/head -> origin/gh/H-Huang/196/head 2025-07-24T03:47:21.9380874Z * [new branch] gh/H-Huang/196/orig -> origin/gh/H-Huang/196/orig 2025-07-24T03:47:21.9381366Z * [new branch] gh/H-Huang/197/base -> origin/gh/H-Huang/197/base 2025-07-24T03:47:21.9381878Z * [new branch] gh/H-Huang/197/head -> origin/gh/H-Huang/197/head 2025-07-24T03:47:21.9382357Z * [new branch] gh/H-Huang/197/orig -> origin/gh/H-Huang/197/orig 2025-07-24T03:47:21.9382889Z * [new branch] gh/IvanKobzarev/107/base -> origin/gh/IvanKobzarev/107/base 2025-07-24T03:47:21.9383473Z * [new branch] gh/IvanKobzarev/107/head -> origin/gh/IvanKobzarev/107/head 2025-07-24T03:47:21.9384034Z * [new branch] gh/IvanKobzarev/107/orig -> origin/gh/IvanKobzarev/107/orig 2025-07-24T03:47:21.9384602Z * [new branch] gh/IvanKobzarev/109/base -> origin/gh/IvanKobzarev/109/base 2025-07-24T03:47:21.9385162Z * [new branch] gh/IvanKobzarev/109/head -> origin/gh/IvanKobzarev/109/head 2025-07-24T03:47:21.9385721Z * [new branch] gh/IvanKobzarev/109/orig -> origin/gh/IvanKobzarev/109/orig 2025-07-24T03:47:21.9386276Z * [new branch] gh/IvanKobzarev/110/base -> origin/gh/IvanKobzarev/110/base 2025-07-24T03:47:21.9386833Z * [new branch] gh/IvanKobzarev/110/head -> origin/gh/IvanKobzarev/110/head 2025-07-24T03:47:21.9387381Z * [new branch] gh/IvanKobzarev/110/orig -> origin/gh/IvanKobzarev/110/orig 2025-07-24T03:47:21.9387940Z * [new branch] gh/IvanKobzarev/111/base -> origin/gh/IvanKobzarev/111/base 2025-07-24T03:47:21.9388495Z * [new branch] gh/IvanKobzarev/111/head -> origin/gh/IvanKobzarev/111/head 2025-07-24T03:47:21.9389059Z * [new branch] gh/IvanKobzarev/111/orig -> origin/gh/IvanKobzarev/111/orig 2025-07-24T03:47:21.9389612Z * [new branch] gh/IvanKobzarev/112/base -> origin/gh/IvanKobzarev/112/base 2025-07-24T03:47:21.9390161Z * [new branch] gh/IvanKobzarev/112/head -> origin/gh/IvanKobzarev/112/head 2025-07-24T03:47:21.9390713Z * [new branch] gh/IvanKobzarev/112/orig -> origin/gh/IvanKobzarev/112/orig 2025-07-24T03:47:21.9391265Z * [new branch] gh/IvanKobzarev/114/base -> origin/gh/IvanKobzarev/114/base 2025-07-24T03:47:21.9391831Z * [new branch] gh/IvanKobzarev/114/head -> origin/gh/IvanKobzarev/114/head 2025-07-24T03:47:21.9392377Z * [new branch] gh/IvanKobzarev/114/orig -> origin/gh/IvanKobzarev/114/orig 2025-07-24T03:47:21.9393070Z * [new branch] gh/IvanKobzarev/115/base -> origin/gh/IvanKobzarev/115/base 2025-07-24T03:47:21.9393636Z * [new branch] gh/IvanKobzarev/115/head -> origin/gh/IvanKobzarev/115/head 2025-07-24T03:47:21.9394290Z * [new branch] gh/IvanKobzarev/115/orig -> origin/gh/IvanKobzarev/115/orig 2025-07-24T03:47:21.9394862Z * [new branch] gh/IvanKobzarev/116/base -> origin/gh/IvanKobzarev/116/base 2025-07-24T03:47:21.9395419Z * [new branch] gh/IvanKobzarev/116/head -> origin/gh/IvanKobzarev/116/head 2025-07-24T03:47:21.9898817Z * [new branch] gh/IvanKobzarev/116/orig -> origin/gh/IvanKobzarev/116/orig 2025-07-24T03:47:21.9899444Z * [new branch] gh/IvanKobzarev/118/base -> origin/gh/IvanKobzarev/118/base 2025-07-24T03:47:21.9900064Z * [new branch] gh/IvanKobzarev/118/head -> origin/gh/IvanKobzarev/118/head 2025-07-24T03:47:21.9900728Z * [new branch] gh/IvanKobzarev/118/orig -> origin/gh/IvanKobzarev/118/orig 2025-07-24T03:47:21.9901296Z * [new branch] gh/IvanKobzarev/119/base -> origin/gh/IvanKobzarev/119/base 2025-07-24T03:47:21.9901864Z * [new branch] gh/IvanKobzarev/119/head -> origin/gh/IvanKobzarev/119/head 2025-07-24T03:47:21.9902429Z * [new branch] gh/IvanKobzarev/119/orig -> origin/gh/IvanKobzarev/119/orig 2025-07-24T03:47:21.9902977Z * [new branch] gh/IvanKobzarev/120/base -> origin/gh/IvanKobzarev/120/base 2025-07-24T03:47:21.9903539Z * [new branch] gh/IvanKobzarev/120/head -> origin/gh/IvanKobzarev/120/head 2025-07-24T03:47:21.9904103Z * [new branch] gh/IvanKobzarev/120/orig -> origin/gh/IvanKobzarev/120/orig 2025-07-24T03:47:21.9904659Z * [new branch] gh/IvanKobzarev/121/base -> origin/gh/IvanKobzarev/121/base 2025-07-24T03:47:21.9905219Z * [new branch] gh/IvanKobzarev/121/head -> origin/gh/IvanKobzarev/121/head 2025-07-24T03:47:21.9905823Z * [new branch] gh/IvanKobzarev/121/orig -> origin/gh/IvanKobzarev/121/orig 2025-07-24T03:47:21.9906396Z * [new branch] gh/IvanKobzarev/122/base -> origin/gh/IvanKobzarev/122/base 2025-07-24T03:47:21.9906996Z * [new branch] gh/IvanKobzarev/122/head -> origin/gh/IvanKobzarev/122/head 2025-07-24T03:47:21.9907550Z * [new branch] gh/IvanKobzarev/122/orig -> origin/gh/IvanKobzarev/122/orig 2025-07-24T03:47:21.9908112Z * [new branch] gh/IvanKobzarev/123/base -> origin/gh/IvanKobzarev/123/base 2025-07-24T03:47:21.9908664Z * [new branch] gh/IvanKobzarev/123/head -> origin/gh/IvanKobzarev/123/head 2025-07-24T03:47:21.9909222Z * [new branch] gh/IvanKobzarev/123/orig -> origin/gh/IvanKobzarev/123/orig 2025-07-24T03:47:21.9909773Z * [new branch] gh/IvanKobzarev/124/base -> origin/gh/IvanKobzarev/124/base 2025-07-24T03:47:21.9910339Z * [new branch] gh/IvanKobzarev/124/head -> origin/gh/IvanKobzarev/124/head 2025-07-24T03:47:21.9910902Z * [new branch] gh/IvanKobzarev/124/orig -> origin/gh/IvanKobzarev/124/orig 2025-07-24T03:47:21.9911456Z * [new branch] gh/IvanKobzarev/125/base -> origin/gh/IvanKobzarev/125/base 2025-07-24T03:47:21.9912053Z * [new branch] gh/IvanKobzarev/125/head -> origin/gh/IvanKobzarev/125/head 2025-07-24T03:47:21.9912656Z * [new branch] gh/IvanKobzarev/125/orig -> origin/gh/IvanKobzarev/125/orig 2025-07-24T03:47:21.9913227Z * [new branch] gh/IvanKobzarev/126/base -> origin/gh/IvanKobzarev/126/base 2025-07-24T03:47:21.9913789Z * [new branch] gh/IvanKobzarev/126/head -> origin/gh/IvanKobzarev/126/head 2025-07-24T03:47:21.9914337Z * [new branch] gh/IvanKobzarev/126/orig -> origin/gh/IvanKobzarev/126/orig 2025-07-24T03:47:21.9914895Z * [new branch] gh/IvanKobzarev/127/base -> origin/gh/IvanKobzarev/127/base 2025-07-24T03:47:21.9915647Z * [new branch] gh/IvanKobzarev/127/head -> origin/gh/IvanKobzarev/127/head 2025-07-24T03:47:21.9916904Z * [new branch] gh/IvanKobzarev/127/orig -> origin/gh/IvanKobzarev/127/orig 2025-07-24T03:47:21.9917480Z * [new branch] gh/IvanKobzarev/128/base -> origin/gh/IvanKobzarev/128/base 2025-07-24T03:47:21.9918089Z * [new branch] gh/IvanKobzarev/128/head -> origin/gh/IvanKobzarev/128/head 2025-07-24T03:47:21.9918698Z * [new branch] gh/IvanKobzarev/128/orig -> origin/gh/IvanKobzarev/128/orig 2025-07-24T03:47:21.9919256Z * [new branch] gh/IvanKobzarev/129/base -> origin/gh/IvanKobzarev/129/base 2025-07-24T03:47:21.9919818Z * [new branch] gh/IvanKobzarev/129/head -> origin/gh/IvanKobzarev/129/head 2025-07-24T03:47:21.9920387Z * [new branch] gh/IvanKobzarev/129/orig -> origin/gh/IvanKobzarev/129/orig 2025-07-24T03:47:21.9920945Z * [new branch] gh/IvanKobzarev/130/base -> origin/gh/IvanKobzarev/130/base 2025-07-24T03:47:21.9921590Z * [new branch] gh/IvanKobzarev/130/head -> origin/gh/IvanKobzarev/130/head 2025-07-24T03:47:21.9922142Z * [new branch] gh/IvanKobzarev/130/orig -> origin/gh/IvanKobzarev/130/orig 2025-07-24T03:47:21.9922701Z * [new branch] gh/IvanKobzarev/131/base -> origin/gh/IvanKobzarev/131/base 2025-07-24T03:47:21.9923264Z * [new branch] gh/IvanKobzarev/131/head -> origin/gh/IvanKobzarev/131/head 2025-07-24T03:47:21.9923823Z * [new branch] gh/IvanKobzarev/131/orig -> origin/gh/IvanKobzarev/131/orig 2025-07-24T03:47:21.9924441Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-07-24T03:47:22.0525201Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-07-24T03:47:22.0525849Z * [new branch] gh/NikhilAPatel/16/base -> origin/gh/NikhilAPatel/16/base 2025-07-24T03:47:22.0526425Z * [new branch] gh/NikhilAPatel/16/head -> origin/gh/NikhilAPatel/16/head 2025-07-24T03:47:22.0526988Z * [new branch] gh/NikhilAPatel/16/orig -> origin/gh/NikhilAPatel/16/orig 2025-07-24T03:47:22.0527544Z * [new branch] gh/NikhilAPatel/17/base -> origin/gh/NikhilAPatel/17/base 2025-07-24T03:47:22.0528092Z * [new branch] gh/NikhilAPatel/17/head -> origin/gh/NikhilAPatel/17/head 2025-07-24T03:47:22.0528658Z * [new branch] gh/NikhilAPatel/17/orig -> origin/gh/NikhilAPatel/17/orig 2025-07-24T03:47:22.0529213Z * [new branch] gh/NikhilAPatel/18/base -> origin/gh/NikhilAPatel/18/base 2025-07-24T03:47:22.0529764Z * [new branch] gh/NikhilAPatel/18/head -> origin/gh/NikhilAPatel/18/head 2025-07-24T03:47:22.0530364Z * [new branch] gh/NikhilAPatel/18/orig -> origin/gh/NikhilAPatel/18/orig 2025-07-24T03:47:22.0530970Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-07-24T03:47:22.0531532Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-07-24T03:47:22.0532082Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-07-24T03:47:22.0532616Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-07-24T03:47:22.0533160Z * [new branch] gh/NikhilAPatel/8/base -> origin/gh/NikhilAPatel/8/base 2025-07-24T03:47:22.0533692Z * [new branch] gh/NikhilAPatel/8/head -> origin/gh/NikhilAPatel/8/head 2025-07-24T03:47:22.0534236Z * [new branch] gh/NikhilAPatel/8/orig -> origin/gh/NikhilAPatel/8/orig 2025-07-24T03:47:22.0534776Z * [new branch] gh/NikhilAPatel/9/base -> origin/gh/NikhilAPatel/9/base 2025-07-24T03:47:22.0535550Z * [new branch] gh/NikhilAPatel/9/head -> origin/gh/NikhilAPatel/9/head 2025-07-24T03:47:22.0536147Z * [new branch] gh/NikhilAPatel/9/orig -> origin/gh/NikhilAPatel/9/orig 2025-07-24T03:47:22.0536842Z * [new branch] gh/PaliC/1/base -> origin/gh/PaliC/1/base 2025-07-24T03:47:22.0537348Z * [new branch] gh/PaliC/1/head -> origin/gh/PaliC/1/head 2025-07-24T03:47:22.0537842Z * [new branch] gh/PaliC/1/orig -> origin/gh/PaliC/1/orig 2025-07-24T03:47:22.0538322Z * [new branch] gh/PaliC/10/base -> origin/gh/PaliC/10/base 2025-07-24T03:47:22.0538819Z * [new branch] gh/PaliC/10/head -> origin/gh/PaliC/10/head 2025-07-24T03:47:22.0539294Z * [new branch] gh/PaliC/11/base -> origin/gh/PaliC/11/base 2025-07-24T03:47:22.0539774Z * [new branch] gh/PaliC/11/head -> origin/gh/PaliC/11/head 2025-07-24T03:47:22.0540259Z * [new branch] gh/PaliC/12/base -> origin/gh/PaliC/12/base 2025-07-24T03:47:22.0540729Z * [new branch] gh/PaliC/12/head -> origin/gh/PaliC/12/head 2025-07-24T03:47:22.0541214Z * [new branch] gh/PaliC/12/orig -> origin/gh/PaliC/12/orig 2025-07-24T03:47:22.0541681Z * [new branch] gh/PaliC/13/base -> origin/gh/PaliC/13/base 2025-07-24T03:47:22.0542224Z * [new branch] gh/PaliC/13/head -> origin/gh/PaliC/13/head 2025-07-24T03:47:22.0542752Z * [new branch] gh/PaliC/13/orig -> origin/gh/PaliC/13/orig 2025-07-24T03:47:22.0543223Z * [new branch] gh/PaliC/14/base -> origin/gh/PaliC/14/base 2025-07-24T03:47:22.0543700Z * [new branch] gh/PaliC/14/head -> origin/gh/PaliC/14/head 2025-07-24T03:47:22.0544178Z * [new branch] gh/PaliC/14/orig -> origin/gh/PaliC/14/orig 2025-07-24T03:47:22.0544650Z * [new branch] gh/PaliC/15/base -> origin/gh/PaliC/15/base 2025-07-24T03:47:22.0545124Z * [new branch] gh/PaliC/15/head -> origin/gh/PaliC/15/head 2025-07-24T03:47:22.0545589Z * [new branch] gh/PaliC/15/orig -> origin/gh/PaliC/15/orig 2025-07-24T03:47:22.0546072Z * [new branch] gh/PaliC/16/base -> origin/gh/PaliC/16/base 2025-07-24T03:47:22.0546542Z * [new branch] gh/PaliC/16/head -> origin/gh/PaliC/16/head 2025-07-24T03:47:22.0547014Z * [new branch] gh/PaliC/16/orig -> origin/gh/PaliC/16/orig 2025-07-24T03:47:22.0547486Z * [new branch] gh/PaliC/17/base -> origin/gh/PaliC/17/base 2025-07-24T03:47:22.0547966Z * [new branch] gh/PaliC/17/head -> origin/gh/PaliC/17/head 2025-07-24T03:47:22.0548492Z * [new branch] gh/PaliC/17/orig -> origin/gh/PaliC/17/orig 2025-07-24T03:47:22.0549021Z * [new branch] gh/PaliC/18/base -> origin/gh/PaliC/18/base 2025-07-24T03:47:22.0549547Z * [new branch] gh/PaliC/18/head -> origin/gh/PaliC/18/head 2025-07-24T03:47:22.0550079Z * [new branch] gh/PaliC/18/orig -> origin/gh/PaliC/18/orig 2025-07-24T03:47:22.1034373Z * [new branch] gh/PaliC/19/base -> origin/gh/PaliC/19/base 2025-07-24T03:47:22.1034924Z * [new branch] gh/PaliC/19/head -> origin/gh/PaliC/19/head 2025-07-24T03:47:22.1035417Z * [new branch] gh/PaliC/19/orig -> origin/gh/PaliC/19/orig 2025-07-24T03:47:22.1035903Z * [new branch] gh/PaliC/2/base -> origin/gh/PaliC/2/base 2025-07-24T03:47:22.1036389Z * [new branch] gh/PaliC/2/head -> origin/gh/PaliC/2/head 2025-07-24T03:47:22.1036857Z * [new branch] gh/PaliC/2/orig -> origin/gh/PaliC/2/orig 2025-07-24T03:47:22.1037555Z * [new branch] gh/PaliC/20/base -> origin/gh/PaliC/20/base 2025-07-24T03:47:22.1038029Z * [new branch] gh/PaliC/20/head -> origin/gh/PaliC/20/head 2025-07-24T03:47:22.1038662Z * [new branch] gh/PaliC/20/orig -> origin/gh/PaliC/20/orig 2025-07-24T03:47:22.1039151Z * [new branch] gh/PaliC/21/base -> origin/gh/PaliC/21/base 2025-07-24T03:47:22.1039622Z * [new branch] gh/PaliC/21/head -> origin/gh/PaliC/21/head 2025-07-24T03:47:22.1040092Z * [new branch] gh/PaliC/21/orig -> origin/gh/PaliC/21/orig 2025-07-24T03:47:22.1040560Z * [new branch] gh/PaliC/22/base -> origin/gh/PaliC/22/base 2025-07-24T03:47:22.1041037Z * [new branch] gh/PaliC/22/head -> origin/gh/PaliC/22/head 2025-07-24T03:47:22.1041631Z * [new branch] gh/PaliC/22/orig -> origin/gh/PaliC/22/orig 2025-07-24T03:47:22.1042114Z * [new branch] gh/PaliC/23/base -> origin/gh/PaliC/23/base 2025-07-24T03:47:22.1042609Z * [new branch] gh/PaliC/23/head -> origin/gh/PaliC/23/head 2025-07-24T03:47:22.1043083Z * [new branch] gh/PaliC/23/orig -> origin/gh/PaliC/23/orig 2025-07-24T03:47:22.1043564Z * [new branch] gh/PaliC/3/base -> origin/gh/PaliC/3/base 2025-07-24T03:47:22.1044039Z * [new branch] gh/PaliC/3/head -> origin/gh/PaliC/3/head 2025-07-24T03:47:22.1044503Z * [new branch] gh/PaliC/4/base -> origin/gh/PaliC/4/base 2025-07-24T03:47:22.1044977Z * [new branch] gh/PaliC/4/head -> origin/gh/PaliC/4/head 2025-07-24T03:47:22.1045445Z * [new branch] gh/PaliC/5/base -> origin/gh/PaliC/5/base 2025-07-24T03:47:22.1045916Z * [new branch] gh/PaliC/5/head -> origin/gh/PaliC/5/head 2025-07-24T03:47:22.1046383Z * [new branch] gh/PaliC/6/base -> origin/gh/PaliC/6/base 2025-07-24T03:47:22.1046857Z * [new branch] gh/PaliC/6/head -> origin/gh/PaliC/6/head 2025-07-24T03:47:22.1047326Z * [new branch] gh/PaliC/7/base -> origin/gh/PaliC/7/base 2025-07-24T03:47:22.1047795Z * [new branch] gh/PaliC/7/head -> origin/gh/PaliC/7/head 2025-07-24T03:47:22.1048264Z * [new branch] gh/PaliC/8/base -> origin/gh/PaliC/8/base 2025-07-24T03:47:22.1048727Z * [new branch] gh/PaliC/8/head -> origin/gh/PaliC/8/head 2025-07-24T03:47:22.1049197Z * [new branch] gh/PaliC/9/base -> origin/gh/PaliC/9/base 2025-07-24T03:47:22.1049661Z * [new branch] gh/PaliC/9/head -> origin/gh/PaliC/9/head 2025-07-24T03:47:22.1050173Z * [new branch] gh/PaulZhang12/1/base -> origin/gh/PaulZhang12/1/base 2025-07-24T03:47:22.1050719Z * [new branch] gh/PaulZhang12/1/head -> origin/gh/PaulZhang12/1/head 2025-07-24T03:47:22.1051244Z * [new branch] gh/PaulZhang12/1/orig -> origin/gh/PaulZhang12/1/orig 2025-07-24T03:47:22.1051818Z * [new branch] gh/PaulZhang12/17/base -> origin/gh/PaulZhang12/17/base 2025-07-24T03:47:22.1052365Z * [new branch] gh/PaulZhang12/17/head -> origin/gh/PaulZhang12/17/head 2025-07-24T03:47:22.1052898Z * [new branch] gh/PaulZhang12/18/base -> origin/gh/PaulZhang12/18/base 2025-07-24T03:47:22.1053430Z * [new branch] gh/PaulZhang12/18/head -> origin/gh/PaulZhang12/18/head 2025-07-24T03:47:22.1053961Z * [new branch] gh/PaulZhang12/18/orig -> origin/gh/PaulZhang12/18/orig 2025-07-24T03:47:22.1054503Z * [new branch] gh/PaulZhang12/19/base -> origin/gh/PaulZhang12/19/base 2025-07-24T03:47:22.1055040Z * [new branch] gh/PaulZhang12/19/head -> origin/gh/PaulZhang12/19/head 2025-07-24T03:47:22.1055724Z * [new branch] gh/PaulZhang12/19/orig -> origin/gh/PaulZhang12/19/orig 2025-07-24T03:47:22.1056370Z * [new branch] gh/PaulZhang12/4/base -> origin/gh/PaulZhang12/4/base 2025-07-24T03:47:22.1056901Z * [new branch] gh/PaulZhang12/4/head -> origin/gh/PaulZhang12/4/head 2025-07-24T03:47:22.1057438Z * [new branch] gh/PaulZhang12/4/orig -> origin/gh/PaulZhang12/4/orig 2025-07-24T03:47:22.1057962Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-07-24T03:47:22.1986696Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-07-24T03:47:22.1987642Z * [new branch] gh/Sidharth123-cpu/24/base -> origin/gh/Sidharth123-cpu/24/base 2025-07-24T03:47:22.1988486Z * [new branch] gh/Sidharth123-cpu/25/base -> origin/gh/Sidharth123-cpu/25/base 2025-07-24T03:47:22.1989439Z * [new branch] gh/Sidharth123-cpu/26/base -> origin/gh/Sidharth123-cpu/26/base 2025-07-24T03:47:22.1990577Z * [new branch] gh/Sidharth123-cpu/27/base -> origin/gh/Sidharth123-cpu/27/base 2025-07-24T03:47:22.1991783Z * [new branch] gh/Sidharth123-cpu/28/base -> origin/gh/Sidharth123-cpu/28/base 2025-07-24T03:47:22.1992881Z * [new branch] gh/Sidharth123-cpu/28/head -> origin/gh/Sidharth123-cpu/28/head 2025-07-24T03:47:22.1994041Z * [new branch] gh/Sidharth123-cpu/28/orig -> origin/gh/Sidharth123-cpu/28/orig 2025-07-24T03:47:22.1995075Z * [new branch] gh/Sidharth123-cpu/34/base -> origin/gh/Sidharth123-cpu/34/base 2025-07-24T03:47:22.1996183Z * [new branch] gh/Sidharth123-cpu/34/head -> origin/gh/Sidharth123-cpu/34/head 2025-07-24T03:47:22.1997229Z * [new branch] gh/Sidharth123-cpu/34/orig -> origin/gh/Sidharth123-cpu/34/orig 2025-07-24T03:47:22.1998324Z * [new branch] gh/Sidharth123-cpu/35/base -> origin/gh/Sidharth123-cpu/35/base 2025-07-24T03:47:22.1999376Z * [new branch] gh/Sidharth123-cpu/35/head -> origin/gh/Sidharth123-cpu/35/head 2025-07-24T03:47:22.2000460Z * [new branch] gh/Sidharth123-cpu/35/orig -> origin/gh/Sidharth123-cpu/35/orig 2025-07-24T03:47:22.2001511Z * [new branch] gh/Sidharth123-cpu/36/base -> origin/gh/Sidharth123-cpu/36/base 2025-07-24T03:47:22.2002620Z * [new branch] gh/Sidharth123-cpu/36/head -> origin/gh/Sidharth123-cpu/36/head 2025-07-24T03:47:22.2003758Z * [new branch] gh/Sidharth123-cpu/36/orig -> origin/gh/Sidharth123-cpu/36/orig 2025-07-24T03:47:22.2004872Z * [new branch] gh/Sidharth123-cpu/38/base -> origin/gh/Sidharth123-cpu/38/base 2025-07-24T03:47:22.2005684Z * [new branch] gh/Sidharth123-cpu/38/head -> origin/gh/Sidharth123-cpu/38/head 2025-07-24T03:47:22.2006321Z * [new branch] gh/Sidharth123-cpu/38/orig -> origin/gh/Sidharth123-cpu/38/orig 2025-07-24T03:47:22.2006945Z * [new branch] gh/Sidharth123-cpu/39/base -> origin/gh/Sidharth123-cpu/39/base 2025-07-24T03:47:22.2007578Z * [new branch] gh/Sidharth123-cpu/39/head -> origin/gh/Sidharth123-cpu/39/head 2025-07-24T03:47:22.2008149Z * [new branch] gh/Sidharth123-cpu/39/orig -> origin/gh/Sidharth123-cpu/39/orig 2025-07-24T03:47:22.2008721Z * [new branch] gh/Sidharth123-cpu/40/base -> origin/gh/Sidharth123-cpu/40/base 2025-07-24T03:47:22.2009345Z * [new branch] gh/Sidharth123-cpu/40/head -> origin/gh/Sidharth123-cpu/40/head 2025-07-24T03:47:22.2009909Z * [new branch] gh/Sidharth123-cpu/40/orig -> origin/gh/Sidharth123-cpu/40/orig 2025-07-24T03:47:22.2010482Z * [new branch] gh/Sidharth123-cpu/41/base -> origin/gh/Sidharth123-cpu/41/base 2025-07-24T03:47:22.2011046Z * [new branch] gh/Sidharth123-cpu/41/head -> origin/gh/Sidharth123-cpu/41/head 2025-07-24T03:47:22.2011888Z * [new branch] gh/Sidharth123-cpu/41/orig -> origin/gh/Sidharth123-cpu/41/orig 2025-07-24T03:47:22.2012517Z * [new branch] gh/Sidharth123-cpu/42/base -> origin/gh/Sidharth123-cpu/42/base 2025-07-24T03:47:22.2013196Z * [new branch] gh/Sidharth123-cpu/42/head -> origin/gh/Sidharth123-cpu/42/head 2025-07-24T03:47:22.2013782Z * [new branch] gh/Sidharth123-cpu/42/orig -> origin/gh/Sidharth123-cpu/42/orig 2025-07-24T03:47:22.2014347Z * [new branch] gh/Sidharth123-cpu/43/base -> origin/gh/Sidharth123-cpu/43/base 2025-07-24T03:47:22.2014932Z * [new branch] gh/Sidharth123-cpu/43/head -> origin/gh/Sidharth123-cpu/43/head 2025-07-24T03:47:22.2015517Z * [new branch] gh/Sidharth123-cpu/43/orig -> origin/gh/Sidharth123-cpu/43/orig 2025-07-24T03:47:22.2016089Z * [new branch] gh/Sidharth123-cpu/44/base -> origin/gh/Sidharth123-cpu/44/base 2025-07-24T03:47:22.2016720Z * [new branch] gh/Sidharth123-cpu/44/head -> origin/gh/Sidharth123-cpu/44/head 2025-07-24T03:47:22.2017284Z * [new branch] gh/Sidharth123-cpu/44/orig -> origin/gh/Sidharth123-cpu/44/orig 2025-07-24T03:47:22.2017979Z * [new branch] gh/Sidharth123-cpu/45/base -> origin/gh/Sidharth123-cpu/45/base 2025-07-24T03:47:22.2018594Z * [new branch] gh/Sidharth123-cpu/45/head -> origin/gh/Sidharth123-cpu/45/head 2025-07-24T03:47:22.2019164Z * [new branch] gh/Sidharth123-cpu/45/orig -> origin/gh/Sidharth123-cpu/45/orig 2025-07-24T03:47:22.2019722Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-07-24T03:47:22.2020246Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-07-24T03:47:22.2020789Z * [new branch] gh/StrongerXi/103/base -> origin/gh/StrongerXi/103/base 2025-07-24T03:47:22.2821741Z * [new branch] gh/StrongerXi/103/head -> origin/gh/StrongerXi/103/head 2025-07-24T03:47:22.2822369Z * [new branch] gh/StrongerXi/103/orig -> origin/gh/StrongerXi/103/orig 2025-07-24T03:47:22.2822937Z * [new branch] gh/StrongerXi/127/base -> origin/gh/StrongerXi/127/base 2025-07-24T03:47:22.2823475Z * [new branch] gh/StrongerXi/127/head -> origin/gh/StrongerXi/127/head 2025-07-24T03:47:22.2824032Z * [new branch] gh/StrongerXi/127/orig -> origin/gh/StrongerXi/127/orig 2025-07-24T03:47:22.2824577Z * [new branch] gh/StrongerXi/128/base -> origin/gh/StrongerXi/128/base 2025-07-24T03:47:22.2825102Z * [new branch] gh/StrongerXi/128/head -> origin/gh/StrongerXi/128/head 2025-07-24T03:47:22.2825636Z * [new branch] gh/StrongerXi/128/orig -> origin/gh/StrongerXi/128/orig 2025-07-24T03:47:22.2826164Z * [new branch] gh/StrongerXi/129/base -> origin/gh/StrongerXi/129/base 2025-07-24T03:47:22.2826697Z * [new branch] gh/StrongerXi/129/head -> origin/gh/StrongerXi/129/head 2025-07-24T03:47:22.2827232Z * [new branch] gh/StrongerXi/129/orig -> origin/gh/StrongerXi/129/orig 2025-07-24T03:47:22.2827764Z * [new branch] gh/StrongerXi/130/base -> origin/gh/StrongerXi/130/base 2025-07-24T03:47:22.2828299Z * [new branch] gh/StrongerXi/130/head -> origin/gh/StrongerXi/130/head 2025-07-24T03:47:22.2828830Z * [new branch] gh/StrongerXi/130/orig -> origin/gh/StrongerXi/130/orig 2025-07-24T03:47:22.2829365Z * [new branch] gh/StrongerXi/131/base -> origin/gh/StrongerXi/131/base 2025-07-24T03:47:22.2829896Z * [new branch] gh/StrongerXi/131/head -> origin/gh/StrongerXi/131/head 2025-07-24T03:47:22.2830425Z * [new branch] gh/StrongerXi/131/orig -> origin/gh/StrongerXi/131/orig 2025-07-24T03:47:22.2830958Z * [new branch] gh/StrongerXi/132/base -> origin/gh/StrongerXi/132/base 2025-07-24T03:47:22.2831716Z * [new branch] gh/StrongerXi/132/head -> origin/gh/StrongerXi/132/head 2025-07-24T03:47:22.2832389Z * [new branch] gh/StrongerXi/132/orig -> origin/gh/StrongerXi/132/orig 2025-07-24T03:47:22.2832922Z * [new branch] gh/StrongerXi/133/base -> origin/gh/StrongerXi/133/base 2025-07-24T03:47:22.2833452Z * [new branch] gh/StrongerXi/133/head -> origin/gh/StrongerXi/133/head 2025-07-24T03:47:22.2833996Z * [new branch] gh/StrongerXi/133/orig -> origin/gh/StrongerXi/133/orig 2025-07-24T03:47:22.2834530Z * [new branch] gh/StrongerXi/134/base -> origin/gh/StrongerXi/134/base 2025-07-24T03:47:22.2835066Z * [new branch] gh/StrongerXi/134/head -> origin/gh/StrongerXi/134/head 2025-07-24T03:47:22.2835595Z * [new branch] gh/StrongerXi/134/orig -> origin/gh/StrongerXi/134/orig 2025-07-24T03:47:22.2836135Z * [new branch] gh/StrongerXi/135/base -> origin/gh/StrongerXi/135/base 2025-07-24T03:47:22.2836677Z * [new branch] gh/StrongerXi/135/head -> origin/gh/StrongerXi/135/head 2025-07-24T03:47:22.2837203Z * [new branch] gh/StrongerXi/135/orig -> origin/gh/StrongerXi/135/orig 2025-07-24T03:47:22.2837735Z * [new branch] gh/StrongerXi/136/base -> origin/gh/StrongerXi/136/base 2025-07-24T03:47:22.2838259Z * [new branch] gh/StrongerXi/136/head -> origin/gh/StrongerXi/136/head 2025-07-24T03:47:22.2838805Z * [new branch] gh/StrongerXi/136/orig -> origin/gh/StrongerXi/136/orig 2025-07-24T03:47:22.2839343Z * [new branch] gh/StrongerXi/137/base -> origin/gh/StrongerXi/137/base 2025-07-24T03:47:22.2839873Z * [new branch] gh/StrongerXi/137/head -> origin/gh/StrongerXi/137/head 2025-07-24T03:47:22.2840413Z * [new branch] gh/StrongerXi/137/orig -> origin/gh/StrongerXi/137/orig 2025-07-24T03:47:22.2840941Z * [new branch] gh/StrongerXi/138/base -> origin/gh/StrongerXi/138/base 2025-07-24T03:47:22.2841617Z * [new branch] gh/StrongerXi/138/head -> origin/gh/StrongerXi/138/head 2025-07-24T03:47:22.2842160Z * [new branch] gh/StrongerXi/138/orig -> origin/gh/StrongerXi/138/orig 2025-07-24T03:47:22.2842746Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-07-24T03:47:22.2843279Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-07-24T03:47:22.2843799Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-07-24T03:47:22.2844325Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-07-24T03:47:22.2844859Z * [new branch] gh/XilunWu/110/base -> origin/gh/XilunWu/110/base 2025-07-24T03:47:22.2845389Z * [new branch] gh/XilunWu/110/head -> origin/gh/XilunWu/110/head 2025-07-24T03:47:22.2845891Z * [new branch] gh/XilunWu/110/orig -> origin/gh/XilunWu/110/orig 2025-07-24T03:47:22.2846394Z * [new branch] gh/XilunWu/115/base -> origin/gh/XilunWu/115/base 2025-07-24T03:47:22.3405030Z * [new branch] gh/XilunWu/115/head -> origin/gh/XilunWu/115/head 2025-07-24T03:47:22.3405682Z * [new branch] gh/XilunWu/115/orig -> origin/gh/XilunWu/115/orig 2025-07-24T03:47:22.3406198Z * [new branch] gh/XilunWu/116/base -> origin/gh/XilunWu/116/base 2025-07-24T03:47:22.3406763Z * [new branch] gh/XilunWu/116/head -> origin/gh/XilunWu/116/head 2025-07-24T03:47:22.3407266Z * [new branch] gh/XilunWu/116/orig -> origin/gh/XilunWu/116/orig 2025-07-24T03:47:22.3407770Z * [new branch] gh/XilunWu/117/base -> origin/gh/XilunWu/117/base 2025-07-24T03:47:22.3408526Z * [new branch] gh/XilunWu/117/head -> origin/gh/XilunWu/117/head 2025-07-24T03:47:22.3409029Z * [new branch] gh/XilunWu/117/orig -> origin/gh/XilunWu/117/orig 2025-07-24T03:47:22.3409676Z * [new branch] gh/XilunWu/118/base -> origin/gh/XilunWu/118/base 2025-07-24T03:47:22.3410174Z * [new branch] gh/XilunWu/118/head -> origin/gh/XilunWu/118/head 2025-07-24T03:47:22.3410692Z * [new branch] gh/XilunWu/118/orig -> origin/gh/XilunWu/118/orig 2025-07-24T03:47:22.3411195Z * [new branch] gh/XilunWu/119/base -> origin/gh/XilunWu/119/base 2025-07-24T03:47:22.3411689Z * [new branch] gh/XilunWu/119/head -> origin/gh/XilunWu/119/head 2025-07-24T03:47:22.3412259Z * [new branch] gh/XilunWu/119/orig -> origin/gh/XilunWu/119/orig 2025-07-24T03:47:22.3412798Z * [new branch] gh/XilunWu/129/base -> origin/gh/XilunWu/129/base 2025-07-24T03:47:22.3413307Z * [new branch] gh/XilunWu/129/head -> origin/gh/XilunWu/129/head 2025-07-24T03:47:22.3413806Z * [new branch] gh/XilunWu/129/orig -> origin/gh/XilunWu/129/orig 2025-07-24T03:47:22.3414305Z * [new branch] gh/XilunWu/130/base -> origin/gh/XilunWu/130/base 2025-07-24T03:47:22.3414800Z * [new branch] gh/XilunWu/130/head -> origin/gh/XilunWu/130/head 2025-07-24T03:47:22.3415288Z * [new branch] gh/XilunWu/130/orig -> origin/gh/XilunWu/130/orig 2025-07-24T03:47:22.3415787Z * [new branch] gh/XilunWu/131/base -> origin/gh/XilunWu/131/base 2025-07-24T03:47:22.3416293Z * [new branch] gh/XilunWu/131/head -> origin/gh/XilunWu/131/head 2025-07-24T03:47:22.3416788Z * [new branch] gh/XilunWu/131/orig -> origin/gh/XilunWu/131/orig 2025-07-24T03:47:22.3417286Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-07-24T03:47:22.3417783Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-07-24T03:47:22.3418340Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-07-24T03:47:22.3418880Z * [new branch] gh/XilunWu/136/base -> origin/gh/XilunWu/136/base 2025-07-24T03:47:22.3419384Z * [new branch] gh/XilunWu/136/head -> origin/gh/XilunWu/136/head 2025-07-24T03:47:22.3419887Z * [new branch] gh/XilunWu/136/orig -> origin/gh/XilunWu/136/orig 2025-07-24T03:47:22.3420387Z * [new branch] gh/XilunWu/139/base -> origin/gh/XilunWu/139/base 2025-07-24T03:47:22.3420882Z * [new branch] gh/XilunWu/139/head -> origin/gh/XilunWu/139/head 2025-07-24T03:47:22.3421381Z * [new branch] gh/XilunWu/139/orig -> origin/gh/XilunWu/139/orig 2025-07-24T03:47:22.3421882Z * [new branch] gh/XilunWu/143/base -> origin/gh/XilunWu/143/base 2025-07-24T03:47:22.3422393Z * [new branch] gh/XilunWu/143/head -> origin/gh/XilunWu/143/head 2025-07-24T03:47:22.3422892Z * [new branch] gh/XilunWu/143/orig -> origin/gh/XilunWu/143/orig 2025-07-24T03:47:22.3423396Z * [new branch] gh/XilunWu/144/base -> origin/gh/XilunWu/144/base 2025-07-24T03:47:22.3423885Z * [new branch] gh/XilunWu/144/head -> origin/gh/XilunWu/144/head 2025-07-24T03:47:22.3424468Z * [new branch] gh/XilunWu/144/orig -> origin/gh/XilunWu/144/orig 2025-07-24T03:47:22.3425033Z * [new branch] gh/XilunWu/145/base -> origin/gh/XilunWu/145/base 2025-07-24T03:47:22.3425529Z * [new branch] gh/XilunWu/145/head -> origin/gh/XilunWu/145/head 2025-07-24T03:47:22.3426026Z * [new branch] gh/XilunWu/145/orig -> origin/gh/XilunWu/145/orig 2025-07-24T03:47:22.3426648Z * [new branch] gh/XilunWu/146/base -> origin/gh/XilunWu/146/base 2025-07-24T03:47:22.3427165Z * [new branch] gh/XilunWu/146/head -> origin/gh/XilunWu/146/head 2025-07-24T03:47:22.3427775Z * [new branch] gh/XilunWu/146/orig -> origin/gh/XilunWu/146/orig 2025-07-24T03:47:22.3428276Z * [new branch] gh/XilunWu/147/base -> origin/gh/XilunWu/147/base 2025-07-24T03:47:22.3428798Z * [new branch] gh/XilunWu/147/head -> origin/gh/XilunWu/147/head 2025-07-24T03:47:22.3429287Z * [new branch] gh/XilunWu/147/orig -> origin/gh/XilunWu/147/orig 2025-07-24T03:47:22.3879792Z * [new branch] gh/XilunWu/148/base -> origin/gh/XilunWu/148/base 2025-07-24T03:47:22.3880368Z * [new branch] gh/XilunWu/148/head -> origin/gh/XilunWu/148/head 2025-07-24T03:47:22.3880886Z * [new branch] gh/XilunWu/148/orig -> origin/gh/XilunWu/148/orig 2025-07-24T03:47:22.3881526Z * [new branch] gh/XilunWu/149/base -> origin/gh/XilunWu/149/base 2025-07-24T03:47:22.3882033Z * [new branch] gh/XilunWu/149/head -> origin/gh/XilunWu/149/head 2025-07-24T03:47:22.3882554Z * [new branch] gh/XilunWu/149/orig -> origin/gh/XilunWu/149/orig 2025-07-24T03:47:22.3883060Z * [new branch] gh/XilunWu/150/base -> origin/gh/XilunWu/150/base 2025-07-24T03:47:22.3883558Z * [new branch] gh/XilunWu/150/head -> origin/gh/XilunWu/150/head 2025-07-24T03:47:22.3884067Z * [new branch] gh/XilunWu/150/orig -> origin/gh/XilunWu/150/orig 2025-07-24T03:47:22.3884559Z * [new branch] gh/XilunWu/151/base -> origin/gh/XilunWu/151/base 2025-07-24T03:47:22.3885061Z * [new branch] gh/XilunWu/151/head -> origin/gh/XilunWu/151/head 2025-07-24T03:47:22.3885562Z * [new branch] gh/XilunWu/151/orig -> origin/gh/XilunWu/151/orig 2025-07-24T03:47:22.3886066Z * [new branch] gh/XilunWu/152/base -> origin/gh/XilunWu/152/base 2025-07-24T03:47:22.3886578Z * [new branch] gh/XilunWu/152/head -> origin/gh/XilunWu/152/head 2025-07-24T03:47:22.3887076Z * [new branch] gh/XilunWu/152/orig -> origin/gh/XilunWu/152/orig 2025-07-24T03:47:22.3887586Z * [new branch] gh/XilunWu/153/base -> origin/gh/XilunWu/153/base 2025-07-24T03:47:22.3888184Z * [new branch] gh/XilunWu/153/head -> origin/gh/XilunWu/153/head 2025-07-24T03:47:22.3888678Z * [new branch] gh/XilunWu/153/orig -> origin/gh/XilunWu/153/orig 2025-07-24T03:47:22.3889174Z * [new branch] gh/XilunWu/154/base -> origin/gh/XilunWu/154/base 2025-07-24T03:47:22.3889665Z * [new branch] gh/XilunWu/154/head -> origin/gh/XilunWu/154/head 2025-07-24T03:47:22.3890166Z * [new branch] gh/XilunWu/154/orig -> origin/gh/XilunWu/154/orig 2025-07-24T03:47:22.3890663Z * [new branch] gh/XilunWu/155/base -> origin/gh/XilunWu/155/base 2025-07-24T03:47:22.3891172Z * [new branch] gh/XilunWu/155/head -> origin/gh/XilunWu/155/head 2025-07-24T03:47:22.3906699Z * [new branch] gh/XilunWu/155/orig -> origin/gh/XilunWu/155/orig 2025-07-24T03:47:22.3907257Z * [new branch] gh/XilunWu/156/base -> origin/gh/XilunWu/156/base 2025-07-24T03:47:22.3907840Z * [new branch] gh/XilunWu/156/head -> origin/gh/XilunWu/156/head 2025-07-24T03:47:22.3908353Z * [new branch] gh/XilunWu/156/orig -> origin/gh/XilunWu/156/orig 2025-07-24T03:47:22.3908854Z * [new branch] gh/XilunWu/157/base -> origin/gh/XilunWu/157/base 2025-07-24T03:47:22.3909365Z * [new branch] gh/XilunWu/157/head -> origin/gh/XilunWu/157/head 2025-07-24T03:47:22.3910108Z * [new branch] gh/XilunWu/157/orig -> origin/gh/XilunWu/157/orig 2025-07-24T03:47:22.3910610Z * [new branch] gh/XilunWu/158/base -> origin/gh/XilunWu/158/base 2025-07-24T03:47:22.3911245Z * [new branch] gh/XilunWu/158/head -> origin/gh/XilunWu/158/head 2025-07-24T03:47:22.3911744Z * [new branch] gh/XilunWu/158/orig -> origin/gh/XilunWu/158/orig 2025-07-24T03:47:22.3912260Z * [new branch] gh/XilunWu/159/base -> origin/gh/XilunWu/159/base 2025-07-24T03:47:22.3912768Z * [new branch] gh/XilunWu/159/head -> origin/gh/XilunWu/159/head 2025-07-24T03:47:22.3913270Z * [new branch] gh/XilunWu/159/orig -> origin/gh/XilunWu/159/orig 2025-07-24T03:47:22.3913772Z * [new branch] gh/XilunWu/160/base -> origin/gh/XilunWu/160/base 2025-07-24T03:47:22.3914267Z * [new branch] gh/XilunWu/160/head -> origin/gh/XilunWu/160/head 2025-07-24T03:47:22.3914782Z * [new branch] gh/XilunWu/160/orig -> origin/gh/XilunWu/160/orig 2025-07-24T03:47:22.3915307Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-07-24T03:47:22.3915833Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-07-24T03:47:22.3916356Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-07-24T03:47:22.3916883Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-07-24T03:47:22.3917424Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-07-24T03:47:22.3917955Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-07-24T03:47:22.3918484Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-07-24T03:47:22.3919067Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-07-24T03:47:22.4517425Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-07-24T03:47:22.4518089Z * [new branch] gh/XuehaiPan/226/base -> origin/gh/XuehaiPan/226/base 2025-07-24T03:47:22.4518621Z * [new branch] gh/XuehaiPan/226/head -> origin/gh/XuehaiPan/226/head 2025-07-24T03:47:22.4519178Z * [new branch] gh/XuehaiPan/226/orig -> origin/gh/XuehaiPan/226/orig 2025-07-24T03:47:22.4519709Z * [new branch] gh/XuehaiPan/227/base -> origin/gh/XuehaiPan/227/base 2025-07-24T03:47:22.4520233Z * [new branch] gh/XuehaiPan/227/head -> origin/gh/XuehaiPan/227/head 2025-07-24T03:47:22.4520767Z * [new branch] gh/XuehaiPan/227/orig -> origin/gh/XuehaiPan/227/orig 2025-07-24T03:47:22.4521299Z * [new branch] gh/XuehaiPan/229/base -> origin/gh/XuehaiPan/229/base 2025-07-24T03:47:22.4521914Z * [new branch] gh/XuehaiPan/229/head -> origin/gh/XuehaiPan/229/head 2025-07-24T03:47:22.4522443Z * [new branch] gh/XuehaiPan/229/orig -> origin/gh/XuehaiPan/229/orig 2025-07-24T03:47:22.4522971Z * [new branch] gh/XuehaiPan/230/base -> origin/gh/XuehaiPan/230/base 2025-07-24T03:47:22.4523498Z * [new branch] gh/XuehaiPan/230/head -> origin/gh/XuehaiPan/230/head 2025-07-24T03:47:22.4524023Z * [new branch] gh/XuehaiPan/230/orig -> origin/gh/XuehaiPan/230/orig 2025-07-24T03:47:22.4524539Z * [new branch] gh/XuehaiPan/231/base -> origin/gh/XuehaiPan/231/base 2025-07-24T03:47:22.4525058Z * [new branch] gh/XuehaiPan/231/head -> origin/gh/XuehaiPan/231/head 2025-07-24T03:47:22.4525576Z * [new branch] gh/XuehaiPan/231/orig -> origin/gh/XuehaiPan/231/orig 2025-07-24T03:47:22.4526103Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-07-24T03:47:22.4526830Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-07-24T03:47:22.4527484Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-07-24T03:47:22.4528011Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-07-24T03:47:22.4528530Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-07-24T03:47:22.4529059Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-07-24T03:47:22.4529574Z * [new branch] gh/XuehaiPan/251/base -> origin/gh/XuehaiPan/251/base 2025-07-24T03:47:22.4530107Z * [new branch] gh/XuehaiPan/251/head -> origin/gh/XuehaiPan/251/head 2025-07-24T03:47:22.4530636Z * [new branch] gh/XuehaiPan/251/orig -> origin/gh/XuehaiPan/251/orig 2025-07-24T03:47:22.4531164Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-07-24T03:47:22.4531700Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-07-24T03:47:22.4532221Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-07-24T03:47:22.4532748Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-07-24T03:47:22.4533276Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-07-24T03:47:22.4533796Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-07-24T03:47:22.4534327Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-07-24T03:47:22.4534851Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-07-24T03:47:22.4535385Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-07-24T03:47:22.4535928Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-07-24T03:47:22.4536452Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-07-24T03:47:22.4536996Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-07-24T03:47:22.4537526Z * [new branch] gh/XuehaiPan/271/base -> origin/gh/XuehaiPan/271/base 2025-07-24T03:47:22.4538058Z * [new branch] gh/XuehaiPan/271/head -> origin/gh/XuehaiPan/271/head 2025-07-24T03:47:22.4538586Z * [new branch] gh/XuehaiPan/271/orig -> origin/gh/XuehaiPan/271/orig 2025-07-24T03:47:22.4539126Z * [new branch] gh/XuehaiPan/279/base -> origin/gh/XuehaiPan/279/base 2025-07-24T03:47:22.4539652Z * [new branch] gh/XuehaiPan/279/head -> origin/gh/XuehaiPan/279/head 2025-07-24T03:47:22.4540179Z * [new branch] gh/XuehaiPan/279/orig -> origin/gh/XuehaiPan/279/orig 2025-07-24T03:47:22.4540725Z * [new branch] gh/XuehaiPan/281/base -> origin/gh/XuehaiPan/281/base 2025-07-24T03:47:22.4541252Z * [new branch] gh/XuehaiPan/281/head -> origin/gh/XuehaiPan/281/head 2025-07-24T03:47:22.4541784Z * [new branch] gh/XuehaiPan/281/orig -> origin/gh/XuehaiPan/281/orig 2025-07-24T03:47:22.5050867Z * [new branch] gh/XuehaiPan/283/base -> origin/gh/XuehaiPan/283/base 2025-07-24T03:47:22.5051417Z * [new branch] gh/XuehaiPan/283/head -> origin/gh/XuehaiPan/283/head 2025-07-24T03:47:22.5051955Z * [new branch] gh/XuehaiPan/283/orig -> origin/gh/XuehaiPan/283/orig 2025-07-24T03:47:22.5052483Z * [new branch] gh/XuehaiPan/284/base -> origin/gh/XuehaiPan/284/base 2025-07-24T03:47:22.5053035Z * [new branch] gh/XuehaiPan/284/head -> origin/gh/XuehaiPan/284/head 2025-07-24T03:47:22.5053767Z * [new branch] gh/XuehaiPan/284/orig -> origin/gh/XuehaiPan/284/orig 2025-07-24T03:47:22.5054286Z * [new branch] gh/XuehaiPan/287/base -> origin/gh/XuehaiPan/287/base 2025-07-24T03:47:22.5054962Z * [new branch] gh/XuehaiPan/287/head -> origin/gh/XuehaiPan/287/head 2025-07-24T03:47:22.5055497Z * [new branch] gh/XuehaiPan/287/orig -> origin/gh/XuehaiPan/287/orig 2025-07-24T03:47:22.5056081Z * [new branch] gh/XuehaiPan/288/base -> origin/gh/XuehaiPan/288/base 2025-07-24T03:47:22.5056677Z * [new branch] gh/XuehaiPan/288/head -> origin/gh/XuehaiPan/288/head 2025-07-24T03:47:22.5057200Z * [new branch] gh/XuehaiPan/288/orig -> origin/gh/XuehaiPan/288/orig 2025-07-24T03:47:22.5057725Z * [new branch] gh/XuehaiPan/290/base -> origin/gh/XuehaiPan/290/base 2025-07-24T03:47:22.5058253Z * [new branch] gh/XuehaiPan/290/head -> origin/gh/XuehaiPan/290/head 2025-07-24T03:47:22.5058777Z * [new branch] gh/XuehaiPan/290/orig -> origin/gh/XuehaiPan/290/orig 2025-07-24T03:47:22.5059308Z * [new branch] gh/XuehaiPan/299/base -> origin/gh/XuehaiPan/299/base 2025-07-24T03:47:22.5059831Z * [new branch] gh/XuehaiPan/299/head -> origin/gh/XuehaiPan/299/head 2025-07-24T03:47:22.5060366Z * [new branch] gh/XuehaiPan/299/orig -> origin/gh/XuehaiPan/299/orig 2025-07-24T03:47:22.5060886Z * [new branch] gh/XuehaiPan/311/base -> origin/gh/XuehaiPan/311/base 2025-07-24T03:47:22.5061415Z * [new branch] gh/XuehaiPan/311/head -> origin/gh/XuehaiPan/311/head 2025-07-24T03:47:22.5061986Z * [new branch] gh/XuehaiPan/311/orig -> origin/gh/XuehaiPan/311/orig 2025-07-24T03:47:22.5062515Z * [new branch] gh/XuehaiPan/312/base -> origin/gh/XuehaiPan/312/base 2025-07-24T03:47:22.5063097Z * [new branch] gh/XuehaiPan/312/head -> origin/gh/XuehaiPan/312/head 2025-07-24T03:47:22.5063625Z * [new branch] gh/XuehaiPan/312/orig -> origin/gh/XuehaiPan/312/orig 2025-07-24T03:47:22.5064152Z * [new branch] gh/XuehaiPan/318/base -> origin/gh/XuehaiPan/318/base 2025-07-24T03:47:22.5064677Z * [new branch] gh/XuehaiPan/318/head -> origin/gh/XuehaiPan/318/head 2025-07-24T03:47:22.5065192Z * [new branch] gh/XuehaiPan/318/orig -> origin/gh/XuehaiPan/318/orig 2025-07-24T03:47:22.5065713Z * [new branch] gh/XuehaiPan/320/base -> origin/gh/XuehaiPan/320/base 2025-07-24T03:47:22.5066238Z * [new branch] gh/XuehaiPan/320/head -> origin/gh/XuehaiPan/320/head 2025-07-24T03:47:22.5066761Z * [new branch] gh/XuehaiPan/320/orig -> origin/gh/XuehaiPan/320/orig 2025-07-24T03:47:22.5067274Z * [new branch] gh/XuehaiPan/325/base -> origin/gh/XuehaiPan/325/base 2025-07-24T03:47:22.5067796Z * [new branch] gh/XuehaiPan/325/head -> origin/gh/XuehaiPan/325/head 2025-07-24T03:47:22.5068363Z * [new branch] gh/XuehaiPan/325/orig -> origin/gh/XuehaiPan/325/orig 2025-07-24T03:47:22.5068953Z * [new branch] gh/XuehaiPan/326/base -> origin/gh/XuehaiPan/326/base 2025-07-24T03:47:22.5069477Z * [new branch] gh/XuehaiPan/326/head -> origin/gh/XuehaiPan/326/head 2025-07-24T03:47:22.5069992Z * [new branch] gh/XuehaiPan/326/orig -> origin/gh/XuehaiPan/326/orig 2025-07-24T03:47:22.5070518Z * [new branch] gh/XuehaiPan/327/base -> origin/gh/XuehaiPan/327/base 2025-07-24T03:47:22.5071034Z * [new branch] gh/XuehaiPan/327/head -> origin/gh/XuehaiPan/327/head 2025-07-24T03:47:22.5071562Z * [new branch] gh/XuehaiPan/327/orig -> origin/gh/XuehaiPan/327/orig 2025-07-24T03:47:22.5072087Z * [new branch] gh/XuehaiPan/328/base -> origin/gh/XuehaiPan/328/base 2025-07-24T03:47:22.5072742Z * [new branch] gh/XuehaiPan/328/head -> origin/gh/XuehaiPan/328/head 2025-07-24T03:47:22.5073370Z * [new branch] gh/XuehaiPan/328/orig -> origin/gh/XuehaiPan/328/orig 2025-07-24T03:47:22.5073890Z * [new branch] gh/XuehaiPan/329/base -> origin/gh/XuehaiPan/329/base 2025-07-24T03:47:22.5074546Z * [new branch] gh/XuehaiPan/329/head -> origin/gh/XuehaiPan/329/head 2025-07-24T03:47:22.5075133Z * [new branch] gh/XuehaiPan/329/orig -> origin/gh/XuehaiPan/329/orig 2025-07-24T03:47:22.5075710Z * [new branch] gh/XuehaiPan/330/base -> origin/gh/XuehaiPan/330/base 2025-07-24T03:47:22.5654811Z * [new branch] gh/XuehaiPan/330/head -> origin/gh/XuehaiPan/330/head 2025-07-24T03:47:22.5655427Z * [new branch] gh/XuehaiPan/330/orig -> origin/gh/XuehaiPan/330/orig 2025-07-24T03:47:22.5656035Z * [new branch] gh/XuehaiPan/331/base -> origin/gh/XuehaiPan/331/base 2025-07-24T03:47:22.5656645Z * [new branch] gh/XuehaiPan/331/head -> origin/gh/XuehaiPan/331/head 2025-07-24T03:47:22.5657277Z * [new branch] gh/XuehaiPan/331/orig -> origin/gh/XuehaiPan/331/orig 2025-07-24T03:47:22.5657868Z * [new branch] gh/XuehaiPan/332/base -> origin/gh/XuehaiPan/332/base 2025-07-24T03:47:22.5658445Z * [new branch] gh/XuehaiPan/332/head -> origin/gh/XuehaiPan/332/head 2025-07-24T03:47:22.5659030Z * [new branch] gh/XuehaiPan/332/orig -> origin/gh/XuehaiPan/332/orig 2025-07-24T03:47:22.5659616Z * [new branch] gh/XuehaiPan/333/base -> origin/gh/XuehaiPan/333/base 2025-07-24T03:47:22.5660190Z * [new branch] gh/XuehaiPan/333/head -> origin/gh/XuehaiPan/333/head 2025-07-24T03:47:22.5660774Z * [new branch] gh/XuehaiPan/333/orig -> origin/gh/XuehaiPan/333/orig 2025-07-24T03:47:22.5661356Z * [new branch] gh/XuehaiPan/334/base -> origin/gh/XuehaiPan/334/base 2025-07-24T03:47:22.5661889Z * [new branch] gh/XuehaiPan/334/head -> origin/gh/XuehaiPan/334/head 2025-07-24T03:47:22.5662414Z * [new branch] gh/XuehaiPan/334/orig -> origin/gh/XuehaiPan/334/orig 2025-07-24T03:47:22.5662933Z * [new branch] gh/XuehaiPan/335/base -> origin/gh/XuehaiPan/335/base 2025-07-24T03:47:22.5663467Z * [new branch] gh/XuehaiPan/335/head -> origin/gh/XuehaiPan/335/head 2025-07-24T03:47:22.5663978Z * [new branch] gh/XuehaiPan/335/orig -> origin/gh/XuehaiPan/335/orig 2025-07-24T03:47:22.5664505Z * [new branch] gh/XuehaiPan/336/base -> origin/gh/XuehaiPan/336/base 2025-07-24T03:47:22.5665018Z * [new branch] gh/XuehaiPan/336/head -> origin/gh/XuehaiPan/336/head 2025-07-24T03:47:22.5665548Z * [new branch] gh/XuehaiPan/336/orig -> origin/gh/XuehaiPan/336/orig 2025-07-24T03:47:22.5666075Z * [new branch] gh/XuehaiPan/337/base -> origin/gh/XuehaiPan/337/base 2025-07-24T03:47:22.5666658Z * [new branch] gh/XuehaiPan/337/head -> origin/gh/XuehaiPan/337/head 2025-07-24T03:47:22.5667241Z * [new branch] gh/XuehaiPan/337/orig -> origin/gh/XuehaiPan/337/orig 2025-07-24T03:47:22.5667849Z * [new branch] gh/XuehaiPan/338/base -> origin/gh/XuehaiPan/338/base 2025-07-24T03:47:22.5668440Z * [new branch] gh/XuehaiPan/338/head -> origin/gh/XuehaiPan/338/head 2025-07-24T03:47:22.5668966Z * [new branch] gh/XuehaiPan/338/orig -> origin/gh/XuehaiPan/338/orig 2025-07-24T03:47:22.5669484Z * [new branch] gh/XuehaiPan/339/base -> origin/gh/XuehaiPan/339/base 2025-07-24T03:47:22.5670015Z * [new branch] gh/XuehaiPan/339/head -> origin/gh/XuehaiPan/339/head 2025-07-24T03:47:22.5670733Z * [new branch] gh/XuehaiPan/339/orig -> origin/gh/XuehaiPan/339/orig 2025-07-24T03:47:22.5671273Z * [new branch] gh/XuehaiPan/340/base -> origin/gh/XuehaiPan/340/base 2025-07-24T03:47:22.5671920Z * [new branch] gh/XuehaiPan/340/head -> origin/gh/XuehaiPan/340/head 2025-07-24T03:47:22.5672446Z * [new branch] gh/XuehaiPan/340/orig -> origin/gh/XuehaiPan/340/orig 2025-07-24T03:47:22.5672976Z * [new branch] gh/XuehaiPan/341/base -> origin/gh/XuehaiPan/341/base 2025-07-24T03:47:22.5673498Z * [new branch] gh/XuehaiPan/341/head -> origin/gh/XuehaiPan/341/head 2025-07-24T03:47:22.5674076Z * [new branch] gh/XuehaiPan/341/orig -> origin/gh/XuehaiPan/341/orig 2025-07-24T03:47:22.5674653Z * [new branch] gh/XuehaiPan/342/base -> origin/gh/XuehaiPan/342/base 2025-07-24T03:47:22.5675230Z * [new branch] gh/XuehaiPan/342/head -> origin/gh/XuehaiPan/342/head 2025-07-24T03:47:22.5675875Z * [new branch] gh/XuehaiPan/342/orig -> origin/gh/XuehaiPan/342/orig 2025-07-24T03:47:22.5676455Z * [new branch] gh/XuehaiPan/343/base -> origin/gh/XuehaiPan/343/base 2025-07-24T03:47:22.5677040Z * [new branch] gh/XuehaiPan/343/head -> origin/gh/XuehaiPan/343/head 2025-07-24T03:47:22.5677609Z * [new branch] gh/XuehaiPan/343/orig -> origin/gh/XuehaiPan/343/orig 2025-07-24T03:47:22.5678184Z * [new branch] gh/XuehaiPan/344/base -> origin/gh/XuehaiPan/344/base 2025-07-24T03:47:22.5678702Z * [new branch] gh/XuehaiPan/344/head -> origin/gh/XuehaiPan/344/head 2025-07-24T03:47:22.5679220Z * [new branch] gh/XuehaiPan/344/orig -> origin/gh/XuehaiPan/344/orig 2025-07-24T03:47:22.5679742Z * [new branch] gh/XuehaiPan/345/base -> origin/gh/XuehaiPan/345/base 2025-07-24T03:47:22.5680259Z * [new branch] gh/XuehaiPan/345/head -> origin/gh/XuehaiPan/345/head 2025-07-24T03:47:22.6220274Z * [new branch] gh/XuehaiPan/345/orig -> origin/gh/XuehaiPan/345/orig 2025-07-24T03:47:22.6220855Z * [new branch] gh/XuehaiPan/346/base -> origin/gh/XuehaiPan/346/base 2025-07-24T03:47:22.6221381Z * [new branch] gh/XuehaiPan/346/head -> origin/gh/XuehaiPan/346/head 2025-07-24T03:47:22.6221920Z * [new branch] gh/XuehaiPan/346/orig -> origin/gh/XuehaiPan/346/orig 2025-07-24T03:47:22.6222443Z * [new branch] gh/XuehaiPan/347/base -> origin/gh/XuehaiPan/347/base 2025-07-24T03:47:22.6222969Z * [new branch] gh/XuehaiPan/347/head -> origin/gh/XuehaiPan/347/head 2025-07-24T03:47:22.6223485Z * [new branch] gh/XuehaiPan/347/orig -> origin/gh/XuehaiPan/347/orig 2025-07-24T03:47:22.6224001Z * [new branch] gh/XuehaiPan/348/base -> origin/gh/XuehaiPan/348/base 2025-07-24T03:47:22.6224558Z * [new branch] gh/XuehaiPan/348/head -> origin/gh/XuehaiPan/348/head 2025-07-24T03:47:22.6225088Z * [new branch] gh/XuehaiPan/348/orig -> origin/gh/XuehaiPan/348/orig 2025-07-24T03:47:22.6225610Z * [new branch] gh/XuehaiPan/349/base -> origin/gh/XuehaiPan/349/base 2025-07-24T03:47:22.6226135Z * [new branch] gh/XuehaiPan/349/head -> origin/gh/XuehaiPan/349/head 2025-07-24T03:47:22.6226646Z * [new branch] gh/XuehaiPan/349/orig -> origin/gh/XuehaiPan/349/orig 2025-07-24T03:47:22.6227175Z * [new branch] gh/XuehaiPan/350/base -> origin/gh/XuehaiPan/350/base 2025-07-24T03:47:22.6227692Z * [new branch] gh/XuehaiPan/350/head -> origin/gh/XuehaiPan/350/head 2025-07-24T03:47:22.6228213Z * [new branch] gh/XuehaiPan/350/orig -> origin/gh/XuehaiPan/350/orig 2025-07-24T03:47:22.6228743Z * [new branch] gh/XuehaiPan/351/base -> origin/gh/XuehaiPan/351/base 2025-07-24T03:47:22.6229438Z * [new branch] gh/XuehaiPan/351/head -> origin/gh/XuehaiPan/351/head 2025-07-24T03:47:22.6230088Z * [new branch] gh/XuehaiPan/351/orig -> origin/gh/XuehaiPan/351/orig 2025-07-24T03:47:22.6230605Z * [new branch] gh/XuehaiPan/352/base -> origin/gh/XuehaiPan/352/base 2025-07-24T03:47:22.6231137Z * [new branch] gh/XuehaiPan/352/head -> origin/gh/XuehaiPan/352/head 2025-07-24T03:47:22.6231660Z * [new branch] gh/XuehaiPan/352/orig -> origin/gh/XuehaiPan/352/orig 2025-07-24T03:47:22.6232181Z * [new branch] gh/XuehaiPan/353/base -> origin/gh/XuehaiPan/353/base 2025-07-24T03:47:22.6232701Z * [new branch] gh/XuehaiPan/353/head -> origin/gh/XuehaiPan/353/head 2025-07-24T03:47:22.6233217Z * [new branch] gh/XuehaiPan/353/orig -> origin/gh/XuehaiPan/353/orig 2025-07-24T03:47:22.6233823Z * [new branch] gh/XuehaiPan/354/base -> origin/gh/XuehaiPan/354/base 2025-07-24T03:47:22.6234359Z * [new branch] gh/XuehaiPan/354/head -> origin/gh/XuehaiPan/354/head 2025-07-24T03:47:22.6234885Z * [new branch] gh/XuehaiPan/354/orig -> origin/gh/XuehaiPan/354/orig 2025-07-24T03:47:22.6235414Z * [new branch] gh/XuehaiPan/355/base -> origin/gh/XuehaiPan/355/base 2025-07-24T03:47:22.6235933Z * [new branch] gh/XuehaiPan/355/head -> origin/gh/XuehaiPan/355/head 2025-07-24T03:47:22.6236461Z * [new branch] gh/XuehaiPan/355/orig -> origin/gh/XuehaiPan/355/orig 2025-07-24T03:47:22.6236992Z * [new branch] gh/XuehaiPan/356/base -> origin/gh/XuehaiPan/356/base 2025-07-24T03:47:22.6237512Z * [new branch] gh/XuehaiPan/356/head -> origin/gh/XuehaiPan/356/head 2025-07-24T03:47:22.6238037Z * [new branch] gh/XuehaiPan/356/orig -> origin/gh/XuehaiPan/356/orig 2025-07-24T03:47:22.6238556Z * [new branch] gh/XuehaiPan/357/base -> origin/gh/XuehaiPan/357/base 2025-07-24T03:47:22.6239090Z * [new branch] gh/XuehaiPan/357/head -> origin/gh/XuehaiPan/357/head 2025-07-24T03:47:22.6239608Z * [new branch] gh/XuehaiPan/357/orig -> origin/gh/XuehaiPan/357/orig 2025-07-24T03:47:22.6240139Z * [new branch] gh/XuehaiPan/358/base -> origin/gh/XuehaiPan/358/base 2025-07-24T03:47:22.6240662Z * [new branch] gh/XuehaiPan/358/head -> origin/gh/XuehaiPan/358/head 2025-07-24T03:47:22.6241172Z * [new branch] gh/XuehaiPan/358/orig -> origin/gh/XuehaiPan/358/orig 2025-07-24T03:47:22.6241784Z * [new branch] gh/XuehaiPan/359/base -> origin/gh/XuehaiPan/359/base 2025-07-24T03:47:22.6242299Z * [new branch] gh/XuehaiPan/359/head -> origin/gh/XuehaiPan/359/head 2025-07-24T03:47:22.6242847Z * [new branch] gh/XuehaiPan/359/orig -> origin/gh/XuehaiPan/359/orig 2025-07-24T03:47:22.6243389Z * [new branch] gh/XuehaiPan/360/base -> origin/gh/XuehaiPan/360/base 2025-07-24T03:47:22.6243912Z * [new branch] gh/XuehaiPan/360/head -> origin/gh/XuehaiPan/360/head 2025-07-24T03:47:22.6244443Z * [new branch] gh/XuehaiPan/360/orig -> origin/gh/XuehaiPan/360/orig 2025-07-24T03:47:22.6782552Z * [new branch] gh/XuehaiPan/361/base -> origin/gh/XuehaiPan/361/base 2025-07-24T03:47:22.6783129Z * [new branch] gh/XuehaiPan/361/head -> origin/gh/XuehaiPan/361/head 2025-07-24T03:47:22.6783675Z * [new branch] gh/XuehaiPan/361/orig -> origin/gh/XuehaiPan/361/orig 2025-07-24T03:47:22.6784201Z * [new branch] gh/XuehaiPan/362/base -> origin/gh/XuehaiPan/362/base 2025-07-24T03:47:22.6784731Z * [new branch] gh/XuehaiPan/362/head -> origin/gh/XuehaiPan/362/head 2025-07-24T03:47:22.6786153Z * [new branch] gh/XuehaiPan/362/orig -> origin/gh/XuehaiPan/362/orig 2025-07-24T03:47:22.6786690Z * [new branch] gh/XuehaiPan/363/base -> origin/gh/XuehaiPan/363/base 2025-07-24T03:47:22.6787362Z * [new branch] gh/XuehaiPan/363/head -> origin/gh/XuehaiPan/363/head 2025-07-24T03:47:22.6787882Z * [new branch] gh/XuehaiPan/363/orig -> origin/gh/XuehaiPan/363/orig 2025-07-24T03:47:22.6788409Z * [new branch] gh/XuehaiPan/364/base -> origin/gh/XuehaiPan/364/base 2025-07-24T03:47:22.6788928Z * [new branch] gh/XuehaiPan/364/head -> origin/gh/XuehaiPan/364/head 2025-07-24T03:47:22.6789456Z * [new branch] gh/XuehaiPan/364/orig -> origin/gh/XuehaiPan/364/orig 2025-07-24T03:47:22.6789985Z * [new branch] gh/XuehaiPan/365/base -> origin/gh/XuehaiPan/365/base 2025-07-24T03:47:22.6790493Z * [new branch] gh/XuehaiPan/365/head -> origin/gh/XuehaiPan/365/head 2025-07-24T03:47:22.6791018Z * [new branch] gh/XuehaiPan/365/orig -> origin/gh/XuehaiPan/365/orig 2025-07-24T03:47:22.6791541Z * [new branch] gh/XuehaiPan/366/base -> origin/gh/XuehaiPan/366/base 2025-07-24T03:47:22.6792064Z * [new branch] gh/XuehaiPan/366/head -> origin/gh/XuehaiPan/366/head 2025-07-24T03:47:22.6792590Z * [new branch] gh/XuehaiPan/367/base -> origin/gh/XuehaiPan/367/base 2025-07-24T03:47:22.6793107Z * [new branch] gh/XuehaiPan/367/head -> origin/gh/XuehaiPan/367/head 2025-07-24T03:47:22.6793629Z * [new branch] gh/XuehaiPan/368/base -> origin/gh/XuehaiPan/368/base 2025-07-24T03:47:22.6794146Z * [new branch] gh/XuehaiPan/368/head -> origin/gh/XuehaiPan/368/head 2025-07-24T03:47:22.6794672Z * [new branch] gh/XuehaiPan/368/orig -> origin/gh/XuehaiPan/368/orig 2025-07-24T03:47:22.6795216Z * [new branch] gh/XuehaiPan/369/base -> origin/gh/XuehaiPan/369/base 2025-07-24T03:47:22.6795727Z * [new branch] gh/XuehaiPan/369/head -> origin/gh/XuehaiPan/369/head 2025-07-24T03:47:22.6796255Z * [new branch] gh/XuehaiPan/369/orig -> origin/gh/XuehaiPan/369/orig 2025-07-24T03:47:22.6796772Z * [new branch] gh/XuehaiPan/370/base -> origin/gh/XuehaiPan/370/base 2025-07-24T03:47:22.6797302Z * [new branch] gh/XuehaiPan/370/head -> origin/gh/XuehaiPan/370/head 2025-07-24T03:47:22.6797833Z * [new branch] gh/XuehaiPan/370/orig -> origin/gh/XuehaiPan/370/orig 2025-07-24T03:47:22.6798346Z * [new branch] gh/XuehaiPan/371/base -> origin/gh/XuehaiPan/371/base 2025-07-24T03:47:22.6798870Z * [new branch] gh/XuehaiPan/371/head -> origin/gh/XuehaiPan/371/head 2025-07-24T03:47:22.6799390Z * [new branch] gh/XuehaiPan/371/orig -> origin/gh/XuehaiPan/371/orig 2025-07-24T03:47:22.6799919Z * [new branch] gh/XuehaiPan/372/base -> origin/gh/XuehaiPan/372/base 2025-07-24T03:47:22.6800439Z * [new branch] gh/XuehaiPan/372/head -> origin/gh/XuehaiPan/372/head 2025-07-24T03:47:22.6800963Z * [new branch] gh/XuehaiPan/372/orig -> origin/gh/XuehaiPan/372/orig 2025-07-24T03:47:22.6801487Z * [new branch] gh/XuehaiPan/373/base -> origin/gh/XuehaiPan/373/base 2025-07-24T03:47:22.6802102Z * [new branch] gh/XuehaiPan/373/head -> origin/gh/XuehaiPan/373/head 2025-07-24T03:47:22.6802638Z * [new branch] gh/XuehaiPan/373/orig -> origin/gh/XuehaiPan/373/orig 2025-07-24T03:47:22.6803178Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-07-24T03:47:22.6803734Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-07-24T03:47:22.6804407Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-07-24T03:47:22.6804948Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-07-24T03:47:22.6805588Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-07-24T03:47:22.6806127Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-07-24T03:47:22.6806674Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-07-24T03:47:22.6807222Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-07-24T03:47:22.6807763Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-07-24T03:47:22.7296626Z * [new branch] gh/ZhiweiYan-96/62/base -> origin/gh/ZhiweiYan-96/62/base 2025-07-24T03:47:22.7297207Z * [new branch] gh/ZhiweiYan-96/62/head -> origin/gh/ZhiweiYan-96/62/head 2025-07-24T03:47:22.7297764Z * [new branch] gh/ZhiweiYan-96/64/base -> origin/gh/ZhiweiYan-96/64/base 2025-07-24T03:47:22.7298319Z * [new branch] gh/ZhiweiYan-96/64/head -> origin/gh/ZhiweiYan-96/64/head 2025-07-24T03:47:22.7298849Z * [new branch] gh/ZhiweiYan-96/64/orig -> origin/gh/ZhiweiYan-96/64/orig 2025-07-24T03:47:22.7299410Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-07-24T03:47:22.7299932Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-07-24T03:47:22.7300439Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-07-24T03:47:22.7300952Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-07-24T03:47:22.7301478Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-07-24T03:47:22.7302023Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-07-24T03:47:22.7302528Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-07-24T03:47:22.7303021Z * [new branch] gh/albanD/3/base -> origin/gh/albanD/3/base 2025-07-24T03:47:22.7303504Z * [new branch] gh/albanD/3/head -> origin/gh/albanD/3/head 2025-07-24T03:47:22.7303980Z * [new branch] gh/albanD/3/orig -> origin/gh/albanD/3/orig 2025-07-24T03:47:22.7304707Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-07-24T03:47:22.7305566Z * [new branch] gh/alexbrauckmann/paddedtensor_init -> origin/gh/alexbrauckmann/paddedtensor_init 2025-07-24T03:47:22.7306351Z * [new branch] gh/alexbrauckmann/paddedtensor_meta_init -> origin/gh/alexbrauckmann/paddedtensor_meta_init 2025-07-24T03:47:22.7307066Z * [new branch] gh/alexsamardzic/5/base -> origin/gh/alexsamardzic/5/base 2025-07-24T03:47:22.7307625Z * [new branch] gh/alexsamardzic/5/head -> origin/gh/alexsamardzic/5/head 2025-07-24T03:47:22.7308192Z * [new branch] gh/alexsamardzic/5/orig -> origin/gh/alexsamardzic/5/orig 2025-07-24T03:47:22.7308758Z * [new branch] gh/alexsamardzic/6/base -> origin/gh/alexsamardzic/6/base 2025-07-24T03:47:22.7309304Z * [new branch] gh/alexsamardzic/6/head -> origin/gh/alexsamardzic/6/head 2025-07-24T03:47:22.7309853Z * [new branch] gh/alexsamardzic/6/orig -> origin/gh/alexsamardzic/6/orig 2025-07-24T03:47:22.7310405Z * [new branch] gh/alexsamardzic/7/base -> origin/gh/alexsamardzic/7/base 2025-07-24T03:47:22.7310958Z * [new branch] gh/alexsamardzic/7/head -> origin/gh/alexsamardzic/7/head 2025-07-24T03:47:22.7311509Z * [new branch] gh/alexsamardzic/7/orig -> origin/gh/alexsamardzic/7/orig 2025-07-24T03:47:22.7312228Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-07-24T03:47:22.7313326Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-07-24T03:47:22.7313832Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-07-24T03:47:22.7314353Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-07-24T03:47:22.7314879Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-07-24T03:47:22.7315407Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-07-24T03:47:22.7315940Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-07-24T03:47:22.7316448Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-07-24T03:47:22.7316965Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-07-24T03:47:22.7317491Z * [new branch] gh/andyanwang/1/base -> origin/gh/andyanwang/1/base 2025-07-24T03:47:22.7318011Z * [new branch] gh/andyanwang/1/head -> origin/gh/andyanwang/1/head 2025-07-24T03:47:22.7318528Z * [new branch] gh/andyanwang/1/orig -> origin/gh/andyanwang/1/orig 2025-07-24T03:47:22.7319041Z * [new branch] gh/andyanwang/13/base -> origin/gh/andyanwang/13/base 2025-07-24T03:47:22.7319569Z * [new branch] gh/andyanwang/13/head -> origin/gh/andyanwang/13/head 2025-07-24T03:47:22.7320086Z * [new branch] gh/andyanwang/13/orig -> origin/gh/andyanwang/13/orig 2025-07-24T03:47:22.7320608Z * [new branch] gh/andyanwang/2/base -> origin/gh/andyanwang/2/base 2025-07-24T03:47:22.7321141Z * [new branch] gh/andyanwang/2/head -> origin/gh/andyanwang/2/head 2025-07-24T03:47:22.7321752Z * [new branch] gh/andyanwang/2/orig -> origin/gh/andyanwang/2/orig 2025-07-24T03:47:22.7824982Z * [new branch] gh/andyanwang/28/base -> origin/gh/andyanwang/28/base 2025-07-24T03:47:22.7825588Z * [new branch] gh/andyanwang/28/head -> origin/gh/andyanwang/28/head 2025-07-24T03:47:22.7826132Z * [new branch] gh/andyanwang/28/orig -> origin/gh/andyanwang/28/orig 2025-07-24T03:47:22.7826664Z * [new branch] gh/andyanwang/29/base -> origin/gh/andyanwang/29/base 2025-07-24T03:47:22.7827179Z * [new branch] gh/andyanwang/29/head -> origin/gh/andyanwang/29/head 2025-07-24T03:47:22.7827709Z * [new branch] gh/andyanwang/29/orig -> origin/gh/andyanwang/29/orig 2025-07-24T03:47:22.7828239Z * [new branch] gh/andyanwang/3/base -> origin/gh/andyanwang/3/base 2025-07-24T03:47:22.7828761Z * [new branch] gh/andyanwang/3/head -> origin/gh/andyanwang/3/head 2025-07-24T03:47:22.7829290Z * [new branch] gh/andyanwang/3/orig -> origin/gh/andyanwang/3/orig 2025-07-24T03:47:22.7829815Z * [new branch] gh/andyanwang/30/base -> origin/gh/andyanwang/30/base 2025-07-24T03:47:22.7830344Z * [new branch] gh/andyanwang/30/orig -> origin/gh/andyanwang/30/orig 2025-07-24T03:47:22.7830859Z * [new branch] gh/andyanwang/31/base -> origin/gh/andyanwang/31/base 2025-07-24T03:47:22.7831387Z * [new branch] gh/andyanwang/31/orig -> origin/gh/andyanwang/31/orig 2025-07-24T03:47:22.7831904Z * [new branch] gh/andyanwang/32/base -> origin/gh/andyanwang/32/base 2025-07-24T03:47:22.7832431Z * [new branch] gh/andyanwang/32/head -> origin/gh/andyanwang/32/head 2025-07-24T03:47:22.7832949Z * [new branch] gh/andyanwang/32/orig -> origin/gh/andyanwang/32/orig 2025-07-24T03:47:22.7833653Z * [new branch] gh/andyanwang/33/base -> origin/gh/andyanwang/33/base 2025-07-24T03:47:22.7834179Z * [new branch] gh/andyanwang/33/head -> origin/gh/andyanwang/33/head 2025-07-24T03:47:22.7834827Z * [new branch] gh/andyanwang/33/orig -> origin/gh/andyanwang/33/orig 2025-07-24T03:47:22.7835360Z * [new branch] gh/andyanwang/34/base -> origin/gh/andyanwang/34/base 2025-07-24T03:47:22.7835896Z * [new branch] gh/andyanwang/34/head -> origin/gh/andyanwang/34/head 2025-07-24T03:47:22.7836413Z * [new branch] gh/andyanwang/34/orig -> origin/gh/andyanwang/34/orig 2025-07-24T03:47:22.7836956Z * [new branch] gh/andyanwang/4/base -> origin/gh/andyanwang/4/base 2025-07-24T03:47:22.7837474Z * [new branch] gh/andyanwang/4/head -> origin/gh/andyanwang/4/head 2025-07-24T03:47:22.7837992Z * [new branch] gh/andyanwang/4/orig -> origin/gh/andyanwang/4/orig 2025-07-24T03:47:22.7838508Z * [new branch] gh/angelayi/100/base -> origin/gh/angelayi/100/base 2025-07-24T03:47:22.7839009Z * [new branch] gh/angelayi/100/head -> origin/gh/angelayi/100/head 2025-07-24T03:47:22.7839525Z * [new branch] gh/angelayi/100/orig -> origin/gh/angelayi/100/orig 2025-07-24T03:47:22.7840025Z * [new branch] gh/angelayi/101/base -> origin/gh/angelayi/101/base 2025-07-24T03:47:22.7840529Z * [new branch] gh/angelayi/101/head -> origin/gh/angelayi/101/head 2025-07-24T03:47:22.7841049Z * [new branch] gh/angelayi/101/orig -> origin/gh/angelayi/101/orig 2025-07-24T03:47:22.7841648Z * [new branch] gh/angelayi/102/base -> origin/gh/angelayi/102/base 2025-07-24T03:47:22.7842176Z * [new branch] gh/angelayi/102/head -> origin/gh/angelayi/102/head 2025-07-24T03:47:22.7842676Z * [new branch] gh/angelayi/102/orig -> origin/gh/angelayi/102/orig 2025-07-24T03:47:22.7843192Z * [new branch] gh/angelayi/103/base -> origin/gh/angelayi/103/base 2025-07-24T03:47:22.7843712Z * [new branch] gh/angelayi/103/head -> origin/gh/angelayi/103/head 2025-07-24T03:47:22.7844222Z * [new branch] gh/angelayi/103/orig -> origin/gh/angelayi/103/orig 2025-07-24T03:47:22.7844737Z * [new branch] gh/angelayi/104/base -> origin/gh/angelayi/104/base 2025-07-24T03:47:22.7845237Z * [new branch] gh/angelayi/104/head -> origin/gh/angelayi/104/head 2025-07-24T03:47:22.7845752Z * [new branch] gh/angelayi/104/orig -> origin/gh/angelayi/104/orig 2025-07-24T03:47:22.7846262Z * [new branch] gh/angelayi/105/base -> origin/gh/angelayi/105/base 2025-07-24T03:47:22.7846768Z * [new branch] gh/angelayi/105/head -> origin/gh/angelayi/105/head 2025-07-24T03:47:22.7847282Z * [new branch] gh/angelayi/105/orig -> origin/gh/angelayi/105/orig 2025-07-24T03:47:22.7847794Z * [new branch] gh/angelayi/82/base -> origin/gh/angelayi/82/base 2025-07-24T03:47:22.7848314Z * [new branch] gh/angelayi/82/head -> origin/gh/angelayi/82/head 2025-07-24T03:47:22.7848819Z * [new branch] gh/angelayi/82/orig -> origin/gh/angelayi/82/orig 2025-07-24T03:47:22.8370924Z * [new branch] gh/angelayi/97/base -> origin/gh/angelayi/97/base 2025-07-24T03:47:22.8371499Z * [new branch] gh/angelayi/97/head -> origin/gh/angelayi/97/head 2025-07-24T03:47:22.8372014Z * [new branch] gh/angelayi/97/orig -> origin/gh/angelayi/97/orig 2025-07-24T03:47:22.8372513Z * [new branch] gh/ani300/1/base -> origin/gh/ani300/1/base 2025-07-24T03:47:22.8373004Z * [new branch] gh/ani300/1/head -> origin/gh/ani300/1/head 2025-07-24T03:47:22.8373692Z * [new branch] gh/ani300/1/orig -> origin/gh/ani300/1/orig 2025-07-24T03:47:22.8374221Z * [new branch] gh/anijain2305/162/base -> origin/gh/anijain2305/162/base 2025-07-24T03:47:22.8374890Z * [new branch] gh/anijain2305/162/head -> origin/gh/anijain2305/162/head 2025-07-24T03:47:22.8375442Z * [new branch] gh/anijain2305/710/base -> origin/gh/anijain2305/710/base 2025-07-24T03:47:22.8375975Z * [new branch] gh/anijain2305/710/head -> origin/gh/anijain2305/710/head 2025-07-24T03:47:22.8376511Z * [new branch] gh/anijain2305/710/orig -> origin/gh/anijain2305/710/orig 2025-07-24T03:47:22.8377056Z * [new branch] gh/anijain2305/753/base -> origin/gh/anijain2305/753/base 2025-07-24T03:47:22.8377594Z * [new branch] gh/anijain2305/753/head -> origin/gh/anijain2305/753/head 2025-07-24T03:47:22.8378137Z * [new branch] gh/anijain2305/753/orig -> origin/gh/anijain2305/753/orig 2025-07-24T03:47:22.8378696Z * [new branch] gh/anijain2305/766/base -> origin/gh/anijain2305/766/base 2025-07-24T03:47:22.8379228Z * [new branch] gh/anijain2305/766/head -> origin/gh/anijain2305/766/head 2025-07-24T03:47:22.8379770Z * [new branch] gh/anijain2305/766/orig -> origin/gh/anijain2305/766/orig 2025-07-24T03:47:22.8380303Z * [new branch] gh/anijain2305/790/base -> origin/gh/anijain2305/790/base 2025-07-24T03:47:22.8380830Z * [new branch] gh/anijain2305/790/head -> origin/gh/anijain2305/790/head 2025-07-24T03:47:22.8381364Z * [new branch] gh/anijain2305/790/orig -> origin/gh/anijain2305/790/orig 2025-07-24T03:47:22.8381896Z * [new branch] gh/anijain2305/792/base -> origin/gh/anijain2305/792/base 2025-07-24T03:47:22.8382428Z * [new branch] gh/anijain2305/792/head -> origin/gh/anijain2305/792/head 2025-07-24T03:47:22.8382959Z * [new branch] gh/anijain2305/792/orig -> origin/gh/anijain2305/792/orig 2025-07-24T03:47:22.8383491Z * [new branch] gh/anijain2305/794/base -> origin/gh/anijain2305/794/base 2025-07-24T03:47:22.8384027Z * [new branch] gh/anijain2305/794/head -> origin/gh/anijain2305/794/head 2025-07-24T03:47:22.8384571Z * [new branch] gh/anijain2305/794/orig -> origin/gh/anijain2305/794/orig 2025-07-24T03:47:22.8385105Z * [new branch] gh/anijain2305/803/base -> origin/gh/anijain2305/803/base 2025-07-24T03:47:22.8385642Z * [new branch] gh/anijain2305/803/head -> origin/gh/anijain2305/803/head 2025-07-24T03:47:22.8386168Z * [new branch] gh/anijain2305/803/orig -> origin/gh/anijain2305/803/orig 2025-07-24T03:47:22.8386704Z * [new branch] gh/anijain2305/804/base -> origin/gh/anijain2305/804/base 2025-07-24T03:47:22.8387233Z * [new branch] gh/anijain2305/804/head -> origin/gh/anijain2305/804/head 2025-07-24T03:47:22.8387767Z * [new branch] gh/anijain2305/804/orig -> origin/gh/anijain2305/804/orig 2025-07-24T03:47:22.8388305Z * [new branch] gh/anijain2305/805/base -> origin/gh/anijain2305/805/base 2025-07-24T03:47:22.8388834Z * [new branch] gh/anijain2305/805/head -> origin/gh/anijain2305/805/head 2025-07-24T03:47:22.8389365Z * [new branch] gh/anijain2305/805/orig -> origin/gh/anijain2305/805/orig 2025-07-24T03:47:22.8389889Z * [new branch] gh/anijain2305/806/base -> origin/gh/anijain2305/806/base 2025-07-24T03:47:22.8390422Z * [new branch] gh/anijain2305/806/head -> origin/gh/anijain2305/806/head 2025-07-24T03:47:22.8390969Z * [new branch] gh/anijain2305/806/orig -> origin/gh/anijain2305/806/orig 2025-07-24T03:47:22.8391499Z * [new branch] gh/anijain2305/807/base -> origin/gh/anijain2305/807/base 2025-07-24T03:47:22.8392145Z * [new branch] gh/anijain2305/807/head -> origin/gh/anijain2305/807/head 2025-07-24T03:47:22.8392676Z * [new branch] gh/anijain2305/807/orig -> origin/gh/anijain2305/807/orig 2025-07-24T03:47:22.8393320Z * [new branch] gh/anijain2305/808/base -> origin/gh/anijain2305/808/base 2025-07-24T03:47:22.8393863Z * [new branch] gh/anijain2305/808/head -> origin/gh/anijain2305/808/head 2025-07-24T03:47:22.8394392Z * [new branch] gh/anijain2305/808/orig -> origin/gh/anijain2305/808/orig 2025-07-24T03:47:22.8394935Z * [new branch] gh/anijain2305/809/base -> origin/gh/anijain2305/809/base 2025-07-24T03:47:22.8395466Z * [new branch] gh/anijain2305/809/head -> origin/gh/anijain2305/809/head 2025-07-24T03:47:22.8905490Z * [new branch] gh/anijain2305/809/orig -> origin/gh/anijain2305/809/orig 2025-07-24T03:47:22.8906086Z * [new branch] gh/anijain2305/810/base -> origin/gh/anijain2305/810/base 2025-07-24T03:47:22.8906658Z * [new branch] gh/anijain2305/810/head -> origin/gh/anijain2305/810/head 2025-07-24T03:47:22.8907277Z * [new branch] gh/anijain2305/810/orig -> origin/gh/anijain2305/810/orig 2025-07-24T03:47:22.8907822Z * [new branch] gh/anijain2305/811/base -> origin/gh/anijain2305/811/base 2025-07-24T03:47:22.8908417Z * [new branch] gh/anijain2305/811/head -> origin/gh/anijain2305/811/head 2025-07-24T03:47:22.8908965Z * [new branch] gh/anijain2305/811/orig -> origin/gh/anijain2305/811/orig 2025-07-24T03:47:22.8909501Z * [new branch] gh/anijain2305/812/base -> origin/gh/anijain2305/812/base 2025-07-24T03:47:22.8910039Z * [new branch] gh/anijain2305/812/head -> origin/gh/anijain2305/812/head 2025-07-24T03:47:22.8910582Z * [new branch] gh/anijain2305/812/orig -> origin/gh/anijain2305/812/orig 2025-07-24T03:47:22.8911119Z * [new branch] gh/anijain2305/813/base -> origin/gh/anijain2305/813/base 2025-07-24T03:47:22.8911659Z * [new branch] gh/anijain2305/813/head -> origin/gh/anijain2305/813/head 2025-07-24T03:47:22.8912192Z * [new branch] gh/anijain2305/813/orig -> origin/gh/anijain2305/813/orig 2025-07-24T03:47:22.8912730Z * [new branch] gh/anijain2305/814/base -> origin/gh/anijain2305/814/base 2025-07-24T03:47:22.8913316Z * [new branch] gh/anijain2305/814/head -> origin/gh/anijain2305/814/head 2025-07-24T03:47:22.8913879Z * [new branch] gh/anijain2305/814/orig -> origin/gh/anijain2305/814/orig 2025-07-24T03:47:22.8914481Z * [new branch] gh/anijain2305/815/base -> origin/gh/anijain2305/815/base 2025-07-24T03:47:22.8915015Z * [new branch] gh/anijain2305/815/head -> origin/gh/anijain2305/815/head 2025-07-24T03:47:22.8915548Z * [new branch] gh/anijain2305/815/orig -> origin/gh/anijain2305/815/orig 2025-07-24T03:47:22.8916090Z * [new branch] gh/anijain2305/816/base -> origin/gh/anijain2305/816/base 2025-07-24T03:47:22.8916631Z * [new branch] gh/anijain2305/816/head -> origin/gh/anijain2305/816/head 2025-07-24T03:47:22.8917174Z * [new branch] gh/anijain2305/817/base -> origin/gh/anijain2305/817/base 2025-07-24T03:47:22.8917701Z * [new branch] gh/anijain2305/817/head -> origin/gh/anijain2305/817/head 2025-07-24T03:47:22.8918243Z * [new branch] gh/anijain2305/817/orig -> origin/gh/anijain2305/817/orig 2025-07-24T03:47:22.8918786Z * [new branch] gh/anijain2305/818/base -> origin/gh/anijain2305/818/base 2025-07-24T03:47:22.8919316Z * [new branch] gh/anijain2305/818/head -> origin/gh/anijain2305/818/head 2025-07-24T03:47:22.8919922Z * [new branch] gh/anijain2305/818/orig -> origin/gh/anijain2305/818/orig 2025-07-24T03:47:22.8920742Z * [new branch] gh/anijain2305/819/base -> origin/gh/anijain2305/819/base 2025-07-24T03:47:22.8921420Z * [new branch] gh/anijain2305/819/head -> origin/gh/anijain2305/819/head 2025-07-24T03:47:22.8922042Z * [new branch] gh/anijain2305/819/orig -> origin/gh/anijain2305/819/orig 2025-07-24T03:47:22.8922579Z * [new branch] gh/anijain2305/820/base -> origin/gh/anijain2305/820/base 2025-07-24T03:47:22.8923126Z * [new branch] gh/anijain2305/820/head -> origin/gh/anijain2305/820/head 2025-07-24T03:47:22.8923665Z * [new branch] gh/anijain2305/820/orig -> origin/gh/anijain2305/820/orig 2025-07-24T03:47:22.8924212Z * [new branch] gh/anijain2305/821/base -> origin/gh/anijain2305/821/base 2025-07-24T03:47:22.8924742Z * [new branch] gh/anijain2305/821/head -> origin/gh/anijain2305/821/head 2025-07-24T03:47:22.8925346Z * [new branch] gh/anijain2305/821/orig -> origin/gh/anijain2305/821/orig 2025-07-24T03:47:22.8925950Z * [new branch] gh/anijain2305/822/base -> origin/gh/anijain2305/822/base 2025-07-24T03:47:22.8926486Z * [new branch] gh/anijain2305/822/head -> origin/gh/anijain2305/822/head 2025-07-24T03:47:22.8927029Z * [new branch] gh/anijain2305/822/orig -> origin/gh/anijain2305/822/orig 2025-07-24T03:47:22.8927558Z * [new branch] gh/anijain2305/823/base -> origin/gh/anijain2305/823/base 2025-07-24T03:47:22.8928100Z * [new branch] gh/anijain2305/823/head -> origin/gh/anijain2305/823/head 2025-07-24T03:47:22.8928642Z * [new branch] gh/anijain2305/823/orig -> origin/gh/anijain2305/823/orig 2025-07-24T03:47:22.8929176Z * [new branch] gh/anijain2305/824/base -> origin/gh/anijain2305/824/base 2025-07-24T03:47:22.8929710Z * [new branch] gh/anijain2305/824/head -> origin/gh/anijain2305/824/head 2025-07-24T03:47:22.8930245Z * [new branch] gh/anijain2305/824/orig -> origin/gh/anijain2305/824/orig 2025-07-24T03:47:22.9437687Z * [new branch] gh/anijain2305/825/base -> origin/gh/anijain2305/825/base 2025-07-24T03:47:22.9438264Z * [new branch] gh/anijain2305/825/head -> origin/gh/anijain2305/825/head 2025-07-24T03:47:22.9438808Z * [new branch] gh/anijain2305/825/orig -> origin/gh/anijain2305/825/orig 2025-07-24T03:47:22.9439353Z * [new branch] gh/anijain2305/826/base -> origin/gh/anijain2305/826/base 2025-07-24T03:47:22.9439891Z * [new branch] gh/anijain2305/826/head -> origin/gh/anijain2305/826/head 2025-07-24T03:47:22.9440442Z * [new branch] gh/anijain2305/826/orig -> origin/gh/anijain2305/826/orig 2025-07-24T03:47:22.9440969Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-07-24T03:47:22.9441490Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-07-24T03:47:22.9442082Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-07-24T03:47:22.9442625Z * [new branch] gh/ankitageorge/10/base -> origin/gh/ankitageorge/10/base 2025-07-24T03:47:22.9443191Z * [new branch] gh/ankitageorge/10/head -> origin/gh/ankitageorge/10/head 2025-07-24T03:47:22.9443741Z * [new branch] gh/ankitageorge/10/orig -> origin/gh/ankitageorge/10/orig 2025-07-24T03:47:22.9444282Z * [new branch] gh/ankitageorge/11/base -> origin/gh/ankitageorge/11/base 2025-07-24T03:47:22.9444834Z * [new branch] gh/ankitageorge/11/head -> origin/gh/ankitageorge/11/head 2025-07-24T03:47:22.9445383Z * [new branch] gh/ankitageorge/11/orig -> origin/gh/ankitageorge/11/orig 2025-07-24T03:47:22.9445930Z * [new branch] gh/ankitageorge/12/base -> origin/gh/ankitageorge/12/base 2025-07-24T03:47:22.9446685Z * [new branch] gh/ankitageorge/12/head -> origin/gh/ankitageorge/12/head 2025-07-24T03:47:22.9447363Z * [new branch] gh/ankitageorge/12/orig -> origin/gh/ankitageorge/12/orig 2025-07-24T03:47:22.9447923Z * [new branch] gh/ankitageorge/13/base -> origin/gh/ankitageorge/13/base 2025-07-24T03:47:22.9448475Z * [new branch] gh/ankitageorge/13/head -> origin/gh/ankitageorge/13/head 2025-07-24T03:47:22.9449028Z * [new branch] gh/ankitageorge/13/orig -> origin/gh/ankitageorge/13/orig 2025-07-24T03:47:22.9449595Z * [new branch] gh/ankitageorge/5/base -> origin/gh/ankitageorge/5/base 2025-07-24T03:47:22.9450143Z * [new branch] gh/ankitageorge/5/head -> origin/gh/ankitageorge/5/head 2025-07-24T03:47:22.9450690Z * [new branch] gh/ankitageorge/5/orig -> origin/gh/ankitageorge/5/orig 2025-07-24T03:47:22.9451236Z * [new branch] gh/ankitageorge/7/base -> origin/gh/ankitageorge/7/base 2025-07-24T03:47:22.9451776Z * [new branch] gh/ankitageorge/7/head -> origin/gh/ankitageorge/7/head 2025-07-24T03:47:22.9452403Z * [new branch] gh/ankitageorge/7/orig -> origin/gh/ankitageorge/7/orig 2025-07-24T03:47:22.9453003Z * [new branch] gh/ankitageorge/8/base -> origin/gh/ankitageorge/8/base 2025-07-24T03:47:22.9453575Z * [new branch] gh/ankitageorge/8/head -> origin/gh/ankitageorge/8/head 2025-07-24T03:47:22.9454117Z * [new branch] gh/ankitageorge/8/orig -> origin/gh/ankitageorge/8/orig 2025-07-24T03:47:22.9454657Z * [new branch] gh/ankitageorge/9/base -> origin/gh/ankitageorge/9/base 2025-07-24T03:47:22.9455205Z * [new branch] gh/ankitageorge/9/head -> origin/gh/ankitageorge/9/head 2025-07-24T03:47:22.9455746Z * [new branch] gh/ankitageorge/9/orig -> origin/gh/ankitageorge/9/orig 2025-07-24T03:47:22.9456276Z * [new branch] gh/anshul-si/1/base -> origin/gh/anshul-si/1/base 2025-07-24T03:47:22.9456784Z * [new branch] gh/anshul-si/1/head -> origin/gh/anshul-si/1/head 2025-07-24T03:47:22.9457294Z * [new branch] gh/anshul-si/2/base -> origin/gh/anshul-si/2/base 2025-07-24T03:47:22.9457801Z * [new branch] gh/anshul-si/2/head -> origin/gh/anshul-si/2/head 2025-07-24T03:47:22.9458363Z * [new branch] gh/anshul-si/3/base -> origin/gh/anshul-si/3/base 2025-07-24T03:47:22.9458922Z * [new branch] gh/anshul-si/3/head -> origin/gh/anshul-si/3/head 2025-07-24T03:47:22.9459413Z * [new branch] gh/anshul-si/4/base -> origin/gh/anshul-si/4/base 2025-07-24T03:47:22.9459920Z * [new branch] gh/anshul-si/4/head -> origin/gh/anshul-si/4/head 2025-07-24T03:47:22.9460416Z * [new branch] gh/anshul-si/5/base -> origin/gh/anshul-si/5/base 2025-07-24T03:47:22.9460921Z * [new branch] gh/anshul-si/5/head -> origin/gh/anshul-si/5/head 2025-07-24T03:47:22.9461424Z * [new branch] gh/anshul-si/6/base -> origin/gh/anshul-si/6/base 2025-07-24T03:47:22.9461915Z * [new branch] gh/anshul-si/6/head -> origin/gh/anshul-si/6/head 2025-07-24T03:47:23.0008811Z * [new branch] gh/anshul-si/6/orig -> origin/gh/anshul-si/6/orig 2025-07-24T03:47:23.0009354Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-07-24T03:47:23.0009895Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-07-24T03:47:23.0010473Z * [new branch] gh/aorenste/231/base -> origin/gh/aorenste/231/base 2025-07-24T03:47:23.0011043Z * [new branch] gh/aorenste/231/head -> origin/gh/aorenste/231/head 2025-07-24T03:47:23.0011757Z * [new branch] gh/aorenste/231/orig -> origin/gh/aorenste/231/orig 2025-07-24T03:47:23.0012275Z * [new branch] gh/aorenste/234/base -> origin/gh/aorenste/234/base 2025-07-24T03:47:23.0012903Z * [new branch] gh/aorenste/234/head -> origin/gh/aorenste/234/head 2025-07-24T03:47:23.0013419Z * [new branch] gh/aorenste/234/orig -> origin/gh/aorenste/234/orig 2025-07-24T03:47:23.0013920Z * [new branch] gh/aorenste/235/base -> origin/gh/aorenste/235/base 2025-07-24T03:47:23.0014439Z * [new branch] gh/aorenste/235/head -> origin/gh/aorenste/235/head 2025-07-24T03:47:23.0014942Z * [new branch] gh/aorenste/235/orig -> origin/gh/aorenste/235/orig 2025-07-24T03:47:23.0015466Z * [new branch] gh/aorenste/236/base -> origin/gh/aorenste/236/base 2025-07-24T03:47:23.0015980Z * [new branch] gh/aorenste/236/head -> origin/gh/aorenste/236/head 2025-07-24T03:47:23.0016549Z * [new branch] gh/aorenste/236/orig -> origin/gh/aorenste/236/orig 2025-07-24T03:47:23.0017110Z * [new branch] gh/aorenste/237/base -> origin/gh/aorenste/237/base 2025-07-24T03:47:23.0017619Z * [new branch] gh/aorenste/237/head -> origin/gh/aorenste/237/head 2025-07-24T03:47:23.0018130Z * [new branch] gh/aorenste/237/orig -> origin/gh/aorenste/237/orig 2025-07-24T03:47:23.0018640Z * [new branch] gh/bdhirsh/647/base -> origin/gh/bdhirsh/647/base 2025-07-24T03:47:23.0019136Z * [new branch] gh/bdhirsh/647/head -> origin/gh/bdhirsh/647/head 2025-07-24T03:47:23.0019662Z * [new branch] gh/bdhirsh/647/orig -> origin/gh/bdhirsh/647/orig 2025-07-24T03:47:23.0020160Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-07-24T03:47:23.0020660Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-07-24T03:47:23.0021161Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-07-24T03:47:23.0021653Z * [new branch] gh/bdhirsh/651/base -> origin/gh/bdhirsh/651/base 2025-07-24T03:47:23.0022218Z * [new branch] gh/bdhirsh/651/head -> origin/gh/bdhirsh/651/head 2025-07-24T03:47:23.0022758Z * [new branch] gh/bdhirsh/651/orig -> origin/gh/bdhirsh/651/orig 2025-07-24T03:47:23.0023271Z * [new branch] gh/bdhirsh/652/base -> origin/gh/bdhirsh/652/base 2025-07-24T03:47:23.0023779Z * [new branch] gh/bdhirsh/652/head -> origin/gh/bdhirsh/652/head 2025-07-24T03:47:23.0024271Z * [new branch] gh/bdhirsh/652/orig -> origin/gh/bdhirsh/652/orig 2025-07-24T03:47:23.0024769Z * [new branch] gh/bdhirsh/656/base -> origin/gh/bdhirsh/656/base 2025-07-24T03:47:23.0025267Z * [new branch] gh/bdhirsh/656/head -> origin/gh/bdhirsh/656/head 2025-07-24T03:47:23.0025764Z * [new branch] gh/bdhirsh/657/base -> origin/gh/bdhirsh/657/base 2025-07-24T03:47:23.0026269Z * [new branch] gh/bdhirsh/657/head -> origin/gh/bdhirsh/657/head 2025-07-24T03:47:23.0026765Z * [new branch] gh/bdhirsh/659/base -> origin/gh/bdhirsh/659/base 2025-07-24T03:47:23.0027268Z * [new branch] gh/bdhirsh/659/head -> origin/gh/bdhirsh/659/head 2025-07-24T03:47:23.0027760Z * [new branch] gh/bdhirsh/659/orig -> origin/gh/bdhirsh/659/orig 2025-07-24T03:47:23.0028320Z * [new branch] gh/bdhirsh/663/base -> origin/gh/bdhirsh/663/base 2025-07-24T03:47:23.0028891Z * [new branch] gh/bdhirsh/663/head -> origin/gh/bdhirsh/663/head 2025-07-24T03:47:23.0029388Z * [new branch] gh/bdhirsh/663/orig -> origin/gh/bdhirsh/663/orig 2025-07-24T03:47:23.0030036Z * [new branch] gh/bdhirsh/665/base -> origin/gh/bdhirsh/665/base 2025-07-24T03:47:23.0030532Z * [new branch] gh/bdhirsh/665/head -> origin/gh/bdhirsh/665/head 2025-07-24T03:47:23.0031154Z * [new branch] gh/bdhirsh/665/orig -> origin/gh/bdhirsh/665/orig 2025-07-24T03:47:23.0031654Z * [new branch] gh/bdhirsh/666/base -> origin/gh/bdhirsh/666/base 2025-07-24T03:47:23.0032166Z * [new branch] gh/bdhirsh/666/head -> origin/gh/bdhirsh/666/head 2025-07-24T03:47:23.0032680Z * [new branch] gh/bdhirsh/666/orig -> origin/gh/bdhirsh/666/orig 2025-07-24T03:47:23.0033227Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-07-24T03:47:23.0564924Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-07-24T03:47:23.0565536Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-07-24T03:47:23.0566130Z * [new branch] gh/benjaminglass1/83/base -> origin/gh/benjaminglass1/83/base 2025-07-24T03:47:23.0566784Z * [new branch] gh/benjaminglass1/83/head -> origin/gh/benjaminglass1/83/head 2025-07-24T03:47:23.0567417Z * [new branch] gh/benjaminglass1/83/orig -> origin/gh/benjaminglass1/83/orig 2025-07-24T03:47:23.0567992Z * [new branch] gh/benjaminglass1/86/base -> origin/gh/benjaminglass1/86/base 2025-07-24T03:47:23.0568557Z * [new branch] gh/benjaminglass1/86/head -> origin/gh/benjaminglass1/86/head 2025-07-24T03:47:23.0569126Z * [new branch] gh/benjaminglass1/86/orig -> origin/gh/benjaminglass1/86/orig 2025-07-24T03:47:23.0569702Z * [new branch] gh/benjaminglass1/89/base -> origin/gh/benjaminglass1/89/base 2025-07-24T03:47:23.0570288Z * [new branch] gh/benjaminglass1/89/head -> origin/gh/benjaminglass1/89/head 2025-07-24T03:47:23.0570853Z * [new branch] gh/benjaminglass1/89/orig -> origin/gh/benjaminglass1/89/orig 2025-07-24T03:47:23.0571423Z * [new branch] gh/benjaminglass1/90/base -> origin/gh/benjaminglass1/90/base 2025-07-24T03:47:23.0571993Z * [new branch] gh/benjaminglass1/90/head -> origin/gh/benjaminglass1/90/head 2025-07-24T03:47:23.0572614Z * [new branch] gh/benjaminglass1/90/orig -> origin/gh/benjaminglass1/90/orig 2025-07-24T03:47:23.0573253Z * [new branch] gh/benjaminglass1/91/base -> origin/gh/benjaminglass1/91/base 2025-07-24T03:47:23.0573822Z * [new branch] gh/benjaminglass1/91/head -> origin/gh/benjaminglass1/91/head 2025-07-24T03:47:23.0574394Z * [new branch] gh/benjaminglass1/91/orig -> origin/gh/benjaminglass1/91/orig 2025-07-24T03:47:23.0574963Z * [new branch] gh/benjaminglass1/92/base -> origin/gh/benjaminglass1/92/base 2025-07-24T03:47:23.0575538Z * [new branch] gh/benjaminglass1/92/head -> origin/gh/benjaminglass1/92/head 2025-07-24T03:47:23.0576115Z * [new branch] gh/benjaminglass1/92/orig -> origin/gh/benjaminglass1/92/orig 2025-07-24T03:47:23.0576685Z * [new branch] gh/benjaminglass1/93/base -> origin/gh/benjaminglass1/93/base 2025-07-24T03:47:23.0577253Z * [new branch] gh/benjaminglass1/93/head -> origin/gh/benjaminglass1/93/head 2025-07-24T03:47:23.0577822Z * [new branch] gh/benjaminglass1/93/orig -> origin/gh/benjaminglass1/93/orig 2025-07-24T03:47:23.0578408Z * [new branch] gh/benjaminglass1/94/base -> origin/gh/benjaminglass1/94/base 2025-07-24T03:47:23.0579042Z * [new branch] gh/benjaminglass1/94/head -> origin/gh/benjaminglass1/94/head 2025-07-24T03:47:23.0579673Z * [new branch] gh/benjaminglass1/94/orig -> origin/gh/benjaminglass1/94/orig 2025-07-24T03:47:23.0580248Z * [new branch] gh/benjaminglass1/95/base -> origin/gh/benjaminglass1/95/base 2025-07-24T03:47:23.0580989Z * [new branch] gh/benjaminglass1/95/head -> origin/gh/benjaminglass1/95/head 2025-07-24T03:47:23.0581684Z * [new branch] gh/benjaminglass1/95/orig -> origin/gh/benjaminglass1/95/orig 2025-07-24T03:47:23.0582264Z * [new branch] gh/benjaminglass1/96/base -> origin/gh/benjaminglass1/96/base 2025-07-24T03:47:23.0582832Z * [new branch] gh/benjaminglass1/96/head -> origin/gh/benjaminglass1/96/head 2025-07-24T03:47:23.0583414Z * [new branch] gh/benjaminglass1/96/orig -> origin/gh/benjaminglass1/96/orig 2025-07-24T03:47:23.0583972Z * [new branch] gh/bobrenjc93/439/base -> origin/gh/bobrenjc93/439/base 2025-07-24T03:47:23.0584545Z * [new branch] gh/bobrenjc93/439/head -> origin/gh/bobrenjc93/439/head 2025-07-24T03:47:23.0585106Z * [new branch] gh/bobrenjc93/439/orig -> origin/gh/bobrenjc93/439/orig 2025-07-24T03:47:23.0585697Z * [new branch] gh/bobrenjc93/460/base -> origin/gh/bobrenjc93/460/base 2025-07-24T03:47:23.0586228Z * [new branch] gh/bobrenjc93/460/head -> origin/gh/bobrenjc93/460/head 2025-07-24T03:47:23.0586755Z * [new branch] gh/bobrenjc93/460/orig -> origin/gh/bobrenjc93/460/orig 2025-07-24T03:47:23.0587284Z * [new branch] gh/bobrenjc93/464/base -> origin/gh/bobrenjc93/464/base 2025-07-24T03:47:23.0587803Z * [new branch] gh/bobrenjc93/464/head -> origin/gh/bobrenjc93/464/head 2025-07-24T03:47:23.0588328Z * [new branch] gh/bobrenjc93/464/orig -> origin/gh/bobrenjc93/464/orig 2025-07-24T03:47:23.0588859Z * [new branch] gh/bobrenjc93/465/base -> origin/gh/bobrenjc93/465/base 2025-07-24T03:47:23.0589377Z * [new branch] gh/bobrenjc93/465/head -> origin/gh/bobrenjc93/465/head 2025-07-24T03:47:23.0589916Z * [new branch] gh/bobrenjc93/465/orig -> origin/gh/bobrenjc93/465/orig 2025-07-24T03:47:23.0590443Z * [new branch] gh/bobrenjc93/466/base -> origin/gh/bobrenjc93/466/base 2025-07-24T03:47:23.1141502Z * [new branch] gh/bobrenjc93/466/head -> origin/gh/bobrenjc93/466/head 2025-07-24T03:47:23.1142137Z * [new branch] gh/bobrenjc93/466/orig -> origin/gh/bobrenjc93/466/orig 2025-07-24T03:47:23.1142721Z * [new branch] gh/bobrenjc93/467/base -> origin/gh/bobrenjc93/467/base 2025-07-24T03:47:23.1143342Z * [new branch] gh/bobrenjc93/467/head -> origin/gh/bobrenjc93/467/head 2025-07-24T03:47:23.1143880Z * [new branch] gh/bobrenjc93/467/orig -> origin/gh/bobrenjc93/467/orig 2025-07-24T03:47:23.1144398Z * [new branch] gh/bobrenjc93/469/base -> origin/gh/bobrenjc93/469/base 2025-07-24T03:47:23.1144929Z * [new branch] gh/bobrenjc93/469/head -> origin/gh/bobrenjc93/469/head 2025-07-24T03:47:23.1145460Z * [new branch] gh/bobrenjc93/469/orig -> origin/gh/bobrenjc93/469/orig 2025-07-24T03:47:23.1145984Z * [new branch] gh/bobrenjc93/471/base -> origin/gh/bobrenjc93/471/base 2025-07-24T03:47:23.1146522Z * [new branch] gh/bobrenjc93/471/head -> origin/gh/bobrenjc93/471/head 2025-07-24T03:47:23.1147040Z * [new branch] gh/bobrenjc93/471/orig -> origin/gh/bobrenjc93/471/orig 2025-07-24T03:47:23.1163852Z * [new branch] gh/bobrenjc93/473/base -> origin/gh/bobrenjc93/473/base 2025-07-24T03:47:23.1164420Z * [new branch] gh/bobrenjc93/473/head -> origin/gh/bobrenjc93/473/head 2025-07-24T03:47:23.1164957Z * [new branch] gh/bobrenjc93/473/orig -> origin/gh/bobrenjc93/473/orig 2025-07-24T03:47:23.1165495Z * [new branch] gh/bobrenjc93/474/base -> origin/gh/bobrenjc93/474/base 2025-07-24T03:47:23.1166021Z * [new branch] gh/bobrenjc93/474/head -> origin/gh/bobrenjc93/474/head 2025-07-24T03:47:23.1166762Z * [new branch] gh/bobrenjc93/474/orig -> origin/gh/bobrenjc93/474/orig 2025-07-24T03:47:23.1167422Z * [new branch] gh/bobrenjc93/475/base -> origin/gh/bobrenjc93/475/base 2025-07-24T03:47:23.1167949Z * [new branch] gh/bobrenjc93/475/head -> origin/gh/bobrenjc93/475/head 2025-07-24T03:47:23.1168485Z * [new branch] gh/bobrenjc93/475/orig -> origin/gh/bobrenjc93/475/orig 2025-07-24T03:47:23.1169009Z * [new branch] gh/bobrenjc93/477/base -> origin/gh/bobrenjc93/477/base 2025-07-24T03:47:23.1169546Z * [new branch] gh/bobrenjc93/477/head -> origin/gh/bobrenjc93/477/head 2025-07-24T03:47:23.1170074Z * [new branch] gh/bobrenjc93/477/orig -> origin/gh/bobrenjc93/477/orig 2025-07-24T03:47:23.1170617Z * [new branch] gh/bobrenjc93/478/base -> origin/gh/bobrenjc93/478/base 2025-07-24T03:47:23.1171151Z * [new branch] gh/bobrenjc93/478/head -> origin/gh/bobrenjc93/478/head 2025-07-24T03:47:23.1171669Z * [new branch] gh/bobrenjc93/478/orig -> origin/gh/bobrenjc93/478/orig 2025-07-24T03:47:23.1172211Z * [new branch] gh/bobrenjc93/479/base -> origin/gh/bobrenjc93/479/base 2025-07-24T03:47:23.1172742Z * [new branch] gh/bobrenjc93/479/head -> origin/gh/bobrenjc93/479/head 2025-07-24T03:47:23.1173280Z * [new branch] gh/bobrenjc93/479/orig -> origin/gh/bobrenjc93/479/orig 2025-07-24T03:47:23.1173809Z * [new branch] gh/bobrenjc93/480/base -> origin/gh/bobrenjc93/480/base 2025-07-24T03:47:23.1174333Z * [new branch] gh/bobrenjc93/480/head -> origin/gh/bobrenjc93/480/head 2025-07-24T03:47:23.1174861Z * [new branch] gh/bobrenjc93/480/orig -> origin/gh/bobrenjc93/480/orig 2025-07-24T03:47:23.1175387Z * [new branch] gh/bobrenjc93/481/base -> origin/gh/bobrenjc93/481/base 2025-07-24T03:47:23.1176018Z * [new branch] gh/bobrenjc93/481/head -> origin/gh/bobrenjc93/481/head 2025-07-24T03:47:23.1176626Z * [new branch] gh/bobrenjc93/481/orig -> origin/gh/bobrenjc93/481/orig 2025-07-24T03:47:23.1177208Z * [new branch] gh/bobrenjc93/482/base -> origin/gh/bobrenjc93/482/base 2025-07-24T03:47:23.1177740Z * [new branch] gh/bobrenjc93/482/head -> origin/gh/bobrenjc93/482/head 2025-07-24T03:47:23.1178258Z * [new branch] gh/bobrenjc93/482/orig -> origin/gh/bobrenjc93/482/orig 2025-07-24T03:47:23.1178792Z * [new branch] gh/bobrenjc93/483/base -> origin/gh/bobrenjc93/483/base 2025-07-24T03:47:23.1179318Z * [new branch] gh/bobrenjc93/483/head -> origin/gh/bobrenjc93/483/head 2025-07-24T03:47:23.1179838Z * [new branch] gh/bobrenjc93/483/orig -> origin/gh/bobrenjc93/483/orig 2025-07-24T03:47:23.1180369Z * [new branch] gh/bobrenjc93/484/base -> origin/gh/bobrenjc93/484/base 2025-07-24T03:47:23.1180898Z * [new branch] gh/bobrenjc93/484/head -> origin/gh/bobrenjc93/484/head 2025-07-24T03:47:23.1181442Z * [new branch] gh/bobrenjc93/484/orig -> origin/gh/bobrenjc93/484/orig 2025-07-24T03:47:23.1181971Z * [new branch] gh/bobrenjc93/485/base -> origin/gh/bobrenjc93/485/base 2025-07-24T03:47:23.1676380Z * [new branch] gh/bobrenjc93/485/head -> origin/gh/bobrenjc93/485/head 2025-07-24T03:47:23.1676989Z * [new branch] gh/bobrenjc93/485/orig -> origin/gh/bobrenjc93/485/orig 2025-07-24T03:47:23.1677602Z * [new branch] gh/bobrenjc93/486/base -> origin/gh/bobrenjc93/486/base 2025-07-24T03:47:23.1678263Z * [new branch] gh/bobrenjc93/486/head -> origin/gh/bobrenjc93/486/head 2025-07-24T03:47:23.1678797Z * [new branch] gh/bobrenjc93/486/orig -> origin/gh/bobrenjc93/486/orig 2025-07-24T03:47:23.1679535Z * [new branch] gh/bobrenjc93/487/base -> origin/gh/bobrenjc93/487/base 2025-07-24T03:47:23.1680066Z * [new branch] gh/bobrenjc93/487/head -> origin/gh/bobrenjc93/487/head 2025-07-24T03:47:23.1680724Z * [new branch] gh/bobrenjc93/487/orig -> origin/gh/bobrenjc93/487/orig 2025-07-24T03:47:23.1681258Z * [new branch] gh/bobrenjc93/488/base -> origin/gh/bobrenjc93/488/base 2025-07-24T03:47:23.1681875Z * [new branch] gh/bobrenjc93/488/head -> origin/gh/bobrenjc93/488/head 2025-07-24T03:47:23.1682394Z * [new branch] gh/bobrenjc93/488/orig -> origin/gh/bobrenjc93/488/orig 2025-07-24T03:47:23.1682931Z * [new branch] gh/bobrenjc93/489/base -> origin/gh/bobrenjc93/489/base 2025-07-24T03:47:23.1683456Z * [new branch] gh/bobrenjc93/489/head -> origin/gh/bobrenjc93/489/head 2025-07-24T03:47:23.1683995Z * [new branch] gh/bobrenjc93/489/orig -> origin/gh/bobrenjc93/489/orig 2025-07-24T03:47:23.1684524Z * [new branch] gh/bobrenjc93/490/base -> origin/gh/bobrenjc93/490/base 2025-07-24T03:47:23.1685058Z * [new branch] gh/bobrenjc93/490/head -> origin/gh/bobrenjc93/490/head 2025-07-24T03:47:23.1685588Z * [new branch] gh/bobrenjc93/490/orig -> origin/gh/bobrenjc93/490/orig 2025-07-24T03:47:23.1686104Z * [new branch] gh/bobrenjc93/491/base -> origin/gh/bobrenjc93/491/base 2025-07-24T03:47:23.1686633Z * [new branch] gh/bobrenjc93/491/head -> origin/gh/bobrenjc93/491/head 2025-07-24T03:47:23.1687170Z * [new branch] gh/bobrenjc93/491/orig -> origin/gh/bobrenjc93/491/orig 2025-07-24T03:47:23.1687689Z * [new branch] gh/bobrenjc93/492/base -> origin/gh/bobrenjc93/492/base 2025-07-24T03:47:23.1688225Z * [new branch] gh/bobrenjc93/492/head -> origin/gh/bobrenjc93/492/head 2025-07-24T03:47:23.1688813Z * [new branch] gh/bobrenjc93/492/orig -> origin/gh/bobrenjc93/492/orig 2025-07-24T03:47:23.1689414Z * [new branch] gh/bobrenjc93/493/base -> origin/gh/bobrenjc93/493/base 2025-07-24T03:47:23.1690004Z * [new branch] gh/bobrenjc93/493/head -> origin/gh/bobrenjc93/493/head 2025-07-24T03:47:23.1690546Z * [new branch] gh/bobrenjc93/493/orig -> origin/gh/bobrenjc93/493/orig 2025-07-24T03:47:23.1691089Z * [new branch] gh/bobrenjc93/494/base -> origin/gh/bobrenjc93/494/base 2025-07-24T03:47:23.1691615Z * [new branch] gh/bobrenjc93/494/head -> origin/gh/bobrenjc93/494/head 2025-07-24T03:47:23.1692146Z * [new branch] gh/bobrenjc93/494/orig -> origin/gh/bobrenjc93/494/orig 2025-07-24T03:47:23.1692673Z * [new branch] gh/bobrenjc93/495/base -> origin/gh/bobrenjc93/495/base 2025-07-24T03:47:23.1693219Z * [new branch] gh/bobrenjc93/495/head -> origin/gh/bobrenjc93/495/head 2025-07-24T03:47:23.1693761Z * [new branch] gh/bobrenjc93/495/orig -> origin/gh/bobrenjc93/495/orig 2025-07-24T03:47:23.1694298Z * [new branch] gh/bobrenjc93/496/base -> origin/gh/bobrenjc93/496/base 2025-07-24T03:47:23.1694852Z * [new branch] gh/bobrenjc93/496/head -> origin/gh/bobrenjc93/496/head 2025-07-24T03:47:23.1695374Z * [new branch] gh/bobrenjc93/496/orig -> origin/gh/bobrenjc93/496/orig 2025-07-24T03:47:23.1695900Z * [new branch] gh/bobrenjc93/497/base -> origin/gh/bobrenjc93/497/base 2025-07-24T03:47:23.1696437Z * [new branch] gh/bobrenjc93/497/head -> origin/gh/bobrenjc93/497/head 2025-07-24T03:47:23.1696957Z * [new branch] gh/bobrenjc93/497/orig -> origin/gh/bobrenjc93/497/orig 2025-07-24T03:47:23.1697490Z * [new branch] gh/bobrenjc93/498/base -> origin/gh/bobrenjc93/498/base 2025-07-24T03:47:23.1698144Z * [new branch] gh/bobrenjc93/498/head -> origin/gh/bobrenjc93/498/head 2025-07-24T03:47:23.1698678Z * [new branch] gh/bobrenjc93/498/orig -> origin/gh/bobrenjc93/498/orig 2025-07-24T03:47:23.1699333Z * [new branch] gh/bobrenjc93/499/base -> origin/gh/bobrenjc93/499/base 2025-07-24T03:47:23.1699853Z * [new branch] gh/bobrenjc93/499/head -> origin/gh/bobrenjc93/499/head 2025-07-24T03:47:23.1700386Z * [new branch] gh/bobrenjc93/499/orig -> origin/gh/bobrenjc93/499/orig 2025-07-24T03:47:23.1700915Z * [new branch] gh/bobrenjc93/500/base -> origin/gh/bobrenjc93/500/base 2025-07-24T03:47:23.1701458Z * [new branch] gh/bobrenjc93/500/head -> origin/gh/bobrenjc93/500/head 2025-07-24T03:47:23.2150207Z * [new branch] gh/bobrenjc93/500/orig -> origin/gh/bobrenjc93/500/orig 2025-07-24T03:47:23.2150908Z * [new branch] gh/bobrenjc93/501/base -> origin/gh/bobrenjc93/501/base 2025-07-24T03:47:23.2151535Z * [new branch] gh/bobrenjc93/501/head -> origin/gh/bobrenjc93/501/head 2025-07-24T03:47:23.2152102Z * [new branch] gh/bobrenjc93/501/orig -> origin/gh/bobrenjc93/501/orig 2025-07-24T03:47:23.2152636Z * [new branch] gh/bobrenjc93/502/base -> origin/gh/bobrenjc93/502/base 2025-07-24T03:47:23.2153174Z * [new branch] gh/bobrenjc93/502/head -> origin/gh/bobrenjc93/502/head 2025-07-24T03:47:23.2153700Z * [new branch] gh/bobrenjc93/502/orig -> origin/gh/bobrenjc93/502/orig 2025-07-24T03:47:23.2154228Z * [new branch] gh/bobrenjc93/503/base -> origin/gh/bobrenjc93/503/base 2025-07-24T03:47:23.2154753Z * [new branch] gh/bobrenjc93/503/head -> origin/gh/bobrenjc93/503/head 2025-07-24T03:47:23.2155287Z * [new branch] gh/bobrenjc93/503/orig -> origin/gh/bobrenjc93/503/orig 2025-07-24T03:47:23.2155829Z * [new branch] gh/bobrenjc93/504/base -> origin/gh/bobrenjc93/504/base 2025-07-24T03:47:23.2156349Z * [new branch] gh/bobrenjc93/504/head -> origin/gh/bobrenjc93/504/head 2025-07-24T03:47:23.2156938Z * [new branch] gh/bobrenjc93/504/orig -> origin/gh/bobrenjc93/504/orig 2025-07-24T03:47:23.2157522Z * [new branch] gh/bobrenjc93/505/base -> origin/gh/bobrenjc93/505/base 2025-07-24T03:47:23.2158113Z * [new branch] gh/bobrenjc93/505/head -> origin/gh/bobrenjc93/505/head 2025-07-24T03:47:23.2158645Z * [new branch] gh/bobrenjc93/505/orig -> origin/gh/bobrenjc93/505/orig 2025-07-24T03:47:23.2159168Z * [new branch] gh/bobrenjc93/506/base -> origin/gh/bobrenjc93/506/base 2025-07-24T03:47:23.2159691Z * [new branch] gh/bobrenjc93/506/head -> origin/gh/bobrenjc93/506/head 2025-07-24T03:47:23.2160236Z * [new branch] gh/bobrenjc93/506/orig -> origin/gh/bobrenjc93/506/orig 2025-07-24T03:47:23.2160776Z * [new branch] gh/bobrenjc93/507/base -> origin/gh/bobrenjc93/507/base 2025-07-24T03:47:23.2161300Z * [new branch] gh/bobrenjc93/507/head -> origin/gh/bobrenjc93/507/head 2025-07-24T03:47:23.2161916Z * [new branch] gh/bobrenjc93/507/orig -> origin/gh/bobrenjc93/507/orig 2025-07-24T03:47:23.2162435Z * [new branch] gh/bobrenjc93/508/base -> origin/gh/bobrenjc93/508/base 2025-07-24T03:47:23.2162964Z * [new branch] gh/bobrenjc93/508/head -> origin/gh/bobrenjc93/508/head 2025-07-24T03:47:23.2163553Z * [new branch] gh/bobrenjc93/508/orig -> origin/gh/bobrenjc93/508/orig 2025-07-24T03:47:23.2164128Z * [new branch] gh/bobrenjc93/509/base -> origin/gh/bobrenjc93/509/base 2025-07-24T03:47:23.2164708Z * [new branch] gh/bobrenjc93/509/head -> origin/gh/bobrenjc93/509/head 2025-07-24T03:47:23.2165437Z * [new branch] gh/bobrenjc93/509/orig -> origin/gh/bobrenjc93/509/orig 2025-07-24T03:47:23.2165976Z * [new branch] gh/bobrenjc93/510/base -> origin/gh/bobrenjc93/510/base 2025-07-24T03:47:23.2166636Z * [new branch] gh/bobrenjc93/510/head -> origin/gh/bobrenjc93/510/head 2025-07-24T03:47:23.2167162Z * [new branch] gh/bobrenjc93/510/orig -> origin/gh/bobrenjc93/510/orig 2025-07-24T03:47:23.2167699Z * [new branch] gh/bobrenjc93/511/base -> origin/gh/bobrenjc93/511/base 2025-07-24T03:47:23.2168232Z * [new branch] gh/bobrenjc93/511/head -> origin/gh/bobrenjc93/511/head 2025-07-24T03:47:23.2168768Z * [new branch] gh/bobrenjc93/511/orig -> origin/gh/bobrenjc93/511/orig 2025-07-24T03:47:23.2169301Z * [new branch] gh/bobrenjc93/512/base -> origin/gh/bobrenjc93/512/base 2025-07-24T03:47:23.2169881Z * [new branch] gh/bobrenjc93/512/head -> origin/gh/bobrenjc93/512/head 2025-07-24T03:47:23.2170483Z * [new branch] gh/bobrenjc93/512/orig -> origin/gh/bobrenjc93/512/orig 2025-07-24T03:47:23.2171069Z * [new branch] gh/bobrenjc93/513/base -> origin/gh/bobrenjc93/513/base 2025-07-24T03:47:23.2171595Z * [new branch] gh/bobrenjc93/513/head -> origin/gh/bobrenjc93/513/head 2025-07-24T03:47:23.2172116Z * [new branch] gh/bobrenjc93/513/orig -> origin/gh/bobrenjc93/513/orig 2025-07-24T03:47:23.2172651Z * [new branch] gh/bobrenjc93/514/base -> origin/gh/bobrenjc93/514/base 2025-07-24T03:47:23.2173178Z * [new branch] gh/bobrenjc93/514/head -> origin/gh/bobrenjc93/514/head 2025-07-24T03:47:23.2173696Z * [new branch] gh/bobrenjc93/514/orig -> origin/gh/bobrenjc93/514/orig 2025-07-24T03:47:23.2174225Z * [new branch] gh/bobrenjc93/515/base -> origin/gh/bobrenjc93/515/base 2025-07-24T03:47:23.2174760Z * [new branch] gh/bobrenjc93/515/head -> origin/gh/bobrenjc93/515/head 2025-07-24T03:47:23.2693189Z * [new branch] gh/bobrenjc93/515/orig -> origin/gh/bobrenjc93/515/orig 2025-07-24T03:47:23.2693829Z * [new branch] gh/bobrenjc93/516/base -> origin/gh/bobrenjc93/516/base 2025-07-24T03:47:23.2694368Z * [new branch] gh/bobrenjc93/516/head -> origin/gh/bobrenjc93/516/head 2025-07-24T03:47:23.2694923Z * [new branch] gh/bobrenjc93/516/orig -> origin/gh/bobrenjc93/516/orig 2025-07-24T03:47:23.2695451Z * [new branch] gh/bobrenjc93/517/base -> origin/gh/bobrenjc93/517/base 2025-07-24T03:47:23.2695977Z * [new branch] gh/bobrenjc93/517/head -> origin/gh/bobrenjc93/517/head 2025-07-24T03:47:23.2696507Z * [new branch] gh/bobrenjc93/517/orig -> origin/gh/bobrenjc93/517/orig 2025-07-24T03:47:23.2697023Z * [new branch] gh/bobrenjc93/518/base -> origin/gh/bobrenjc93/518/base 2025-07-24T03:47:23.2697588Z * [new branch] gh/bobrenjc93/518/head -> origin/gh/bobrenjc93/518/head 2025-07-24T03:47:23.2698127Z * [new branch] gh/bobrenjc93/518/orig -> origin/gh/bobrenjc93/518/orig 2025-07-24T03:47:23.2698649Z * [new branch] gh/bobrenjc93/519/base -> origin/gh/bobrenjc93/519/base 2025-07-24T03:47:23.2699182Z * [new branch] gh/bobrenjc93/519/head -> origin/gh/bobrenjc93/519/head 2025-07-24T03:47:23.2699707Z * [new branch] gh/bobrenjc93/519/orig -> origin/gh/bobrenjc93/519/orig 2025-07-24T03:47:23.2700239Z * [new branch] gh/bobrenjc93/520/base -> origin/gh/bobrenjc93/520/base 2025-07-24T03:47:23.2700769Z * [new branch] gh/bobrenjc93/520/head -> origin/gh/bobrenjc93/520/head 2025-07-24T03:47:23.2701293Z * [new branch] gh/bobrenjc93/520/orig -> origin/gh/bobrenjc93/520/orig 2025-07-24T03:47:23.2702013Z * [new branch] gh/bobrenjc93/521/base -> origin/gh/bobrenjc93/521/base 2025-07-24T03:47:23.2702531Z * [new branch] gh/bobrenjc93/521/head -> origin/gh/bobrenjc93/521/head 2025-07-24T03:47:23.2703186Z * [new branch] gh/bobrenjc93/521/orig -> origin/gh/bobrenjc93/521/orig 2025-07-24T03:47:23.2703711Z * [new branch] gh/bobrenjc93/522/base -> origin/gh/bobrenjc93/522/base 2025-07-24T03:47:23.2704245Z * [new branch] gh/bobrenjc93/522/head -> origin/gh/bobrenjc93/522/head 2025-07-24T03:47:23.2704777Z * [new branch] gh/bobrenjc93/522/orig -> origin/gh/bobrenjc93/522/orig 2025-07-24T03:47:23.2705307Z * [new branch] gh/bobrenjc93/523/base -> origin/gh/bobrenjc93/523/base 2025-07-24T03:47:23.2705846Z * [new branch] gh/bobrenjc93/523/head -> origin/gh/bobrenjc93/523/head 2025-07-24T03:47:23.2706368Z * [new branch] gh/bobrenjc93/523/orig -> origin/gh/bobrenjc93/523/orig 2025-07-24T03:47:23.2706910Z * [new branch] gh/bobrenjc93/524/base -> origin/gh/bobrenjc93/524/base 2025-07-24T03:47:23.2707446Z * [new branch] gh/bobrenjc93/524/head -> origin/gh/bobrenjc93/524/head 2025-07-24T03:47:23.2707966Z * [new branch] gh/bobrenjc93/524/orig -> origin/gh/bobrenjc93/524/orig 2025-07-24T03:47:23.2708491Z * [new branch] gh/bobrenjc93/525/base -> origin/gh/bobrenjc93/525/base 2025-07-24T03:47:23.2709013Z * [new branch] gh/bobrenjc93/525/head -> origin/gh/bobrenjc93/525/head 2025-07-24T03:47:23.2709544Z * [new branch] gh/bobrenjc93/525/orig -> origin/gh/bobrenjc93/525/orig 2025-07-24T03:47:23.2710076Z * [new branch] gh/bobrenjc93/526/base -> origin/gh/bobrenjc93/526/base 2025-07-24T03:47:23.2710603Z * [new branch] gh/bobrenjc93/526/head -> origin/gh/bobrenjc93/526/head 2025-07-24T03:47:23.2711143Z * [new branch] gh/bobrenjc93/526/orig -> origin/gh/bobrenjc93/526/orig 2025-07-24T03:47:23.2711665Z * [new branch] gh/bobrenjc93/527/base -> origin/gh/bobrenjc93/527/base 2025-07-24T03:47:23.2712201Z * [new branch] gh/bobrenjc93/527/head -> origin/gh/bobrenjc93/527/head 2025-07-24T03:47:23.2712737Z * [new branch] gh/bobrenjc93/527/orig -> origin/gh/bobrenjc93/527/orig 2025-07-24T03:47:23.2713260Z * [new branch] gh/bobrenjc93/528/base -> origin/gh/bobrenjc93/528/base 2025-07-24T03:47:23.2713794Z * [new branch] gh/bobrenjc93/528/head -> origin/gh/bobrenjc93/528/head 2025-07-24T03:47:23.2714406Z * [new branch] gh/bobrenjc93/528/orig -> origin/gh/bobrenjc93/528/orig 2025-07-24T03:47:23.2714994Z * [new branch] gh/bobrenjc93/529/base -> origin/gh/bobrenjc93/529/base 2025-07-24T03:47:23.2715528Z * [new branch] gh/bobrenjc93/529/head -> origin/gh/bobrenjc93/529/head 2025-07-24T03:47:23.2716058Z * [new branch] gh/bobrenjc93/529/orig -> origin/gh/bobrenjc93/529/orig 2025-07-24T03:47:23.2716592Z * [new branch] gh/bobrenjc93/530/base -> origin/gh/bobrenjc93/530/base 2025-07-24T03:47:23.2717111Z * [new branch] gh/bobrenjc93/530/head -> origin/gh/bobrenjc93/530/head 2025-07-24T03:47:23.2717642Z * [new branch] gh/bobrenjc93/530/orig -> origin/gh/bobrenjc93/530/orig 2025-07-24T03:47:23.3275201Z * [new branch] gh/bobrenjc93/531/base -> origin/gh/bobrenjc93/531/base 2025-07-24T03:47:23.3275748Z * [new branch] gh/bobrenjc93/531/head -> origin/gh/bobrenjc93/531/head 2025-07-24T03:47:23.3276287Z * [new branch] gh/bobrenjc93/531/orig -> origin/gh/bobrenjc93/531/orig 2025-07-24T03:47:23.3276820Z * [new branch] gh/bobrenjc93/532/base -> origin/gh/bobrenjc93/532/base 2025-07-24T03:47:23.3277351Z * [new branch] gh/bobrenjc93/532/head -> origin/gh/bobrenjc93/532/head 2025-07-24T03:47:23.3278674Z * [new branch] gh/bobrenjc93/532/orig -> origin/gh/bobrenjc93/532/orig 2025-07-24T03:47:23.3279334Z * [new branch] gh/bobrenjc93/533/base -> origin/gh/bobrenjc93/533/base 2025-07-24T03:47:23.3279866Z * [new branch] gh/bobrenjc93/533/head -> origin/gh/bobrenjc93/533/head 2025-07-24T03:47:23.3280389Z * [new branch] gh/bobrenjc93/533/orig -> origin/gh/bobrenjc93/533/orig 2025-07-24T03:47:23.3280914Z * [new branch] gh/bobrenjc93/534/base -> origin/gh/bobrenjc93/534/base 2025-07-24T03:47:23.3281446Z * [new branch] gh/bobrenjc93/534/head -> origin/gh/bobrenjc93/534/head 2025-07-24T03:47:23.3282068Z * [new branch] gh/bobrenjc93/534/orig -> origin/gh/bobrenjc93/534/orig 2025-07-24T03:47:23.3282598Z * [new branch] gh/bobrenjc93/535/base -> origin/gh/bobrenjc93/535/base 2025-07-24T03:47:23.3283128Z * [new branch] gh/bobrenjc93/535/head -> origin/gh/bobrenjc93/535/head 2025-07-24T03:47:23.3283658Z * [new branch] gh/bobrenjc93/535/orig -> origin/gh/bobrenjc93/535/orig 2025-07-24T03:47:23.3284196Z * [new branch] gh/bobrenjc93/536/base -> origin/gh/bobrenjc93/536/base 2025-07-24T03:47:23.3284716Z * [new branch] gh/bobrenjc93/536/head -> origin/gh/bobrenjc93/536/head 2025-07-24T03:47:23.3285241Z * [new branch] gh/bobrenjc93/536/orig -> origin/gh/bobrenjc93/536/orig 2025-07-24T03:47:23.3285790Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-07-24T03:47:23.3286358Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-07-24T03:47:23.3286880Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-07-24T03:47:23.3287344Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-07-24T03:47:23.3287808Z * [new branch] gh/c00w/38/base -> origin/gh/c00w/38/base 2025-07-24T03:47:23.3288270Z * [new branch] gh/c00w/38/head -> origin/gh/c00w/38/head 2025-07-24T03:47:23.3288727Z * [new branch] gh/c00w/38/orig -> origin/gh/c00w/38/orig 2025-07-24T03:47:23.3289174Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-07-24T03:47:23.3289627Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-07-24T03:47:23.3290090Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-07-24T03:47:23.3290541Z * [new branch] gh/c00w/50/base -> origin/gh/c00w/50/base 2025-07-24T03:47:23.3290994Z * [new branch] gh/c00w/50/head -> origin/gh/c00w/50/head 2025-07-24T03:47:23.3291443Z * [new branch] gh/c00w/50/orig -> origin/gh/c00w/50/orig 2025-07-24T03:47:23.3291919Z * [new branch] gh/c00w/51/base -> origin/gh/c00w/51/base 2025-07-24T03:47:23.3292380Z * [new branch] gh/c00w/51/head -> origin/gh/c00w/51/head 2025-07-24T03:47:23.3292829Z * [new branch] gh/c00w/51/orig -> origin/gh/c00w/51/orig 2025-07-24T03:47:23.3293310Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-07-24T03:47:23.3293815Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-07-24T03:47:23.3294303Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-07-24T03:47:23.3294793Z * [new branch] gh/clee2000/3/base -> origin/gh/clee2000/3/base 2025-07-24T03:47:23.3295270Z * [new branch] gh/clee2000/3/head -> origin/gh/clee2000/3/head 2025-07-24T03:47:23.3295752Z * [new branch] gh/clee2000/3/orig -> origin/gh/clee2000/3/orig 2025-07-24T03:47:23.3296397Z * [new branch] gh/coconutruben/1/base -> origin/gh/coconutruben/1/base 2025-07-24T03:47:23.3297061Z * [new branch] gh/coconutruben/1/head -> origin/gh/coconutruben/1/head 2025-07-24T03:47:23.3297624Z * [new branch] gh/coconutruben/11/base -> origin/gh/coconutruben/11/base 2025-07-24T03:47:23.3298176Z * [new branch] gh/coconutruben/11/head -> origin/gh/coconutruben/11/head 2025-07-24T03:47:23.3298727Z * [new branch] gh/coconutruben/11/orig -> origin/gh/coconutruben/11/orig 2025-07-24T03:47:23.3299277Z * [new branch] gh/coconutruben/12/base -> origin/gh/coconutruben/12/base 2025-07-24T03:47:23.3299834Z * [new branch] gh/coconutruben/12/head -> origin/gh/coconutruben/12/head 2025-07-24T03:47:23.4072870Z * [new branch] gh/coconutruben/12/orig -> origin/gh/coconutruben/12/orig 2025-07-24T03:47:23.4073511Z * [new branch] gh/coconutruben/13/base -> origin/gh/coconutruben/13/base 2025-07-24T03:47:23.4074078Z * [new branch] gh/coconutruben/13/head -> origin/gh/coconutruben/13/head 2025-07-24T03:47:23.4074644Z * [new branch] gh/coconutruben/13/orig -> origin/gh/coconutruben/13/orig 2025-07-24T03:47:23.4075205Z * [new branch] gh/coconutruben/14/base -> origin/gh/coconutruben/14/base 2025-07-24T03:47:23.4075757Z * [new branch] gh/coconutruben/14/head -> origin/gh/coconutruben/14/head 2025-07-24T03:47:23.4076308Z * [new branch] gh/coconutruben/14/orig -> origin/gh/coconutruben/14/orig 2025-07-24T03:47:23.4076863Z * [new branch] gh/coconutruben/15/base -> origin/gh/coconutruben/15/base 2025-07-24T03:47:23.4077404Z * [new branch] gh/coconutruben/15/head -> origin/gh/coconutruben/15/head 2025-07-24T03:47:23.4077962Z * [new branch] gh/coconutruben/15/orig -> origin/gh/coconutruben/15/orig 2025-07-24T03:47:23.4078507Z * [new branch] gh/coconutruben/16/base -> origin/gh/coconutruben/16/base 2025-07-24T03:47:23.4079066Z * [new branch] gh/coconutruben/16/head -> origin/gh/coconutruben/16/head 2025-07-24T03:47:23.4079616Z * [new branch] gh/coconutruben/16/orig -> origin/gh/coconutruben/16/orig 2025-07-24T03:47:23.4080158Z * [new branch] gh/coconutruben/17/base -> origin/gh/coconutruben/17/base 2025-07-24T03:47:23.4080717Z * [new branch] gh/coconutruben/17/head -> origin/gh/coconutruben/17/head 2025-07-24T03:47:23.4081255Z * [new branch] gh/coconutruben/17/orig -> origin/gh/coconutruben/17/orig 2025-07-24T03:47:23.4081898Z * [new branch] gh/coconutruben/18/base -> origin/gh/coconutruben/18/base 2025-07-24T03:47:23.4082457Z * [new branch] gh/coconutruben/18/head -> origin/gh/coconutruben/18/head 2025-07-24T03:47:23.4083014Z * [new branch] gh/coconutruben/18/orig -> origin/gh/coconutruben/18/orig 2025-07-24T03:47:23.4083636Z * [new branch] gh/coconutruben/19/base -> origin/gh/coconutruben/19/base 2025-07-24T03:47:23.4084189Z * [new branch] gh/coconutruben/19/head -> origin/gh/coconutruben/19/head 2025-07-24T03:47:23.4084750Z * [new branch] gh/coconutruben/19/orig -> origin/gh/coconutruben/19/orig 2025-07-24T03:47:23.4085315Z * [new branch] gh/coconutruben/20/base -> origin/gh/coconutruben/20/base 2025-07-24T03:47:23.4085881Z * [new branch] gh/coconutruben/20/head -> origin/gh/coconutruben/20/head 2025-07-24T03:47:23.4086435Z * [new branch] gh/coconutruben/20/orig -> origin/gh/coconutruben/20/orig 2025-07-24T03:47:23.4086977Z * [new branch] gh/coconutruben/21/base -> origin/gh/coconutruben/21/base 2025-07-24T03:47:23.4087530Z * [new branch] gh/coconutruben/21/head -> origin/gh/coconutruben/21/head 2025-07-24T03:47:23.4088297Z * [new branch] gh/coconutruben/21/orig -> origin/gh/coconutruben/21/orig 2025-07-24T03:47:23.4089601Z * [new branch] gh/coconutruben/22/base -> origin/gh/coconutruben/22/base 2025-07-24T03:47:23.4090170Z * [new branch] gh/coconutruben/22/head -> origin/gh/coconutruben/22/head 2025-07-24T03:47:23.4090731Z * [new branch] gh/coconutruben/22/orig -> origin/gh/coconutruben/22/orig 2025-07-24T03:47:23.4091286Z * [new branch] gh/coconutruben/23/base -> origin/gh/coconutruben/23/base 2025-07-24T03:47:23.4091919Z * [new branch] gh/coconutruben/23/head -> origin/gh/coconutruben/23/head 2025-07-24T03:47:23.4092463Z * [new branch] gh/coconutruben/23/orig -> origin/gh/coconutruben/23/orig 2025-07-24T03:47:23.4093021Z * [new branch] gh/coconutruben/24/base -> origin/gh/coconutruben/24/base 2025-07-24T03:47:23.4093581Z * [new branch] gh/coconutruben/24/head -> origin/gh/coconutruben/24/head 2025-07-24T03:47:23.4094124Z * [new branch] gh/coconutruben/24/orig -> origin/gh/coconutruben/24/orig 2025-07-24T03:47:23.4094683Z * [new branch] gh/coconutruben/25/base -> origin/gh/coconutruben/25/base 2025-07-24T03:47:23.4095225Z * [new branch] gh/coconutruben/25/head -> origin/gh/coconutruben/25/head 2025-07-24T03:47:23.4095769Z * [new branch] gh/coconutruben/25/orig -> origin/gh/coconutruben/25/orig 2025-07-24T03:47:23.4096344Z * [new branch] gh/codingwithsurya/10/base -> origin/gh/codingwithsurya/10/base 2025-07-24T03:47:23.4096931Z * [new branch] gh/codingwithsurya/10/head -> origin/gh/codingwithsurya/10/head 2025-07-24T03:47:23.4097522Z * [new branch] gh/codingwithsurya/10/orig -> origin/gh/codingwithsurya/10/orig 2025-07-24T03:47:23.4098111Z * [new branch] gh/codingwithsurya/11/base -> origin/gh/codingwithsurya/11/base 2025-07-24T03:47:23.5207975Z * [new branch] gh/codingwithsurya/11/head -> origin/gh/codingwithsurya/11/head 2025-07-24T03:47:23.5208677Z * [new branch] gh/codingwithsurya/11/orig -> origin/gh/codingwithsurya/11/orig 2025-07-24T03:47:23.5209272Z * [new branch] gh/codingwithsurya/12/base -> origin/gh/codingwithsurya/12/base 2025-07-24T03:47:23.5209869Z * [new branch] gh/codingwithsurya/12/head -> origin/gh/codingwithsurya/12/head 2025-07-24T03:47:23.5210462Z * [new branch] gh/codingwithsurya/12/orig -> origin/gh/codingwithsurya/12/orig 2025-07-24T03:47:23.5211059Z * [new branch] gh/codingwithsurya/13/base -> origin/gh/codingwithsurya/13/base 2025-07-24T03:47:23.5211643Z * [new branch] gh/codingwithsurya/13/head -> origin/gh/codingwithsurya/13/head 2025-07-24T03:47:23.5212220Z * [new branch] gh/codingwithsurya/13/orig -> origin/gh/codingwithsurya/13/orig 2025-07-24T03:47:23.5212819Z * [new branch] gh/codingwithsurya/14/base -> origin/gh/codingwithsurya/14/base 2025-07-24T03:47:23.5213405Z * [new branch] gh/codingwithsurya/14/head -> origin/gh/codingwithsurya/14/head 2025-07-24T03:47:23.5214006Z * [new branch] gh/codingwithsurya/14/orig -> origin/gh/codingwithsurya/14/orig 2025-07-24T03:47:23.5214589Z * [new branch] gh/codingwithsurya/6/base -> origin/gh/codingwithsurya/6/base 2025-07-24T03:47:23.5215173Z * [new branch] gh/codingwithsurya/6/head -> origin/gh/codingwithsurya/6/head 2025-07-24T03:47:23.5215759Z * [new branch] gh/codingwithsurya/6/orig -> origin/gh/codingwithsurya/6/orig 2025-07-24T03:47:23.5216336Z * [new branch] gh/codingwithsurya/7/base -> origin/gh/codingwithsurya/7/base 2025-07-24T03:47:23.5216919Z * [new branch] gh/codingwithsurya/7/head -> origin/gh/codingwithsurya/7/head 2025-07-24T03:47:23.5217722Z * [new branch] gh/codingwithsurya/7/orig -> origin/gh/codingwithsurya/7/orig 2025-07-24T03:47:23.5218425Z * [new branch] gh/codingwithsurya/8/base -> origin/gh/codingwithsurya/8/base 2025-07-24T03:47:23.5219012Z * [new branch] gh/codingwithsurya/8/head -> origin/gh/codingwithsurya/8/head 2025-07-24T03:47:23.5219600Z * [new branch] gh/codingwithsurya/8/orig -> origin/gh/codingwithsurya/8/orig 2025-07-24T03:47:23.5220188Z * [new branch] gh/codingwithsurya/9/base -> origin/gh/codingwithsurya/9/base 2025-07-24T03:47:23.5220768Z * [new branch] gh/codingwithsurya/9/head -> origin/gh/codingwithsurya/9/head 2025-07-24T03:47:23.5221360Z * [new branch] gh/codingwithsurya/9/orig -> origin/gh/codingwithsurya/9/orig 2025-07-24T03:47:23.5221940Z * [new branch] gh/davidberard98/347/base -> origin/gh/davidberard98/347/base 2025-07-24T03:47:23.5222507Z * [new branch] gh/davidberard98/347/head -> origin/gh/davidberard98/347/head 2025-07-24T03:47:23.5223076Z * [new branch] gh/davidberard98/347/orig -> origin/gh/davidberard98/347/orig 2025-07-24T03:47:23.5223641Z * [new branch] gh/davidberard98/351/base -> origin/gh/davidberard98/351/base 2025-07-24T03:47:23.5224206Z * [new branch] gh/davidberard98/351/head -> origin/gh/davidberard98/351/head 2025-07-24T03:47:23.5224782Z * [new branch] gh/davidberard98/351/orig -> origin/gh/davidberard98/351/orig 2025-07-24T03:47:23.5225355Z * [new branch] gh/davidberard98/353/base -> origin/gh/davidberard98/353/base 2025-07-24T03:47:23.5225918Z * [new branch] gh/davidberard98/353/head -> origin/gh/davidberard98/353/head 2025-07-24T03:47:23.5226474Z * [new branch] gh/davidberard98/353/orig -> origin/gh/davidberard98/353/orig 2025-07-24T03:47:23.5227040Z * [new branch] gh/davidberard98/356/base -> origin/gh/davidberard98/356/base 2025-07-24T03:47:23.5227611Z * [new branch] gh/davidberard98/356/head -> origin/gh/davidberard98/356/head 2025-07-24T03:47:23.5228174Z * [new branch] gh/davidberard98/356/orig -> origin/gh/davidberard98/356/orig 2025-07-24T03:47:23.5228738Z * [new branch] gh/davidberard98/378/base -> origin/gh/davidberard98/378/base 2025-07-24T03:47:23.5229311Z * [new branch] gh/davidberard98/378/head -> origin/gh/davidberard98/378/head 2025-07-24T03:47:23.5229879Z * [new branch] gh/davidberard98/378/orig -> origin/gh/davidberard98/378/orig 2025-07-24T03:47:23.5230452Z * [new branch] gh/davidberard98/380/base -> origin/gh/davidberard98/380/base 2025-07-24T03:47:23.5231008Z * [new branch] gh/davidberard98/380/head -> origin/gh/davidberard98/380/head 2025-07-24T03:47:23.5231576Z * [new branch] gh/davidberard98/380/orig -> origin/gh/davidberard98/380/orig 2025-07-24T03:47:23.5232148Z * [new branch] gh/davidberard98/382/base -> origin/gh/davidberard98/382/base 2025-07-24T03:47:23.5232717Z * [new branch] gh/davidberard98/382/head -> origin/gh/davidberard98/382/head 2025-07-24T03:47:23.5233285Z * [new branch] gh/davidberard98/382/orig -> origin/gh/davidberard98/382/orig 2025-07-24T03:47:23.6091510Z * [new branch] gh/davidberard98/383/base -> origin/gh/davidberard98/383/base 2025-07-24T03:47:23.6092122Z * [new branch] gh/davidberard98/383/head -> origin/gh/davidberard98/383/head 2025-07-24T03:47:23.6092693Z * [new branch] gh/davidberard98/383/orig -> origin/gh/davidberard98/383/orig 2025-07-24T03:47:23.6093278Z * [new branch] gh/davidberard98/384/base -> origin/gh/davidberard98/384/base 2025-07-24T03:47:23.6093846Z * [new branch] gh/davidberard98/384/head -> origin/gh/davidberard98/384/head 2025-07-24T03:47:23.6094633Z * [new branch] gh/davidberard98/384/orig -> origin/gh/davidberard98/384/orig 2025-07-24T03:47:23.6095220Z * [new branch] gh/davidberard98/385/base -> origin/gh/davidberard98/385/base 2025-07-24T03:47:23.6095931Z * [new branch] gh/davidberard98/385/head -> origin/gh/davidberard98/385/head 2025-07-24T03:47:23.6096556Z * [new branch] gh/davidberard98/385/orig -> origin/gh/davidberard98/385/orig 2025-07-24T03:47:23.6097178Z * [new branch] gh/davidberard98/386/base -> origin/gh/davidberard98/386/base 2025-07-24T03:47:23.6097744Z * [new branch] gh/davidberard98/386/head -> origin/gh/davidberard98/386/head 2025-07-24T03:47:23.6098319Z * [new branch] gh/davidberard98/386/orig -> origin/gh/davidberard98/386/orig 2025-07-24T03:47:23.6098886Z * [new branch] gh/davidberard98/387/base -> origin/gh/davidberard98/387/base 2025-07-24T03:47:23.6099460Z * [new branch] gh/davidberard98/387/head -> origin/gh/davidberard98/387/head 2025-07-24T03:47:23.6100038Z * [new branch] gh/davidberard98/387/orig -> origin/gh/davidberard98/387/orig 2025-07-24T03:47:23.6100602Z * [new branch] gh/davidberard98/388/base -> origin/gh/davidberard98/388/base 2025-07-24T03:47:23.6101169Z * [new branch] gh/davidberard98/388/head -> origin/gh/davidberard98/388/head 2025-07-24T03:47:23.6101730Z * [new branch] gh/davidberard98/388/orig -> origin/gh/davidberard98/388/orig 2025-07-24T03:47:23.6102294Z * [new branch] gh/davidberard98/389/base -> origin/gh/davidberard98/389/base 2025-07-24T03:47:23.6102898Z * [new branch] gh/davidberard98/389/head -> origin/gh/davidberard98/389/head 2025-07-24T03:47:23.6103513Z * [new branch] gh/davidberard98/389/orig -> origin/gh/davidberard98/389/orig 2025-07-24T03:47:23.6104101Z * [new branch] gh/davidberard98/390/base -> origin/gh/davidberard98/390/base 2025-07-24T03:47:23.6104666Z * [new branch] gh/davidberard98/390/head -> origin/gh/davidberard98/390/head 2025-07-24T03:47:23.6105235Z * [new branch] gh/davidberard98/390/orig -> origin/gh/davidberard98/390/orig 2025-07-24T03:47:23.6105790Z * [new branch] gh/desertfire/570/base -> origin/gh/desertfire/570/base 2025-07-24T03:47:23.6106330Z * [new branch] gh/desertfire/570/head -> origin/gh/desertfire/570/head 2025-07-24T03:47:23.6106873Z * [new branch] gh/desertfire/570/orig -> origin/gh/desertfire/570/orig 2025-07-24T03:47:23.6107413Z * [new branch] gh/desertfire/572/base -> origin/gh/desertfire/572/base 2025-07-24T03:47:23.6107957Z * [new branch] gh/desertfire/572/head -> origin/gh/desertfire/572/head 2025-07-24T03:47:23.6108497Z * [new branch] gh/desertfire/572/orig -> origin/gh/desertfire/572/orig 2025-07-24T03:47:23.6109081Z * [new branch] gh/desertfire/585/base -> origin/gh/desertfire/585/base 2025-07-24T03:47:23.6109665Z * [new branch] gh/desertfire/585/head -> origin/gh/desertfire/585/head 2025-07-24T03:47:23.6110200Z * [new branch] gh/desertfire/585/orig -> origin/gh/desertfire/585/orig 2025-07-24T03:47:23.6110735Z * [new branch] gh/desertfire/586/base -> origin/gh/desertfire/586/base 2025-07-24T03:47:23.6111284Z * [new branch] gh/desertfire/586/head -> origin/gh/desertfire/586/head 2025-07-24T03:47:23.6111817Z * [new branch] gh/desertfire/586/orig -> origin/gh/desertfire/586/orig 2025-07-24T03:47:23.6112355Z * [new branch] gh/desertfire/587/base -> origin/gh/desertfire/587/base 2025-07-24T03:47:23.6112890Z * [new branch] gh/desertfire/587/head -> origin/gh/desertfire/587/head 2025-07-24T03:47:23.6113413Z * [new branch] gh/desertfire/587/orig -> origin/gh/desertfire/587/orig 2025-07-24T03:47:23.6114067Z * [new branch] gh/desertfire/588/base -> origin/gh/desertfire/588/base 2025-07-24T03:47:23.6114727Z * [new branch] gh/desertfire/588/head -> origin/gh/desertfire/588/head 2025-07-24T03:47:23.6115275Z * [new branch] gh/desertfire/588/orig -> origin/gh/desertfire/588/orig 2025-07-24T03:47:23.6115857Z * [new branch] gh/desertfire/589/base -> origin/gh/desertfire/589/base 2025-07-24T03:47:23.6116386Z * [new branch] gh/desertfire/589/head -> origin/gh/desertfire/589/head 2025-07-24T03:47:23.6116925Z * [new branch] gh/desertfire/589/orig -> origin/gh/desertfire/589/orig 2025-07-24T03:47:23.6582265Z * [new branch] gh/desertfire/590/base -> origin/gh/desertfire/590/base 2025-07-24T03:47:23.6582881Z * [new branch] gh/desertfire/590/head -> origin/gh/desertfire/590/head 2025-07-24T03:47:23.6583455Z * [new branch] gh/desertfire/590/orig -> origin/gh/desertfire/590/orig 2025-07-24T03:47:23.6583973Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-07-24T03:47:23.6584490Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-07-24T03:47:23.6584989Z * [new branch] gh/dharakk/4/base -> origin/gh/dharakk/4/base 2025-07-24T03:47:23.6585480Z * [new branch] gh/dharakk/4/head -> origin/gh/dharakk/4/head 2025-07-24T03:47:23.6585961Z * [new branch] gh/dharakk/4/orig -> origin/gh/dharakk/4/orig 2025-07-24T03:47:23.6586452Z * [new branch] gh/drisspg/136/base -> origin/gh/drisspg/136/base 2025-07-24T03:47:23.6586967Z * [new branch] gh/drisspg/136/head -> origin/gh/drisspg/136/head 2025-07-24T03:47:23.6587464Z * [new branch] gh/drisspg/136/orig -> origin/gh/drisspg/136/orig 2025-07-24T03:47:23.6587984Z * [new branch] gh/drisspg/140/base -> origin/gh/drisspg/140/base 2025-07-24T03:47:23.6588494Z * [new branch] gh/drisspg/140/head -> origin/gh/drisspg/140/head 2025-07-24T03:47:23.6588993Z * [new branch] gh/drisspg/140/orig -> origin/gh/drisspg/140/orig 2025-07-24T03:47:23.6589493Z * [new branch] gh/drisspg/149/base -> origin/gh/drisspg/149/base 2025-07-24T03:47:23.6589987Z * [new branch] gh/drisspg/149/head -> origin/gh/drisspg/149/head 2025-07-24T03:47:23.6590487Z * [new branch] gh/drisspg/149/orig -> origin/gh/drisspg/149/orig 2025-07-24T03:47:23.6590989Z * [new branch] gh/drisspg/150/base -> origin/gh/drisspg/150/base 2025-07-24T03:47:23.6591482Z * [new branch] gh/drisspg/150/head -> origin/gh/drisspg/150/head 2025-07-24T03:47:23.6591981Z * [new branch] gh/drisspg/150/orig -> origin/gh/drisspg/150/orig 2025-07-24T03:47:23.6592477Z * [new branch] gh/drisspg/151/base -> origin/gh/drisspg/151/base 2025-07-24T03:47:23.6592986Z * [new branch] gh/drisspg/151/head -> origin/gh/drisspg/151/head 2025-07-24T03:47:23.6593496Z * [new branch] gh/drisspg/151/orig -> origin/gh/drisspg/151/orig 2025-07-24T03:47:23.6593996Z * [new branch] gh/drisspg/158/base -> origin/gh/drisspg/158/base 2025-07-24T03:47:23.6594496Z * [new branch] gh/drisspg/158/head -> origin/gh/drisspg/158/head 2025-07-24T03:47:23.6594984Z * [new branch] gh/drisspg/158/orig -> origin/gh/drisspg/158/orig 2025-07-24T03:47:23.6595482Z * [new branch] gh/drisspg/159/base -> origin/gh/drisspg/159/base 2025-07-24T03:47:23.6595974Z * [new branch] gh/drisspg/159/head -> origin/gh/drisspg/159/head 2025-07-24T03:47:23.6596472Z * [new branch] gh/drisspg/159/orig -> origin/gh/drisspg/159/orig 2025-07-24T03:47:23.6597202Z * [new branch] gh/drisspg/161/base -> origin/gh/drisspg/161/base 2025-07-24T03:47:23.6597818Z * [new branch] gh/drisspg/161/head -> origin/gh/drisspg/161/head 2025-07-24T03:47:23.6598338Z * [new branch] gh/drisspg/161/orig -> origin/gh/drisspg/161/orig 2025-07-24T03:47:23.6598840Z * [new branch] gh/drisspg/162/base -> origin/gh/drisspg/162/base 2025-07-24T03:47:23.6599350Z * [new branch] gh/drisspg/162/head -> origin/gh/drisspg/162/head 2025-07-24T03:47:23.6599857Z * [new branch] gh/drisspg/162/orig -> origin/gh/drisspg/162/orig 2025-07-24T03:47:23.6600355Z * [new branch] gh/drisspg/163/base -> origin/gh/drisspg/163/base 2025-07-24T03:47:23.6600865Z * [new branch] gh/drisspg/163/head -> origin/gh/drisspg/163/head 2025-07-24T03:47:23.6601366Z * [new branch] gh/drisspg/163/orig -> origin/gh/drisspg/163/orig 2025-07-24T03:47:23.6601970Z * [new branch] gh/drisspg/164/base -> origin/gh/drisspg/164/base 2025-07-24T03:47:23.6602484Z * [new branch] gh/drisspg/164/head -> origin/gh/drisspg/164/head 2025-07-24T03:47:23.6602986Z * [new branch] gh/drisspg/164/orig -> origin/gh/drisspg/164/orig 2025-07-24T03:47:23.6603504Z * [new branch] gh/drisspg/165/base -> origin/gh/drisspg/165/base 2025-07-24T03:47:23.6604004Z * [new branch] gh/drisspg/165/head -> origin/gh/drisspg/165/head 2025-07-24T03:47:23.6604515Z * [new branch] gh/drisspg/165/orig -> origin/gh/drisspg/165/orig 2025-07-24T03:47:23.6605020Z * [new branch] gh/drisspg/166/base -> origin/gh/drisspg/166/base 2025-07-24T03:47:23.6605518Z * [new branch] gh/drisspg/166/head -> origin/gh/drisspg/166/head 2025-07-24T03:47:23.6606025Z * [new branch] gh/drisspg/166/orig -> origin/gh/drisspg/166/orig 2025-07-24T03:47:23.7573847Z * [new branch] gh/drisspg/167/base -> origin/gh/drisspg/167/base 2025-07-24T03:47:23.7574447Z * [new branch] gh/drisspg/167/head -> origin/gh/drisspg/167/head 2025-07-24T03:47:23.7574963Z * [new branch] gh/drisspg/167/orig -> origin/gh/drisspg/167/orig 2025-07-24T03:47:23.7575498Z * [new branch] gh/drisspg/168/base -> origin/gh/drisspg/168/base 2025-07-24T03:47:23.7575998Z * [new branch] gh/drisspg/168/head -> origin/gh/drisspg/168/head 2025-07-24T03:47:23.7576554Z * [new branch] gh/drisspg/168/orig -> origin/gh/drisspg/168/orig 2025-07-24T03:47:23.7577118Z * [new branch] gh/drisspg/169/base -> origin/gh/drisspg/169/base 2025-07-24T03:47:23.7577632Z * [new branch] gh/drisspg/169/head -> origin/gh/drisspg/169/head 2025-07-24T03:47:23.7578138Z * [new branch] gh/drisspg/169/orig -> origin/gh/drisspg/169/orig 2025-07-24T03:47:23.7578637Z * [new branch] gh/drisspg/170/base -> origin/gh/drisspg/170/base 2025-07-24T03:47:23.7579141Z * [new branch] gh/drisspg/170/head -> origin/gh/drisspg/170/head 2025-07-24T03:47:23.7579639Z * [new branch] gh/drisspg/170/orig -> origin/gh/drisspg/170/orig 2025-07-24T03:47:23.7580147Z * [new branch] gh/drisspg/171/base -> origin/gh/drisspg/171/base 2025-07-24T03:47:23.7580643Z * [new branch] gh/drisspg/171/head -> origin/gh/drisspg/171/head 2025-07-24T03:47:23.7581144Z * [new branch] gh/drisspg/171/orig -> origin/gh/drisspg/171/orig 2025-07-24T03:47:23.7581642Z * [new branch] gh/drisspg/172/base -> origin/gh/drisspg/172/base 2025-07-24T03:47:23.7582144Z * [new branch] gh/drisspg/172/head -> origin/gh/drisspg/172/head 2025-07-24T03:47:23.7582900Z * [new branch] gh/drisspg/172/orig -> origin/gh/drisspg/172/orig 2025-07-24T03:47:23.7583599Z * [new branch] gh/drisspg/173/base -> origin/gh/drisspg/173/base 2025-07-24T03:47:23.7584106Z * [new branch] gh/drisspg/173/head -> origin/gh/drisspg/173/head 2025-07-24T03:47:23.7584601Z * [new branch] gh/drisspg/173/orig -> origin/gh/drisspg/173/orig 2025-07-24T03:47:23.7585103Z * [new branch] gh/drisspg/174/base -> origin/gh/drisspg/174/base 2025-07-24T03:47:23.7585599Z * [new branch] gh/drisspg/174/head -> origin/gh/drisspg/174/head 2025-07-24T03:47:23.7586119Z * [new branch] gh/drisspg/174/orig -> origin/gh/drisspg/174/orig 2025-07-24T03:47:23.7586632Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-07-24T03:47:23.7587137Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-07-24T03:47:23.7587648Z * [new branch] gh/eellison/779/base -> origin/gh/eellison/779/base 2025-07-24T03:47:23.7588165Z * [new branch] gh/eellison/779/head -> origin/gh/eellison/779/head 2025-07-24T03:47:23.7588734Z * [new branch] gh/eellison/779/orig -> origin/gh/eellison/779/orig 2025-07-24T03:47:23.7589248Z * [new branch] gh/eellison/781/base -> origin/gh/eellison/781/base 2025-07-24T03:47:23.7589810Z * [new branch] gh/eellison/781/head -> origin/gh/eellison/781/head 2025-07-24T03:47:23.7590322Z * [new branch] gh/eellison/781/orig -> origin/gh/eellison/781/orig 2025-07-24T03:47:23.7590829Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-07-24T03:47:23.7591345Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-07-24T03:47:23.7591859Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-07-24T03:47:23.7592366Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-07-24T03:47:23.7592888Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-07-24T03:47:23.7593390Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-07-24T03:47:23.7593906Z * [new branch] gh/eellison/789/base -> origin/gh/eellison/789/base 2025-07-24T03:47:23.7594412Z * [new branch] gh/eellison/789/head -> origin/gh/eellison/789/head 2025-07-24T03:47:23.7594991Z * [new branch] gh/eellison/789/orig -> origin/gh/eellison/789/orig 2025-07-24T03:47:23.7595557Z * [new branch] gh/eellison/800/base -> origin/gh/eellison/800/base 2025-07-24T03:47:23.7596060Z * [new branch] gh/eellison/800/head -> origin/gh/eellison/800/head 2025-07-24T03:47:23.7596577Z * [new branch] gh/eellison/800/orig -> origin/gh/eellison/800/orig 2025-07-24T03:47:23.7597078Z * [new branch] gh/eellison/801/base -> origin/gh/eellison/801/base 2025-07-24T03:47:23.7597587Z * [new branch] gh/eellison/801/head -> origin/gh/eellison/801/head 2025-07-24T03:47:23.7598098Z * [new branch] gh/eellison/801/orig -> origin/gh/eellison/801/orig 2025-07-24T03:47:23.8184392Z * [new branch] gh/eellison/802/base -> origin/gh/eellison/802/base 2025-07-24T03:47:23.8184977Z * [new branch] gh/eellison/802/head -> origin/gh/eellison/802/head 2025-07-24T03:47:23.8185506Z * [new branch] gh/eellison/802/orig -> origin/gh/eellison/802/orig 2025-07-24T03:47:23.8186018Z * [new branch] gh/eellison/805/base -> origin/gh/eellison/805/base 2025-07-24T03:47:23.8186538Z * [new branch] gh/eellison/805/head -> origin/gh/eellison/805/head 2025-07-24T03:47:23.8187278Z * [new branch] gh/eellison/805/orig -> origin/gh/eellison/805/orig 2025-07-24T03:47:23.8187910Z * [new branch] gh/eellison/808/base -> origin/gh/eellison/808/base 2025-07-24T03:47:23.8188422Z * [new branch] gh/eellison/808/head -> origin/gh/eellison/808/head 2025-07-24T03:47:23.8188935Z * [new branch] gh/eellison/808/orig -> origin/gh/eellison/808/orig 2025-07-24T03:47:23.8189446Z * [new branch] gh/eellison/809/base -> origin/gh/eellison/809/base 2025-07-24T03:47:23.8189953Z * [new branch] gh/eellison/809/head -> origin/gh/eellison/809/head 2025-07-24T03:47:23.8190466Z * [new branch] gh/eellison/809/orig -> origin/gh/eellison/809/orig 2025-07-24T03:47:23.8190952Z * [new branch] gh/etaf/132/base -> origin/gh/etaf/132/base 2025-07-24T03:47:23.8191435Z * [new branch] gh/etaf/132/head -> origin/gh/etaf/132/head 2025-07-24T03:47:23.8191973Z * [new branch] gh/etaf/132/orig -> origin/gh/etaf/132/orig 2025-07-24T03:47:23.8192486Z * [new branch] gh/etaf/138/base -> origin/gh/etaf/138/base 2025-07-24T03:47:23.8193015Z * [new branch] gh/etaf/138/head -> origin/gh/etaf/138/head 2025-07-24T03:47:23.8193475Z * [new branch] gh/etaf/138/orig -> origin/gh/etaf/138/orig 2025-07-24T03:47:23.8193948Z * [new branch] gh/etaf/139/base -> origin/gh/etaf/139/base 2025-07-24T03:47:23.8194417Z * [new branch] gh/etaf/139/head -> origin/gh/etaf/139/head 2025-07-24T03:47:23.8194880Z * [new branch] gh/etaf/139/orig -> origin/gh/etaf/139/orig 2025-07-24T03:47:23.8195347Z * [new branch] gh/etaf/140/base -> origin/gh/etaf/140/base 2025-07-24T03:47:23.8195817Z * [new branch] gh/etaf/140/head -> origin/gh/etaf/140/head 2025-07-24T03:47:23.8196286Z * [new branch] gh/etaf/140/orig -> origin/gh/etaf/140/orig 2025-07-24T03:47:23.8196756Z * [new branch] gh/etaf/141/base -> origin/gh/etaf/141/base 2025-07-24T03:47:23.8197225Z * [new branch] gh/etaf/141/head -> origin/gh/etaf/141/head 2025-07-24T03:47:23.8197695Z * [new branch] gh/etaf/141/orig -> origin/gh/etaf/141/orig 2025-07-24T03:47:23.8198153Z * [new branch] gh/etaf/142/base -> origin/gh/etaf/142/base 2025-07-24T03:47:23.8198634Z * [new branch] gh/etaf/142/head -> origin/gh/etaf/142/head 2025-07-24T03:47:23.8199093Z * [new branch] gh/etaf/143/base -> origin/gh/etaf/143/base 2025-07-24T03:47:23.8199567Z * [new branch] gh/etaf/143/head -> origin/gh/etaf/143/head 2025-07-24T03:47:23.8200054Z * [new branch] gh/etaf/143/orig -> origin/gh/etaf/143/orig 2025-07-24T03:47:23.8200517Z * [new branch] gh/etaf/144/base -> origin/gh/etaf/144/base 2025-07-24T03:47:23.8200988Z * [new branch] gh/etaf/144/head -> origin/gh/etaf/144/head 2025-07-24T03:47:23.8201457Z * [new branch] gh/etaf/144/orig -> origin/gh/etaf/144/orig 2025-07-24T03:47:23.8202016Z * [new branch] gh/etaf/145/base -> origin/gh/etaf/145/base 2025-07-24T03:47:23.8202504Z * [new branch] gh/etaf/145/head -> origin/gh/etaf/145/head 2025-07-24T03:47:23.8202966Z * [new branch] gh/etaf/146/base -> origin/gh/etaf/146/base 2025-07-24T03:47:23.8203446Z * [new branch] gh/etaf/146/head -> origin/gh/etaf/146/head 2025-07-24T03:47:23.8203911Z * [new branch] gh/etaf/147/base -> origin/gh/etaf/147/base 2025-07-24T03:47:23.8204507Z * [new branch] gh/etaf/147/head -> origin/gh/etaf/147/head 2025-07-24T03:47:23.8204990Z * [new branch] gh/etaf/148/base -> origin/gh/etaf/148/base 2025-07-24T03:47:23.8205540Z * [new branch] gh/etaf/148/head -> origin/gh/etaf/148/head 2025-07-24T03:47:23.8206021Z * [new branch] gh/etaf/148/orig -> origin/gh/etaf/148/orig 2025-07-24T03:47:23.8206508Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-07-24T03:47:23.8207016Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-07-24T03:47:23.8207514Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-07-24T03:47:23.8208022Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-07-24T03:47:23.9421848Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-07-24T03:47:23.9422435Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-07-24T03:47:23.9422962Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-07-24T03:47:23.9423485Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-07-24T03:47:23.9423972Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-07-24T03:47:23.9424488Z * [new branch] gh/ezyang/3068/base -> origin/gh/ezyang/3068/base 2025-07-24T03:47:23.9424982Z * [new branch] gh/ezyang/3068/head -> origin/gh/ezyang/3068/head 2025-07-24T03:47:23.9425471Z * [new branch] gh/ezyang/3068/orig -> origin/gh/ezyang/3068/orig 2025-07-24T03:47:23.9425963Z * [new branch] gh/ezyang/3071/base -> origin/gh/ezyang/3071/base 2025-07-24T03:47:23.9426448Z * [new branch] gh/ezyang/3071/head -> origin/gh/ezyang/3071/head 2025-07-24T03:47:23.9426955Z * [new branch] gh/ezyang/3071/orig -> origin/gh/ezyang/3071/orig 2025-07-24T03:47:23.9427452Z * [new branch] gh/ezyang/3074/base -> origin/gh/ezyang/3074/base 2025-07-24T03:47:23.9427941Z * [new branch] gh/ezyang/3074/head -> origin/gh/ezyang/3074/head 2025-07-24T03:47:23.9428445Z * [new branch] gh/ezyang/3074/orig -> origin/gh/ezyang/3074/orig 2025-07-24T03:47:23.9428931Z * [new branch] gh/ezyang/3082/base -> origin/gh/ezyang/3082/base 2025-07-24T03:47:23.9429437Z * [new branch] gh/ezyang/3082/head -> origin/gh/ezyang/3082/head 2025-07-24T03:47:23.9429925Z * [new branch] gh/ezyang/3082/orig -> origin/gh/ezyang/3082/orig 2025-07-24T03:47:23.9430416Z * [new branch] gh/ezyang/3083/base -> origin/gh/ezyang/3083/base 2025-07-24T03:47:23.9430907Z * [new branch] gh/ezyang/3083/head -> origin/gh/ezyang/3083/head 2025-07-24T03:47:23.9431399Z * [new branch] gh/ezyang/3083/orig -> origin/gh/ezyang/3083/orig 2025-07-24T03:47:23.9431898Z * [new branch] gh/ezyang/3084/base -> origin/gh/ezyang/3084/base 2025-07-24T03:47:23.9432380Z * [new branch] gh/ezyang/3084/head -> origin/gh/ezyang/3084/head 2025-07-24T03:47:23.9432875Z * [new branch] gh/ezyang/3084/orig -> origin/gh/ezyang/3084/orig 2025-07-24T03:47:23.9433379Z * [new branch] gh/ezyang/3085/base -> origin/gh/ezyang/3085/base 2025-07-24T03:47:23.9433867Z * [new branch] gh/ezyang/3085/head -> origin/gh/ezyang/3085/head 2025-07-24T03:47:23.9434364Z * [new branch] gh/ezyang/3085/orig -> origin/gh/ezyang/3085/orig 2025-07-24T03:47:23.9434850Z * [new branch] gh/ezyang/3086/base -> origin/gh/ezyang/3086/base 2025-07-24T03:47:23.9435556Z * [new branch] gh/ezyang/3086/head -> origin/gh/ezyang/3086/head 2025-07-24T03:47:23.9436063Z * [new branch] gh/ezyang/3086/orig -> origin/gh/ezyang/3086/orig 2025-07-24T03:47:23.9436689Z * [new branch] gh/ezyang/3087/base -> origin/gh/ezyang/3087/base 2025-07-24T03:47:23.9437193Z * [new branch] gh/ezyang/3087/head -> origin/gh/ezyang/3087/head 2025-07-24T03:47:23.9437709Z * [new branch] gh/ezyang/3087/orig -> origin/gh/ezyang/3087/orig 2025-07-24T03:47:23.9438198Z * [new branch] gh/ezyang/3088/base -> origin/gh/ezyang/3088/base 2025-07-24T03:47:23.9438695Z * [new branch] gh/ezyang/3088/head -> origin/gh/ezyang/3088/head 2025-07-24T03:47:23.9439189Z * [new branch] gh/ezyang/3088/orig -> origin/gh/ezyang/3088/orig 2025-07-24T03:47:23.9439676Z * [new branch] gh/ezyang/3089/base -> origin/gh/ezyang/3089/base 2025-07-24T03:47:23.9440178Z * [new branch] gh/ezyang/3089/head -> origin/gh/ezyang/3089/head 2025-07-24T03:47:23.9440661Z * [new branch] gh/ezyang/3089/orig -> origin/gh/ezyang/3089/orig 2025-07-24T03:47:23.9441156Z * [new branch] gh/ezyang/3090/base -> origin/gh/ezyang/3090/base 2025-07-24T03:47:23.9441644Z * [new branch] gh/ezyang/3090/head -> origin/gh/ezyang/3090/head 2025-07-24T03:47:23.9442254Z * [new branch] gh/ezyang/3090/orig -> origin/gh/ezyang/3090/orig 2025-07-24T03:47:23.9442751Z * [new branch] gh/ezyang/3091/base -> origin/gh/ezyang/3091/base 2025-07-24T03:47:23.9443236Z * [new branch] gh/ezyang/3091/head -> origin/gh/ezyang/3091/head 2025-07-24T03:47:23.9443734Z * [new branch] gh/ezyang/3091/orig -> origin/gh/ezyang/3091/orig 2025-07-24T03:47:23.9444222Z * [new branch] gh/ezyang/3092/base -> origin/gh/ezyang/3092/base 2025-07-24T03:47:23.9444725Z * [new branch] gh/ezyang/3092/head -> origin/gh/ezyang/3092/head 2025-07-24T03:47:23.9445221Z * [new branch] gh/ezyang/3092/orig -> origin/gh/ezyang/3092/orig 2025-07-24T03:47:23.9970620Z * [new branch] gh/ezyang/3093/base -> origin/gh/ezyang/3093/base 2025-07-24T03:47:23.9971219Z * [new branch] gh/ezyang/3093/head -> origin/gh/ezyang/3093/head 2025-07-24T03:47:23.9971733Z * [new branch] gh/ezyang/3093/orig -> origin/gh/ezyang/3093/orig 2025-07-24T03:47:23.9972229Z * [new branch] gh/ezyang/3094/base -> origin/gh/ezyang/3094/base 2025-07-24T03:47:23.9972802Z * [new branch] gh/ezyang/3094/head -> origin/gh/ezyang/3094/head 2025-07-24T03:47:23.9973352Z * [new branch] gh/ezyang/3094/orig -> origin/gh/ezyang/3094/orig 2025-07-24T03:47:23.9973853Z * [new branch] gh/ezyang/3095/base -> origin/gh/ezyang/3095/base 2025-07-24T03:47:23.9974372Z * [new branch] gh/ezyang/3095/head -> origin/gh/ezyang/3095/head 2025-07-24T03:47:23.9974880Z * [new branch] gh/ezyang/3095/orig -> origin/gh/ezyang/3095/orig 2025-07-24T03:47:23.9975376Z * [new branch] gh/ezyang/3096/base -> origin/gh/ezyang/3096/base 2025-07-24T03:47:23.9975861Z * [new branch] gh/ezyang/3096/head -> origin/gh/ezyang/3096/head 2025-07-24T03:47:23.9976359Z * [new branch] gh/ezyang/3096/orig -> origin/gh/ezyang/3096/orig 2025-07-24T03:47:23.9976845Z * [new branch] gh/ezyang/3097/base -> origin/gh/ezyang/3097/base 2025-07-24T03:47:23.9977341Z * [new branch] gh/ezyang/3097/head -> origin/gh/ezyang/3097/head 2025-07-24T03:47:23.9977841Z * [new branch] gh/ezyang/3097/orig -> origin/gh/ezyang/3097/orig 2025-07-24T03:47:23.9978521Z * [new branch] gh/ezyang/3098/base -> origin/gh/ezyang/3098/base 2025-07-24T03:47:23.9979081Z * [new branch] gh/ezyang/3098/head -> origin/gh/ezyang/3098/head 2025-07-24T03:47:23.9979745Z * [new branch] gh/ezyang/3098/orig -> origin/gh/ezyang/3098/orig 2025-07-24T03:47:23.9980246Z * [new branch] gh/ezyang/3099/base -> origin/gh/ezyang/3099/base 2025-07-24T03:47:23.9980742Z * [new branch] gh/ezyang/3099/head -> origin/gh/ezyang/3099/head 2025-07-24T03:47:23.9981226Z * [new branch] gh/ezyang/3099/orig -> origin/gh/ezyang/3099/orig 2025-07-24T03:47:23.9981726Z * [new branch] gh/ezyang/3100/base -> origin/gh/ezyang/3100/base 2025-07-24T03:47:23.9982216Z * [new branch] gh/ezyang/3100/head -> origin/gh/ezyang/3100/head 2025-07-24T03:47:23.9982717Z * [new branch] gh/ezyang/3100/orig -> origin/gh/ezyang/3100/orig 2025-07-24T03:47:23.9983232Z * [new branch] gh/ezyang/3101/base -> origin/gh/ezyang/3101/base 2025-07-24T03:47:23.9983721Z * [new branch] gh/ezyang/3101/head -> origin/gh/ezyang/3101/head 2025-07-24T03:47:23.9984215Z * [new branch] gh/ezyang/3101/orig -> origin/gh/ezyang/3101/orig 2025-07-24T03:47:23.9984706Z * [new branch] gh/ezyang/3102/base -> origin/gh/ezyang/3102/base 2025-07-24T03:47:23.9985268Z * [new branch] gh/ezyang/3102/head -> origin/gh/ezyang/3102/head 2025-07-24T03:47:23.9985819Z * [new branch] gh/ezyang/3102/orig -> origin/gh/ezyang/3102/orig 2025-07-24T03:47:23.9986313Z * [new branch] gh/ezyang/3103/base -> origin/gh/ezyang/3103/base 2025-07-24T03:47:23.9986808Z * [new branch] gh/ezyang/3103/head -> origin/gh/ezyang/3103/head 2025-07-24T03:47:23.9987296Z * [new branch] gh/ezyang/3103/orig -> origin/gh/ezyang/3103/orig 2025-07-24T03:47:23.9987798Z * [new branch] gh/ezyang/3104/base -> origin/gh/ezyang/3104/base 2025-07-24T03:47:24.0003310Z * [new branch] gh/ezyang/3104/head -> origin/gh/ezyang/3104/head 2025-07-24T03:47:24.0004106Z * [new branch] gh/ezyang/3104/orig -> origin/gh/ezyang/3104/orig 2025-07-24T03:47:24.0004627Z * [new branch] gh/ezyang/3105/base -> origin/gh/ezyang/3105/base 2025-07-24T03:47:24.0005139Z * [new branch] gh/ezyang/3105/head -> origin/gh/ezyang/3105/head 2025-07-24T03:47:24.0005646Z * [new branch] gh/ezyang/3105/orig -> origin/gh/ezyang/3105/orig 2025-07-24T03:47:24.0006142Z * [new branch] gh/ezyang/3106/base -> origin/gh/ezyang/3106/base 2025-07-24T03:47:24.0006654Z * [new branch] gh/ezyang/3106/head -> origin/gh/ezyang/3106/head 2025-07-24T03:47:24.0007160Z * [new branch] gh/ezyang/3106/orig -> origin/gh/ezyang/3106/orig 2025-07-24T03:47:24.0007663Z * [new branch] gh/ezyang/3107/base -> origin/gh/ezyang/3107/base 2025-07-24T03:47:24.0008167Z * [new branch] gh/ezyang/3107/head -> origin/gh/ezyang/3107/head 2025-07-24T03:47:24.0008660Z * [new branch] gh/ezyang/3107/orig -> origin/gh/ezyang/3107/orig 2025-07-24T03:47:24.0009169Z * [new branch] gh/ezyang/3108/base -> origin/gh/ezyang/3108/base 2025-07-24T03:47:24.0009723Z * [new branch] gh/ezyang/3108/head -> origin/gh/ezyang/3108/head 2025-07-24T03:47:24.0515643Z * [new branch] gh/ezyang/3108/orig -> origin/gh/ezyang/3108/orig 2025-07-24T03:47:24.0516238Z * [new branch] gh/ezyang/3109/base -> origin/gh/ezyang/3109/base 2025-07-24T03:47:24.0516746Z * [new branch] gh/ezyang/3109/head -> origin/gh/ezyang/3109/head 2025-07-24T03:47:24.0517494Z * [new branch] gh/ezyang/3109/orig -> origin/gh/ezyang/3109/orig 2025-07-24T03:47:24.0518013Z * [new branch] gh/ezyang/3110/base -> origin/gh/ezyang/3110/base 2025-07-24T03:47:24.0518646Z * [new branch] gh/ezyang/3110/head -> origin/gh/ezyang/3110/head 2025-07-24T03:47:24.0519153Z * [new branch] gh/ezyang/3110/orig -> origin/gh/ezyang/3110/orig 2025-07-24T03:47:24.0519648Z * [new branch] gh/ezyang/3111/base -> origin/gh/ezyang/3111/base 2025-07-24T03:47:24.0520158Z * [new branch] gh/ezyang/3111/head -> origin/gh/ezyang/3111/head 2025-07-24T03:47:24.0520756Z * [new branch] gh/ezyang/3111/orig -> origin/gh/ezyang/3111/orig 2025-07-24T03:47:24.0521311Z * [new branch] gh/ezyang/3112/base -> origin/gh/ezyang/3112/base 2025-07-24T03:47:24.0521903Z * [new branch] gh/ezyang/3112/head -> origin/gh/ezyang/3112/head 2025-07-24T03:47:24.0522405Z * [new branch] gh/ezyang/3112/orig -> origin/gh/ezyang/3112/orig 2025-07-24T03:47:24.0522922Z * [new branch] gh/ezyang/3113/base -> origin/gh/ezyang/3113/base 2025-07-24T03:47:24.0523430Z * [new branch] gh/ezyang/3113/head -> origin/gh/ezyang/3113/head 2025-07-24T03:47:24.0523919Z * [new branch] gh/ezyang/3113/orig -> origin/gh/ezyang/3113/orig 2025-07-24T03:47:24.0524427Z * [new branch] gh/ezyang/3114/base -> origin/gh/ezyang/3114/base 2025-07-24T03:47:24.0524920Z * [new branch] gh/ezyang/3114/head -> origin/gh/ezyang/3114/head 2025-07-24T03:47:24.0525416Z * [new branch] gh/ezyang/3114/orig -> origin/gh/ezyang/3114/orig 2025-07-24T03:47:24.0526031Z * [new branch] gh/ezyang/3115/base -> origin/gh/ezyang/3115/base 2025-07-24T03:47:24.0526544Z * [new branch] gh/ezyang/3115/head -> origin/gh/ezyang/3115/head 2025-07-24T03:47:24.0527103Z * [new branch] gh/ezyang/3115/orig -> origin/gh/ezyang/3115/orig 2025-07-24T03:47:24.0527661Z * [new branch] gh/ezyang/3116/base -> origin/gh/ezyang/3116/base 2025-07-24T03:47:24.0528169Z * [new branch] gh/ezyang/3116/head -> origin/gh/ezyang/3116/head 2025-07-24T03:47:24.0528675Z * [new branch] gh/ezyang/3116/orig -> origin/gh/ezyang/3116/orig 2025-07-24T03:47:24.0529173Z * [new branch] gh/fadara01/1/base -> origin/gh/fadara01/1/base 2025-07-24T03:47:24.0529672Z * [new branch] gh/fadara01/1/head -> origin/gh/fadara01/1/head 2025-07-24T03:47:24.0530158Z * [new branch] gh/fadara01/1/orig -> origin/gh/fadara01/1/orig 2025-07-24T03:47:24.0530648Z * [new branch] gh/fduwjj/146/base -> origin/gh/fduwjj/146/base 2025-07-24T03:47:24.0531132Z * [new branch] gh/fduwjj/146/head -> origin/gh/fduwjj/146/head 2025-07-24T03:47:24.0531628Z * [new branch] gh/fduwjj/146/orig -> origin/gh/fduwjj/146/orig 2025-07-24T03:47:24.0532137Z * [new branch] gh/fduwjj/151/base -> origin/gh/fduwjj/151/base 2025-07-24T03:47:24.0532620Z * [new branch] gh/fduwjj/151/head -> origin/gh/fduwjj/151/head 2025-07-24T03:47:24.0533172Z * [new branch] gh/fduwjj/151/orig -> origin/gh/fduwjj/151/orig 2025-07-24T03:47:24.0533702Z * [new branch] gh/fduwjj/152/base -> origin/gh/fduwjj/152/base 2025-07-24T03:47:24.0534194Z * [new branch] gh/fduwjj/152/head -> origin/gh/fduwjj/152/head 2025-07-24T03:47:24.0534692Z * [new branch] gh/fduwjj/152/orig -> origin/gh/fduwjj/152/orig 2025-07-24T03:47:24.0535174Z * [new branch] gh/fduwjj/153/base -> origin/gh/fduwjj/153/base 2025-07-24T03:47:24.0535822Z * [new branch] gh/fduwjj/153/head -> origin/gh/fduwjj/153/head 2025-07-24T03:47:24.0536304Z * [new branch] gh/fduwjj/153/orig -> origin/gh/fduwjj/153/orig 2025-07-24T03:47:24.0536912Z * [new branch] gh/fduwjj/154/base -> origin/gh/fduwjj/154/base 2025-07-24T03:47:24.0537419Z * [new branch] gh/fduwjj/154/head -> origin/gh/fduwjj/154/head 2025-07-24T03:47:24.0537904Z * [new branch] gh/fduwjj/154/orig -> origin/gh/fduwjj/154/orig 2025-07-24T03:47:24.0538405Z * [new branch] gh/fduwjj/155/base -> origin/gh/fduwjj/155/base 2025-07-24T03:47:24.0538945Z * [new branch] gh/fduwjj/155/head -> origin/gh/fduwjj/155/head 2025-07-24T03:47:24.0539495Z * [new branch] gh/fduwjj/155/orig -> origin/gh/fduwjj/155/orig 2025-07-24T03:47:24.0539995Z * [new branch] gh/fduwjj/156/base -> origin/gh/fduwjj/156/base 2025-07-24T03:47:24.0540504Z * [new branch] gh/fduwjj/156/head -> origin/gh/fduwjj/156/head 2025-07-24T03:47:24.1126006Z * [new branch] gh/fduwjj/156/orig -> origin/gh/fduwjj/156/orig 2025-07-24T03:47:24.1126610Z * [new branch] gh/fduwjj/157/base -> origin/gh/fduwjj/157/base 2025-07-24T03:47:24.1127125Z * [new branch] gh/fduwjj/157/head -> origin/gh/fduwjj/157/head 2025-07-24T03:47:24.1127631Z * [new branch] gh/fduwjj/157/orig -> origin/gh/fduwjj/157/orig 2025-07-24T03:47:24.1128126Z * [new branch] gh/fduwjj/158/base -> origin/gh/fduwjj/158/base 2025-07-24T03:47:24.1128622Z * [new branch] gh/fduwjj/158/head -> origin/gh/fduwjj/158/head 2025-07-24T03:47:24.1129115Z * [new branch] gh/fduwjj/158/orig -> origin/gh/fduwjj/158/orig 2025-07-24T03:47:24.1129607Z * [new branch] gh/fduwjj/159/base -> origin/gh/fduwjj/159/base 2025-07-24T03:47:24.1130105Z * [new branch] gh/fduwjj/159/head -> origin/gh/fduwjj/159/head 2025-07-24T03:47:24.1130598Z * [new branch] gh/fduwjj/159/orig -> origin/gh/fduwjj/159/orig 2025-07-24T03:47:24.1131113Z * [new branch] gh/fduwjj/160/base -> origin/gh/fduwjj/160/base 2025-07-24T03:47:24.1131644Z * [new branch] gh/fduwjj/160/head -> origin/gh/fduwjj/160/head 2025-07-24T03:47:24.1132199Z * [new branch] gh/fduwjj/160/orig -> origin/gh/fduwjj/160/orig 2025-07-24T03:47:24.1132688Z * [new branch] gh/fduwjj/161/base -> origin/gh/fduwjj/161/base 2025-07-24T03:47:24.1133167Z * [new branch] gh/fduwjj/161/head -> origin/gh/fduwjj/161/head 2025-07-24T03:47:24.1133650Z * [new branch] gh/fduwjj/161/orig -> origin/gh/fduwjj/161/orig 2025-07-24T03:47:24.1134132Z * [new branch] gh/fduwjj/162/base -> origin/gh/fduwjj/162/base 2025-07-24T03:47:24.1134626Z * [new branch] gh/fduwjj/162/head -> origin/gh/fduwjj/162/head 2025-07-24T03:47:24.1135110Z * [new branch] gh/fduwjj/162/orig -> origin/gh/fduwjj/162/orig 2025-07-24T03:47:24.1135600Z * [new branch] gh/fduwjj/163/base -> origin/gh/fduwjj/163/base 2025-07-24T03:47:24.1136098Z * [new branch] gh/fduwjj/163/head -> origin/gh/fduwjj/163/head 2025-07-24T03:47:24.1136579Z * [new branch] gh/fduwjj/163/orig -> origin/gh/fduwjj/163/orig 2025-07-24T03:47:24.1137074Z * [new branch] gh/fduwjj/164/base -> origin/gh/fduwjj/164/base 2025-07-24T03:47:24.1137603Z * [new branch] gh/fduwjj/164/head -> origin/gh/fduwjj/164/head 2025-07-24T03:47:24.1138093Z * [new branch] gh/fduwjj/164/orig -> origin/gh/fduwjj/164/orig 2025-07-24T03:47:24.1138635Z * [new branch] gh/fduwjj/165/base -> origin/gh/fduwjj/165/base 2025-07-24T03:47:24.1139342Z * [new branch] gh/fduwjj/165/head -> origin/gh/fduwjj/165/head 2025-07-24T03:47:24.1139970Z * [new branch] gh/fduwjj/165/orig -> origin/gh/fduwjj/165/orig 2025-07-24T03:47:24.1140463Z * [new branch] gh/fduwjj/166/base -> origin/gh/fduwjj/166/base 2025-07-24T03:47:24.1140959Z * [new branch] gh/fduwjj/166/head -> origin/gh/fduwjj/166/head 2025-07-24T03:47:24.1141453Z * [new branch] gh/fduwjj/166/orig -> origin/gh/fduwjj/166/orig 2025-07-24T03:47:24.1141938Z * [new branch] gh/fduwjj/167/base -> origin/gh/fduwjj/167/base 2025-07-24T03:47:24.1142442Z * [new branch] gh/fduwjj/167/head -> origin/gh/fduwjj/167/head 2025-07-24T03:47:24.1142922Z * [new branch] gh/fduwjj/167/orig -> origin/gh/fduwjj/167/orig 2025-07-24T03:47:24.1143416Z * [new branch] gh/fduwjj/168/base -> origin/gh/fduwjj/168/base 2025-07-24T03:47:24.1143983Z * [new branch] gh/fduwjj/168/head -> origin/gh/fduwjj/168/head 2025-07-24T03:47:24.1144520Z * [new branch] gh/fduwjj/168/orig -> origin/gh/fduwjj/168/orig 2025-07-24T03:47:24.1145012Z * [new branch] gh/fduwjj/169/base -> origin/gh/fduwjj/169/base 2025-07-24T03:47:24.1145515Z * [new branch] gh/fduwjj/169/head -> origin/gh/fduwjj/169/head 2025-07-24T03:47:24.1146005Z * [new branch] gh/fduwjj/169/orig -> origin/gh/fduwjj/169/orig 2025-07-24T03:47:24.1146485Z * [new branch] gh/fduwjj/170/base -> origin/gh/fduwjj/170/base 2025-07-24T03:47:24.1146972Z * [new branch] gh/fduwjj/170/head -> origin/gh/fduwjj/170/head 2025-07-24T03:47:24.1147458Z * [new branch] gh/fduwjj/170/orig -> origin/gh/fduwjj/170/orig 2025-07-24T03:47:24.1147951Z * [new branch] gh/fduwjj/171/base -> origin/gh/fduwjj/171/base 2025-07-24T03:47:24.1148438Z * [new branch] gh/fduwjj/171/head -> origin/gh/fduwjj/171/head 2025-07-24T03:47:24.1148923Z * [new branch] gh/fduwjj/171/orig -> origin/gh/fduwjj/171/orig 2025-07-24T03:47:24.1149411Z * [new branch] gh/fduwjj/172/base -> origin/gh/fduwjj/172/base 2025-07-24T03:47:24.5607095Z * [new branch] gh/fduwjj/172/head -> origin/gh/fduwjj/172/head 2025-07-24T03:47:24.5607664Z * [new branch] gh/fduwjj/172/orig -> origin/gh/fduwjj/172/orig 2025-07-24T03:47:24.5608172Z * [new branch] gh/fduwjj/173/base -> origin/gh/fduwjj/173/base 2025-07-24T03:47:24.5608674Z * [new branch] gh/fduwjj/173/head -> origin/gh/fduwjj/173/head 2025-07-24T03:47:24.5609163Z * [new branch] gh/fduwjj/173/orig -> origin/gh/fduwjj/173/orig 2025-07-24T03:47:24.5609728Z * [new branch] gh/fduwjj/174/base -> origin/gh/fduwjj/174/base 2025-07-24T03:47:24.5610233Z * [new branch] gh/fduwjj/174/head -> origin/gh/fduwjj/174/head 2025-07-24T03:47:24.5610775Z * [new branch] gh/fduwjj/174/orig -> origin/gh/fduwjj/174/orig 2025-07-24T03:47:24.5611261Z * [new branch] gh/fegin/306/base -> origin/gh/fegin/306/base 2025-07-24T03:47:24.5611744Z * [new branch] gh/fegin/306/head -> origin/gh/fegin/306/head 2025-07-24T03:47:24.5612223Z * [new branch] gh/fegin/306/orig -> origin/gh/fegin/306/orig 2025-07-24T03:47:24.5612702Z * [new branch] gh/fegin/307/base -> origin/gh/fegin/307/base 2025-07-24T03:47:24.5613171Z * [new branch] gh/fegin/307/head -> origin/gh/fegin/307/head 2025-07-24T03:47:24.5613653Z * [new branch] gh/fegin/307/orig -> origin/gh/fegin/307/orig 2025-07-24T03:47:24.5614341Z * [new branch] gh/fffrog/105/base -> origin/gh/fffrog/105/base 2025-07-24T03:47:24.5614832Z * [new branch] gh/fffrog/105/head -> origin/gh/fffrog/105/head 2025-07-24T03:47:24.5615457Z * [new branch] gh/fffrog/105/orig -> origin/gh/fffrog/105/orig 2025-07-24T03:47:24.5615949Z * [new branch] gh/fffrog/106/base -> origin/gh/fffrog/106/base 2025-07-24T03:47:24.5616496Z * [new branch] gh/fffrog/106/head -> origin/gh/fffrog/106/head 2025-07-24T03:47:24.5617026Z * [new branch] gh/fffrog/106/orig -> origin/gh/fffrog/106/orig 2025-07-24T03:47:24.5617522Z * [new branch] gh/fffrog/107/base -> origin/gh/fffrog/107/base 2025-07-24T03:47:24.5618014Z * [new branch] gh/fffrog/107/head -> origin/gh/fffrog/107/head 2025-07-24T03:47:24.5618492Z * [new branch] gh/fffrog/107/orig -> origin/gh/fffrog/107/orig 2025-07-24T03:47:24.5619000Z * [new branch] gh/fffrog/108/base -> origin/gh/fffrog/108/base 2025-07-24T03:47:24.5619482Z * [new branch] gh/fffrog/108/head -> origin/gh/fffrog/108/head 2025-07-24T03:47:24.5619984Z * [new branch] gh/fffrog/108/orig -> origin/gh/fffrog/108/orig 2025-07-24T03:47:24.5620485Z * [new branch] gh/fffrog/109/base -> origin/gh/fffrog/109/base 2025-07-24T03:47:24.5620971Z * [new branch] gh/fffrog/109/head -> origin/gh/fffrog/109/head 2025-07-24T03:47:24.5621465Z * [new branch] gh/fffrog/109/orig -> origin/gh/fffrog/109/orig 2025-07-24T03:47:24.5621953Z * [new branch] gh/fffrog/110/base -> origin/gh/fffrog/110/base 2025-07-24T03:47:24.5622449Z * [new branch] gh/fffrog/110/head -> origin/gh/fffrog/110/head 2025-07-24T03:47:24.5622988Z * [new branch] gh/fffrog/110/orig -> origin/gh/fffrog/110/orig 2025-07-24T03:47:24.5623521Z * [new branch] gh/fffrog/111/base -> origin/gh/fffrog/111/base 2025-07-24T03:47:24.5624017Z * [new branch] gh/fffrog/111/head -> origin/gh/fffrog/111/head 2025-07-24T03:47:24.5624497Z * [new branch] gh/fffrog/111/orig -> origin/gh/fffrog/111/orig 2025-07-24T03:47:24.5624993Z * [new branch] gh/fffrog/112/base -> origin/gh/fffrog/112/base 2025-07-24T03:47:24.5625486Z * [new branch] gh/fffrog/112/head -> origin/gh/fffrog/112/head 2025-07-24T03:47:24.5625966Z * [new branch] gh/fffrog/112/orig -> origin/gh/fffrog/112/orig 2025-07-24T03:47:24.5626460Z * [new branch] gh/fffrog/113/base -> origin/gh/fffrog/113/base 2025-07-24T03:47:24.5626941Z * [new branch] gh/fffrog/113/head -> origin/gh/fffrog/113/head 2025-07-24T03:47:24.5627431Z * [new branch] gh/fffrog/113/orig -> origin/gh/fffrog/113/orig 2025-07-24T03:47:24.5627929Z * [new branch] gh/fffrog/114/base -> origin/gh/fffrog/114/base 2025-07-24T03:47:24.5628412Z * [new branch] gh/fffrog/114/head -> origin/gh/fffrog/114/head 2025-07-24T03:47:24.5628955Z * [new branch] gh/fffrog/114/orig -> origin/gh/fffrog/114/orig 2025-07-24T03:47:24.5629438Z * [new branch] gh/fffrog/115/base -> origin/gh/fffrog/115/base 2025-07-24T03:47:24.5629978Z * [new branch] gh/fffrog/115/head -> origin/gh/fffrog/115/head 2025-07-24T03:47:24.5630459Z * [new branch] gh/fffrog/115/orig -> origin/gh/fffrog/115/orig 2025-07-24T03:47:24.5630952Z * [new branch] gh/fffrog/116/base -> origin/gh/fffrog/116/base 2025-07-24T03:47:24.6173715Z * [new branch] gh/fffrog/116/head -> origin/gh/fffrog/116/head 2025-07-24T03:47:24.6175097Z * [new branch] gh/fffrog/116/orig -> origin/gh/fffrog/116/orig 2025-07-24T03:47:24.6175619Z * [new branch] gh/fffrog/117/base -> origin/gh/fffrog/117/base 2025-07-24T03:47:24.6176319Z * [new branch] gh/fffrog/117/head -> origin/gh/fffrog/117/head 2025-07-24T03:47:24.6176875Z * [new branch] gh/fffrog/117/orig -> origin/gh/fffrog/117/orig 2025-07-24T03:47:24.6177378Z * [new branch] gh/fffrog/118/base -> origin/gh/fffrog/118/base 2025-07-24T03:47:24.6177863Z * [new branch] gh/fffrog/118/head -> origin/gh/fffrog/118/head 2025-07-24T03:47:24.6178356Z * [new branch] gh/fffrog/118/orig -> origin/gh/fffrog/118/orig 2025-07-24T03:47:24.6178870Z * [new branch] gh/fffrog/119/base -> origin/gh/fffrog/119/base 2025-07-24T03:47:24.6179351Z * [new branch] gh/fffrog/119/head -> origin/gh/fffrog/119/head 2025-07-24T03:47:24.6179845Z * [new branch] gh/fffrog/119/orig -> origin/gh/fffrog/119/orig 2025-07-24T03:47:24.6180327Z * [new branch] gh/fffrog/120/base -> origin/gh/fffrog/120/base 2025-07-24T03:47:24.6180825Z * [new branch] gh/fffrog/120/head -> origin/gh/fffrog/120/head 2025-07-24T03:47:24.6181312Z * [new branch] gh/fffrog/120/orig -> origin/gh/fffrog/120/orig 2025-07-24T03:47:24.6181796Z * [new branch] gh/fffrog/121/base -> origin/gh/fffrog/121/base 2025-07-24T03:47:24.6182331Z * [new branch] gh/fffrog/121/head -> origin/gh/fffrog/121/head 2025-07-24T03:47:24.6182856Z * [new branch] gh/fffrog/121/orig -> origin/gh/fffrog/121/orig 2025-07-24T03:47:24.6183349Z * [new branch] gh/fffrog/122/base -> origin/gh/fffrog/122/base 2025-07-24T03:47:24.6183827Z * [new branch] gh/fffrog/122/head -> origin/gh/fffrog/122/head 2025-07-24T03:47:24.6184321Z * [new branch] gh/fffrog/122/orig -> origin/gh/fffrog/122/orig 2025-07-24T03:47:24.6184804Z * [new branch] gh/fffrog/123/base -> origin/gh/fffrog/123/base 2025-07-24T03:47:24.6185289Z * [new branch] gh/fffrog/123/head -> origin/gh/fffrog/123/head 2025-07-24T03:47:24.6185774Z * [new branch] gh/fffrog/123/orig -> origin/gh/fffrog/123/orig 2025-07-24T03:47:24.6186253Z * [new branch] gh/fffrog/124/base -> origin/gh/fffrog/124/base 2025-07-24T03:47:24.6186744Z * [new branch] gh/fffrog/124/head -> origin/gh/fffrog/124/head 2025-07-24T03:47:24.6187225Z * [new branch] gh/fffrog/124/orig -> origin/gh/fffrog/124/orig 2025-07-24T03:47:24.6187709Z * [new branch] gh/fffrog/125/base -> origin/gh/fffrog/125/base 2025-07-24T03:47:24.6188243Z * [new branch] gh/fffrog/125/head -> origin/gh/fffrog/125/head 2025-07-24T03:47:24.6188781Z * [new branch] gh/fffrog/125/orig -> origin/gh/fffrog/125/orig 2025-07-24T03:47:24.6189270Z * [new branch] gh/fffrog/126/base -> origin/gh/fffrog/126/base 2025-07-24T03:47:24.6189771Z * [new branch] gh/fffrog/126/head -> origin/gh/fffrog/126/head 2025-07-24T03:47:24.6190248Z * [new branch] gh/fffrog/126/orig -> origin/gh/fffrog/126/orig 2025-07-24T03:47:24.6190734Z * [new branch] gh/fffrog/127/base -> origin/gh/fffrog/127/base 2025-07-24T03:47:24.6191223Z * [new branch] gh/fffrog/127/head -> origin/gh/fffrog/127/head 2025-07-24T03:47:24.6191710Z * [new branch] gh/fffrog/127/orig -> origin/gh/fffrog/127/orig 2025-07-24T03:47:24.6192188Z * [new branch] gh/fffrog/39/base -> origin/gh/fffrog/39/base 2025-07-24T03:47:24.6192671Z * [new branch] gh/fffrog/39/head -> origin/gh/fffrog/39/head 2025-07-24T03:47:24.6193295Z * [new branch] gh/fffrog/39/orig -> origin/gh/fffrog/39/orig 2025-07-24T03:47:24.6193867Z * [new branch] gh/fffrog/87/base -> origin/gh/fffrog/87/base 2025-07-24T03:47:24.6194406Z * [new branch] gh/fffrog/87/head -> origin/gh/fffrog/87/head 2025-07-24T03:47:24.6194927Z * [new branch] gh/fffrog/87/orig -> origin/gh/fffrog/87/orig 2025-07-24T03:47:24.6195410Z * [new branch] gh/fffrog/93/base -> origin/gh/fffrog/93/base 2025-07-24T03:47:24.6195886Z * [new branch] gh/fffrog/93/head -> origin/gh/fffrog/93/head 2025-07-24T03:47:24.6196364Z * [new branch] gh/fffrog/93/orig -> origin/gh/fffrog/93/orig 2025-07-24T03:47:24.6196865Z * [new branch] gh/gmagogsfm/1/base -> origin/gh/gmagogsfm/1/base 2025-07-24T03:47:24.6197382Z * [new branch] gh/gmagogsfm/1/head -> origin/gh/gmagogsfm/1/head 2025-07-24T03:47:24.6197897Z * [new branch] gh/gmagogsfm/1/orig -> origin/gh/gmagogsfm/1/orig 2025-07-24T03:47:24.6198428Z * [new branch] gh/gmagogsfm/2/base -> origin/gh/gmagogsfm/2/base 2025-07-24T03:47:24.9808743Z * [new branch] gh/gmagogsfm/2/head -> origin/gh/gmagogsfm/2/head 2025-07-24T03:47:24.9809338Z * [new branch] gh/gmagogsfm/2/orig -> origin/gh/gmagogsfm/2/orig 2025-07-24T03:47:24.9809852Z * [new branch] gh/gmagogsfm/3/base -> origin/gh/gmagogsfm/3/base 2025-07-24T03:47:24.9810368Z * [new branch] gh/gmagogsfm/3/head -> origin/gh/gmagogsfm/3/head 2025-07-24T03:47:24.9810869Z * [new branch] gh/gmagogsfm/3/orig -> origin/gh/gmagogsfm/3/orig 2025-07-24T03:47:24.9811383Z * [new branch] gh/gmagogsfm/4/base -> origin/gh/gmagogsfm/4/base 2025-07-24T03:47:24.9811908Z * [new branch] gh/gmagogsfm/4/head -> origin/gh/gmagogsfm/4/head 2025-07-24T03:47:24.9812404Z * [new branch] gh/gmagogsfm/4/orig -> origin/gh/gmagogsfm/4/orig 2025-07-24T03:47:24.9812932Z * [new branch] gh/guangyey/130/base -> origin/gh/guangyey/130/base 2025-07-24T03:47:24.9813439Z * [new branch] gh/guangyey/130/head -> origin/gh/guangyey/130/head 2025-07-24T03:47:24.9813950Z * [new branch] gh/guangyey/130/orig -> origin/gh/guangyey/130/orig 2025-07-24T03:47:24.9814454Z * [new branch] gh/guangyey/133/base -> origin/gh/guangyey/133/base 2025-07-24T03:47:24.9814968Z * [new branch] gh/guangyey/133/head -> origin/gh/guangyey/133/head 2025-07-24T03:47:24.9815481Z * [new branch] gh/guangyey/133/orig -> origin/gh/guangyey/133/orig 2025-07-24T03:47:24.9815981Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-07-24T03:47:24.9816500Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-07-24T03:47:24.9817005Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-07-24T03:47:24.9817520Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-07-24T03:47:24.9818029Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-07-24T03:47:24.9818532Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-07-24T03:47:24.9819041Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-07-24T03:47:24.9819543Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-07-24T03:47:24.9820050Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-07-24T03:47:24.9820558Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-07-24T03:47:24.9821269Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-07-24T03:47:24.9822513Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-07-24T03:47:24.9823038Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-07-24T03:47:24.9823571Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-07-24T03:47:24.9824084Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-07-24T03:47:24.9824588Z * [new branch] gh/guangyey/145/base -> origin/gh/guangyey/145/base 2025-07-24T03:47:24.9825101Z * [new branch] gh/guangyey/145/head -> origin/gh/guangyey/145/head 2025-07-24T03:47:24.9825613Z * [new branch] gh/guangyey/145/orig -> origin/gh/guangyey/145/orig 2025-07-24T03:47:24.9826230Z * [new branch] gh/guangyey/153/base -> origin/gh/guangyey/153/base 2025-07-24T03:47:24.9826799Z * [new branch] gh/guangyey/153/head -> origin/gh/guangyey/153/head 2025-07-24T03:47:24.9827309Z * [new branch] gh/guangyey/153/orig -> origin/gh/guangyey/153/orig 2025-07-24T03:47:24.9827829Z * [new branch] gh/guangyey/154/base -> origin/gh/guangyey/154/base 2025-07-24T03:47:24.9828333Z * [new branch] gh/guangyey/154/head -> origin/gh/guangyey/154/head 2025-07-24T03:47:24.9828844Z * [new branch] gh/guangyey/154/orig -> origin/gh/guangyey/154/orig 2025-07-24T03:47:24.9829357Z * [new branch] gh/guangyey/158/base -> origin/gh/guangyey/158/base 2025-07-24T03:47:24.9829864Z * [new branch] gh/guangyey/158/head -> origin/gh/guangyey/158/head 2025-07-24T03:47:24.9830384Z * [new branch] gh/guangyey/158/orig -> origin/gh/guangyey/158/orig 2025-07-24T03:47:24.9830892Z * [new branch] gh/guangyey/159/base -> origin/gh/guangyey/159/base 2025-07-24T03:47:24.9831411Z * [new branch] gh/guangyey/159/head -> origin/gh/guangyey/159/head 2025-07-24T03:47:24.9831928Z * [new branch] gh/guangyey/159/orig -> origin/gh/guangyey/159/orig 2025-07-24T03:47:24.9832440Z * [new branch] gh/guangyey/160/base -> origin/gh/guangyey/160/base 2025-07-24T03:47:24.9832955Z * [new branch] gh/guangyey/160/head -> origin/gh/guangyey/160/head 2025-07-24T03:47:25.0309176Z * [new branch] gh/guangyey/160/orig -> origin/gh/guangyey/160/orig 2025-07-24T03:47:25.0309723Z * [new branch] gh/guangyey/161/base -> origin/gh/guangyey/161/base 2025-07-24T03:47:25.0310232Z * [new branch] gh/guangyey/161/head -> origin/gh/guangyey/161/head 2025-07-24T03:47:25.0310765Z * [new branch] gh/guangyey/161/orig -> origin/gh/guangyey/161/orig 2025-07-24T03:47:25.0311292Z * [new branch] gh/guangyey/162/base -> origin/gh/guangyey/162/base 2025-07-24T03:47:25.0311813Z * [new branch] gh/guangyey/162/head -> origin/gh/guangyey/162/head 2025-07-24T03:47:25.0312318Z * [new branch] gh/guangyey/162/orig -> origin/gh/guangyey/162/orig 2025-07-24T03:47:25.0312817Z * [new branch] gh/guangyey/163/base -> origin/gh/guangyey/163/base 2025-07-24T03:47:25.0313324Z * [new branch] gh/guangyey/163/head -> origin/gh/guangyey/163/head 2025-07-24T03:47:25.0313824Z * [new branch] gh/guangyey/163/orig -> origin/gh/guangyey/163/orig 2025-07-24T03:47:25.0314331Z * [new branch] gh/guangyey/164/base -> origin/gh/guangyey/164/base 2025-07-24T03:47:25.0314841Z * [new branch] gh/guangyey/164/head -> origin/gh/guangyey/164/head 2025-07-24T03:47:25.0315519Z * [new branch] gh/guangyey/164/orig -> origin/gh/guangyey/164/orig 2025-07-24T03:47:25.0316038Z * [new branch] gh/guangyey/165/base -> origin/gh/guangyey/165/base 2025-07-24T03:47:25.0316661Z * [new branch] gh/guangyey/165/head -> origin/gh/guangyey/165/head 2025-07-24T03:47:25.0317183Z * [new branch] gh/guangyey/165/orig -> origin/gh/guangyey/165/orig 2025-07-24T03:47:25.0317686Z * [new branch] gh/guangyey/166/base -> origin/gh/guangyey/166/base 2025-07-24T03:47:25.0318208Z * [new branch] gh/guangyey/166/head -> origin/gh/guangyey/166/head 2025-07-24T03:47:25.0318715Z * [new branch] gh/guangyey/166/orig -> origin/gh/guangyey/166/orig 2025-07-24T03:47:25.0319224Z * [new branch] gh/guangyey/167/base -> origin/gh/guangyey/167/base 2025-07-24T03:47:25.0319747Z * [new branch] gh/guangyey/167/head -> origin/gh/guangyey/167/head 2025-07-24T03:47:25.0320250Z * [new branch] gh/guangyey/167/orig -> origin/gh/guangyey/167/orig 2025-07-24T03:47:25.0320756Z * [new branch] gh/guangyey/168/base -> origin/gh/guangyey/168/base 2025-07-24T03:47:25.0321263Z * [new branch] gh/guangyey/168/head -> origin/gh/guangyey/168/head 2025-07-24T03:47:25.0321760Z * [new branch] gh/guangyey/168/orig -> origin/gh/guangyey/168/orig 2025-07-24T03:47:25.0322364Z * [new branch] gh/guangyey/169/base -> origin/gh/guangyey/169/base 2025-07-24T03:47:25.0322934Z * [new branch] gh/guangyey/169/head -> origin/gh/guangyey/169/head 2025-07-24T03:47:25.0323494Z * [new branch] gh/guangyey/169/orig -> origin/gh/guangyey/169/orig 2025-07-24T03:47:25.0324055Z * [new branch] gh/guangyey/170/base -> origin/gh/guangyey/170/base 2025-07-24T03:47:25.0324562Z * [new branch] gh/guangyey/170/head -> origin/gh/guangyey/170/head 2025-07-24T03:47:25.0325074Z * [new branch] gh/guangyey/170/orig -> origin/gh/guangyey/170/orig 2025-07-24T03:47:25.0325583Z * [new branch] gh/guangyey/171/base -> origin/gh/guangyey/171/base 2025-07-24T03:47:25.0326103Z * [new branch] gh/guangyey/171/head -> origin/gh/guangyey/171/head 2025-07-24T03:47:25.0326612Z * [new branch] gh/guangyey/171/orig -> origin/gh/guangyey/171/orig 2025-07-24T03:47:25.0327120Z * [new branch] gh/guangyey/172/base -> origin/gh/guangyey/172/base 2025-07-24T03:47:25.0327629Z * [new branch] gh/guangyey/172/head -> origin/gh/guangyey/172/head 2025-07-24T03:47:25.0328131Z * [new branch] gh/guangyey/172/orig -> origin/gh/guangyey/172/orig 2025-07-24T03:47:25.0328645Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-07-24T03:47:25.0329146Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-07-24T03:47:25.0329651Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-07-24T03:47:25.0330155Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-07-24T03:47:25.0330653Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-07-24T03:47:25.0331158Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-07-24T03:47:25.0331714Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-07-24T03:47:25.0332326Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-07-24T03:47:25.0332931Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-07-24T03:47:25.0917994Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-07-24T03:47:25.0918860Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-07-24T03:47:25.0919609Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-07-24T03:47:25.0920224Z * [new branch] gh/guilhermeleobas/120/base -> origin/gh/guilhermeleobas/120/base 2025-07-24T03:47:25.0920826Z * [new branch] gh/guilhermeleobas/120/head -> origin/gh/guilhermeleobas/120/head 2025-07-24T03:47:25.0921422Z * [new branch] gh/guilhermeleobas/120/orig -> origin/gh/guilhermeleobas/120/orig 2025-07-24T03:47:25.0922105Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-07-24T03:47:25.0922698Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-07-24T03:47:25.0923298Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-07-24T03:47:25.0923909Z * [new branch] gh/guilhermeleobas/127/base -> origin/gh/guilhermeleobas/127/base 2025-07-24T03:47:25.0924497Z * [new branch] gh/guilhermeleobas/127/head -> origin/gh/guilhermeleobas/127/head 2025-07-24T03:47:25.0925097Z * [new branch] gh/guilhermeleobas/127/orig -> origin/gh/guilhermeleobas/127/orig 2025-07-24T03:47:25.0925684Z * [new branch] gh/guilhermeleobas/143/base -> origin/gh/guilhermeleobas/143/base 2025-07-24T03:47:25.0926279Z * [new branch] gh/guilhermeleobas/143/head -> origin/gh/guilhermeleobas/143/head 2025-07-24T03:47:25.0926871Z * [new branch] gh/guilhermeleobas/143/orig -> origin/gh/guilhermeleobas/143/orig 2025-07-24T03:47:25.0927459Z * [new branch] gh/guilhermeleobas/145/base -> origin/gh/guilhermeleobas/145/base 2025-07-24T03:47:25.0928080Z * [new branch] gh/guilhermeleobas/145/head -> origin/gh/guilhermeleobas/145/head 2025-07-24T03:47:25.0928680Z * [new branch] gh/guilhermeleobas/145/orig -> origin/gh/guilhermeleobas/145/orig 2025-07-24T03:47:25.0929266Z * [new branch] gh/guilhermeleobas/146/base -> origin/gh/guilhermeleobas/146/base 2025-07-24T03:47:25.0929880Z * [new branch] gh/guilhermeleobas/146/head -> origin/gh/guilhermeleobas/146/head 2025-07-24T03:47:25.0930469Z * [new branch] gh/guilhermeleobas/146/orig -> origin/gh/guilhermeleobas/146/orig 2025-07-24T03:47:25.0931065Z * [new branch] gh/guilhermeleobas/147/base -> origin/gh/guilhermeleobas/147/base 2025-07-24T03:47:25.0931656Z * [new branch] gh/guilhermeleobas/147/head -> origin/gh/guilhermeleobas/147/head 2025-07-24T03:47:25.0932266Z * [new branch] gh/guilhermeleobas/147/orig -> origin/gh/guilhermeleobas/147/orig 2025-07-24T03:47:25.0932865Z * [new branch] gh/guilhermeleobas/148/base -> origin/gh/guilhermeleobas/148/base 2025-07-24T03:47:25.0933451Z * [new branch] gh/guilhermeleobas/148/head -> origin/gh/guilhermeleobas/148/head 2025-07-24T03:47:25.0934054Z * [new branch] gh/guilhermeleobas/148/orig -> origin/gh/guilhermeleobas/148/orig 2025-07-24T03:47:25.0934645Z * [new branch] gh/guilhermeleobas/149/base -> origin/gh/guilhermeleobas/149/base 2025-07-24T03:47:25.0935244Z * [new branch] gh/guilhermeleobas/149/head -> origin/gh/guilhermeleobas/149/head 2025-07-24T03:47:25.0935842Z * [new branch] gh/guilhermeleobas/149/orig -> origin/gh/guilhermeleobas/149/orig 2025-07-24T03:47:25.0936430Z * [new branch] gh/guilhermeleobas/150/base -> origin/gh/guilhermeleobas/150/base 2025-07-24T03:47:25.0937029Z * [new branch] gh/guilhermeleobas/150/head -> origin/gh/guilhermeleobas/150/head 2025-07-24T03:47:25.0937625Z * [new branch] gh/guilhermeleobas/150/orig -> origin/gh/guilhermeleobas/150/orig 2025-07-24T03:47:25.0938225Z * [new branch] gh/guilhermeleobas/151/base -> origin/gh/guilhermeleobas/151/base 2025-07-24T03:47:25.0938952Z * [new branch] gh/guilhermeleobas/151/head -> origin/gh/guilhermeleobas/151/head 2025-07-24T03:47:25.0939643Z * [new branch] gh/guilhermeleobas/151/orig -> origin/gh/guilhermeleobas/151/orig 2025-07-24T03:47:25.0940256Z * [new branch] gh/guilhermeleobas/152/base -> origin/gh/guilhermeleobas/152/base 2025-07-24T03:47:25.0940851Z * [new branch] gh/guilhermeleobas/152/head -> origin/gh/guilhermeleobas/152/head 2025-07-24T03:47:25.0941458Z * [new branch] gh/guilhermeleobas/152/orig -> origin/gh/guilhermeleobas/152/orig 2025-07-24T03:47:25.0942066Z * [new branch] gh/guilhermeleobas/153/base -> origin/gh/guilhermeleobas/153/base 2025-07-24T03:47:25.0942664Z * [new branch] gh/guilhermeleobas/153/head -> origin/gh/guilhermeleobas/153/head 2025-07-24T03:47:25.0943270Z * [new branch] gh/guilhermeleobas/153/orig -> origin/gh/guilhermeleobas/153/orig 2025-07-24T03:47:25.0943876Z * [new branch] gh/guilhermeleobas/154/base -> origin/gh/guilhermeleobas/154/base 2025-07-24T03:47:25.0944491Z * [new branch] gh/guilhermeleobas/154/head -> origin/gh/guilhermeleobas/154/head 2025-07-24T03:47:25.1424230Z * [new branch] gh/guilhermeleobas/154/orig -> origin/gh/guilhermeleobas/154/orig 2025-07-24T03:47:25.1424892Z * [new branch] gh/guilhermeleobas/155/base -> origin/gh/guilhermeleobas/155/base 2025-07-24T03:47:25.1425503Z * [new branch] gh/guilhermeleobas/155/head -> origin/gh/guilhermeleobas/155/head 2025-07-24T03:47:25.1426111Z * [new branch] gh/guilhermeleobas/155/orig -> origin/gh/guilhermeleobas/155/orig 2025-07-24T03:47:25.1426712Z * [new branch] gh/guilhermeleobas/156/base -> origin/gh/guilhermeleobas/156/base 2025-07-24T03:47:25.1427308Z * [new branch] gh/guilhermeleobas/156/head -> origin/gh/guilhermeleobas/156/head 2025-07-24T03:47:25.1427911Z * [new branch] gh/guilhermeleobas/156/orig -> origin/gh/guilhermeleobas/156/orig 2025-07-24T03:47:25.1428509Z * [new branch] gh/guilhermeleobas/157/base -> origin/gh/guilhermeleobas/157/base 2025-07-24T03:47:25.1429131Z * [new branch] gh/guilhermeleobas/157/head -> origin/gh/guilhermeleobas/157/head 2025-07-24T03:47:25.1429719Z * [new branch] gh/guilhermeleobas/157/orig -> origin/gh/guilhermeleobas/157/orig 2025-07-24T03:47:25.1430317Z * [new branch] gh/guilhermeleobas/158/base -> origin/gh/guilhermeleobas/158/base 2025-07-24T03:47:25.1430915Z * [new branch] gh/guilhermeleobas/158/head -> origin/gh/guilhermeleobas/158/head 2025-07-24T03:47:25.1431501Z * [new branch] gh/guilhermeleobas/158/orig -> origin/gh/guilhermeleobas/158/orig 2025-07-24T03:47:25.1432091Z * [new branch] gh/guilhermeleobas/159/base -> origin/gh/guilhermeleobas/159/base 2025-07-24T03:47:25.1432682Z * [new branch] gh/guilhermeleobas/159/head -> origin/gh/guilhermeleobas/159/head 2025-07-24T03:47:25.1433284Z * [new branch] gh/guilhermeleobas/159/orig -> origin/gh/guilhermeleobas/159/orig 2025-07-24T03:47:25.1433885Z * [new branch] gh/guilhermeleobas/160/base -> origin/gh/guilhermeleobas/160/base 2025-07-24T03:47:25.1434471Z * [new branch] gh/guilhermeleobas/160/head -> origin/gh/guilhermeleobas/160/head 2025-07-24T03:47:25.1435070Z * [new branch] gh/guilhermeleobas/160/orig -> origin/gh/guilhermeleobas/160/orig 2025-07-24T03:47:25.1435656Z * [new branch] gh/guilhermeleobas/161/base -> origin/gh/guilhermeleobas/161/base 2025-07-24T03:47:25.1436247Z * [new branch] gh/guilhermeleobas/161/head -> origin/gh/guilhermeleobas/161/head 2025-07-24T03:47:25.1436842Z * [new branch] gh/guilhermeleobas/161/orig -> origin/gh/guilhermeleobas/161/orig 2025-07-24T03:47:25.1437443Z * [new branch] gh/guilhermeleobas/162/base -> origin/gh/guilhermeleobas/162/base 2025-07-24T03:47:25.1438243Z * [new branch] gh/guilhermeleobas/162/head -> origin/gh/guilhermeleobas/162/head 2025-07-24T03:47:25.1438939Z * [new branch] gh/guilhermeleobas/162/orig -> origin/gh/guilhermeleobas/162/orig 2025-07-24T03:47:25.1439535Z * [new branch] gh/guilhermeleobas/163/base -> origin/gh/guilhermeleobas/163/base 2025-07-24T03:47:25.1440141Z * [new branch] gh/guilhermeleobas/163/head -> origin/gh/guilhermeleobas/163/head 2025-07-24T03:47:25.1440739Z * [new branch] gh/guilhermeleobas/163/orig -> origin/gh/guilhermeleobas/163/orig 2025-07-24T03:47:25.1441343Z * [new branch] gh/guilhermeleobas/164/base -> origin/gh/guilhermeleobas/164/base 2025-07-24T03:47:25.1442020Z * [new branch] gh/guilhermeleobas/164/head -> origin/gh/guilhermeleobas/164/head 2025-07-24T03:47:25.1442634Z * [new branch] gh/guilhermeleobas/164/orig -> origin/gh/guilhermeleobas/164/orig 2025-07-24T03:47:25.1443236Z * [new branch] gh/guilhermeleobas/165/base -> origin/gh/guilhermeleobas/165/base 2025-07-24T03:47:25.1443833Z * [new branch] gh/guilhermeleobas/165/head -> origin/gh/guilhermeleobas/165/head 2025-07-24T03:47:25.1444443Z * [new branch] gh/guilhermeleobas/165/orig -> origin/gh/guilhermeleobas/165/orig 2025-07-24T03:47:25.1445031Z * [new branch] gh/guilhermeleobas/166/base -> origin/gh/guilhermeleobas/166/base 2025-07-24T03:47:25.1445642Z * [new branch] gh/guilhermeleobas/166/head -> origin/gh/guilhermeleobas/166/head 2025-07-24T03:47:25.1446246Z * [new branch] gh/guilhermeleobas/166/orig -> origin/gh/guilhermeleobas/166/orig 2025-07-24T03:47:25.1446832Z * [new branch] gh/guilhermeleobas/167/base -> origin/gh/guilhermeleobas/167/base 2025-07-24T03:47:25.1447429Z * [new branch] gh/guilhermeleobas/167/head -> origin/gh/guilhermeleobas/167/head 2025-07-24T03:47:25.1448028Z * [new branch] gh/guilhermeleobas/167/orig -> origin/gh/guilhermeleobas/167/orig 2025-07-24T03:47:25.1448638Z * [new branch] gh/guilhermeleobas/168/base -> origin/gh/guilhermeleobas/168/base 2025-07-24T03:47:25.1449236Z * [new branch] gh/guilhermeleobas/168/head -> origin/gh/guilhermeleobas/168/head 2025-07-24T03:47:25.1449824Z * [new branch] gh/guilhermeleobas/168/orig -> origin/gh/guilhermeleobas/168/orig 2025-07-24T03:47:25.1932528Z * [new branch] gh/guilhermeleobas/169/base -> origin/gh/guilhermeleobas/169/base 2025-07-24T03:47:25.1933169Z * [new branch] gh/guilhermeleobas/169/head -> origin/gh/guilhermeleobas/169/head 2025-07-24T03:47:25.1933783Z * [new branch] gh/guilhermeleobas/169/orig -> origin/gh/guilhermeleobas/169/orig 2025-07-24T03:47:25.1934384Z * [new branch] gh/guilhermeleobas/170/base -> origin/gh/guilhermeleobas/170/base 2025-07-24T03:47:25.1934998Z * [new branch] gh/guilhermeleobas/170/head -> origin/gh/guilhermeleobas/170/head 2025-07-24T03:47:25.1935673Z * [new branch] gh/guilhermeleobas/170/orig -> origin/gh/guilhermeleobas/170/orig 2025-07-24T03:47:25.1936338Z * [new branch] gh/guilhermeleobas/171/base -> origin/gh/guilhermeleobas/171/base 2025-07-24T03:47:25.1936938Z * [new branch] gh/guilhermeleobas/171/head -> origin/gh/guilhermeleobas/171/head 2025-07-24T03:47:25.1937532Z * [new branch] gh/guilhermeleobas/171/orig -> origin/gh/guilhermeleobas/171/orig 2025-07-24T03:47:25.1938121Z * [new branch] gh/guilhermeleobas/173/base -> origin/gh/guilhermeleobas/173/base 2025-07-24T03:47:25.1938716Z * [new branch] gh/guilhermeleobas/173/head -> origin/gh/guilhermeleobas/173/head 2025-07-24T03:47:25.1939303Z * [new branch] gh/guilhermeleobas/173/orig -> origin/gh/guilhermeleobas/173/orig 2025-07-24T03:47:25.1940090Z * [new branch] gh/guilhermeleobas/174/base -> origin/gh/guilhermeleobas/174/base 2025-07-24T03:47:25.1940697Z * [new branch] gh/guilhermeleobas/174/head -> origin/gh/guilhermeleobas/174/head 2025-07-24T03:47:25.1941472Z * [new branch] gh/guilhermeleobas/174/orig -> origin/gh/guilhermeleobas/174/orig 2025-07-24T03:47:25.1942135Z * [new branch] gh/guilhermeleobas/175/base -> origin/gh/guilhermeleobas/175/base 2025-07-24T03:47:25.1942743Z * [new branch] gh/guilhermeleobas/175/head -> origin/gh/guilhermeleobas/175/head 2025-07-24T03:47:25.1943338Z * [new branch] gh/guilhermeleobas/175/orig -> origin/gh/guilhermeleobas/175/orig 2025-07-24T03:47:25.1943932Z * [new branch] gh/guilhermeleobas/176/base -> origin/gh/guilhermeleobas/176/base 2025-07-24T03:47:25.1944517Z * [new branch] gh/guilhermeleobas/176/head -> origin/gh/guilhermeleobas/176/head 2025-07-24T03:47:25.1945109Z * [new branch] gh/guilhermeleobas/176/orig -> origin/gh/guilhermeleobas/176/orig 2025-07-24T03:47:25.1945702Z * [new branch] gh/guilhermeleobas/177/base -> origin/gh/guilhermeleobas/177/base 2025-07-24T03:47:25.1946296Z * [new branch] gh/guilhermeleobas/177/head -> origin/gh/guilhermeleobas/177/head 2025-07-24T03:47:25.1946895Z * [new branch] gh/guilhermeleobas/177/orig -> origin/gh/guilhermeleobas/177/orig 2025-07-24T03:47:25.1947540Z * [new branch] gh/guilhermeleobas/178/base -> origin/gh/guilhermeleobas/178/base 2025-07-24T03:47:25.1948203Z * [new branch] gh/guilhermeleobas/178/head -> origin/gh/guilhermeleobas/178/head 2025-07-24T03:47:25.1948796Z * [new branch] gh/guilhermeleobas/178/orig -> origin/gh/guilhermeleobas/178/orig 2025-07-24T03:47:25.1949397Z * [new branch] gh/guilhermeleobas/179/base -> origin/gh/guilhermeleobas/179/base 2025-07-24T03:47:25.1949998Z * [new branch] gh/guilhermeleobas/179/head -> origin/gh/guilhermeleobas/179/head 2025-07-24T03:47:25.1950591Z * [new branch] gh/guilhermeleobas/179/orig -> origin/gh/guilhermeleobas/179/orig 2025-07-24T03:47:25.1951187Z * [new branch] gh/guilhermeleobas/180/base -> origin/gh/guilhermeleobas/180/base 2025-07-24T03:47:25.1951775Z * [new branch] gh/guilhermeleobas/180/head -> origin/gh/guilhermeleobas/180/head 2025-07-24T03:47:25.1952374Z * [new branch] gh/guilhermeleobas/180/orig -> origin/gh/guilhermeleobas/180/orig 2025-07-24T03:47:25.1952972Z * [new branch] gh/guilhermeleobas/181/base -> origin/gh/guilhermeleobas/181/base 2025-07-24T03:47:25.1953620Z * [new branch] gh/guilhermeleobas/181/head -> origin/gh/guilhermeleobas/181/head 2025-07-24T03:47:25.1954273Z * [new branch] gh/guilhermeleobas/181/orig -> origin/gh/guilhermeleobas/181/orig 2025-07-24T03:47:25.1954863Z * [new branch] gh/guilhermeleobas/182/base -> origin/gh/guilhermeleobas/182/base 2025-07-24T03:47:25.1955475Z * [new branch] gh/guilhermeleobas/182/head -> origin/gh/guilhermeleobas/182/head 2025-07-24T03:47:25.1956077Z * [new branch] gh/guilhermeleobas/182/orig -> origin/gh/guilhermeleobas/182/orig 2025-07-24T03:47:25.1956664Z * [new branch] gh/guilhermeleobas/183/base -> origin/gh/guilhermeleobas/183/base 2025-07-24T03:47:25.1957260Z * [new branch] gh/guilhermeleobas/183/head -> origin/gh/guilhermeleobas/183/head 2025-07-24T03:47:25.1957849Z * [new branch] gh/guilhermeleobas/183/orig -> origin/gh/guilhermeleobas/183/orig 2025-07-24T03:47:25.1958449Z * [new branch] gh/guilhermeleobas/184/base -> origin/gh/guilhermeleobas/184/base 2025-07-24T03:47:25.3907137Z * [new branch] gh/guilhermeleobas/184/head -> origin/gh/guilhermeleobas/184/head 2025-07-24T03:47:25.3907812Z * [new branch] gh/guilhermeleobas/184/orig -> origin/gh/guilhermeleobas/184/orig 2025-07-24T03:47:25.3908635Z * [new branch] gh/guilhermeleobas/185/base -> origin/gh/guilhermeleobas/185/base 2025-07-24T03:47:25.3909251Z * [new branch] gh/guilhermeleobas/185/head -> origin/gh/guilhermeleobas/185/head 2025-07-24T03:47:25.3909994Z * [new branch] gh/guilhermeleobas/185/orig -> origin/gh/guilhermeleobas/185/orig 2025-07-24T03:47:25.3910602Z * [new branch] gh/guilhermeleobas/186/base -> origin/gh/guilhermeleobas/186/base 2025-07-24T03:47:25.3911212Z * [new branch] gh/guilhermeleobas/186/head -> origin/gh/guilhermeleobas/186/head 2025-07-24T03:47:25.3911809Z * [new branch] gh/guilhermeleobas/186/orig -> origin/gh/guilhermeleobas/186/orig 2025-07-24T03:47:25.3912406Z * [new branch] gh/guilhermeleobas/187/base -> origin/gh/guilhermeleobas/187/base 2025-07-24T03:47:25.3913008Z * [new branch] gh/guilhermeleobas/187/head -> origin/gh/guilhermeleobas/187/head 2025-07-24T03:47:25.3913606Z * [new branch] gh/guilhermeleobas/187/orig -> origin/gh/guilhermeleobas/187/orig 2025-07-24T03:47:25.3914198Z * [new branch] gh/guilhermeleobas/188/base -> origin/gh/guilhermeleobas/188/base 2025-07-24T03:47:25.3914788Z * [new branch] gh/guilhermeleobas/188/head -> origin/gh/guilhermeleobas/188/head 2025-07-24T03:47:25.3915389Z * [new branch] gh/guilhermeleobas/188/orig -> origin/gh/guilhermeleobas/188/orig 2025-07-24T03:47:25.3915978Z * [new branch] gh/guilhermeleobas/189/base -> origin/gh/guilhermeleobas/189/base 2025-07-24T03:47:25.3916562Z * [new branch] gh/guilhermeleobas/189/head -> origin/gh/guilhermeleobas/189/head 2025-07-24T03:47:25.3917156Z * [new branch] gh/guilhermeleobas/189/orig -> origin/gh/guilhermeleobas/189/orig 2025-07-24T03:47:25.3917741Z * [new branch] gh/guilhermeleobas/190/base -> origin/gh/guilhermeleobas/190/base 2025-07-24T03:47:25.3918339Z * [new branch] gh/guilhermeleobas/190/head -> origin/gh/guilhermeleobas/190/head 2025-07-24T03:47:25.3918934Z * [new branch] gh/guilhermeleobas/190/orig -> origin/gh/guilhermeleobas/190/orig 2025-07-24T03:47:25.3919523Z * [new branch] gh/guilhermeleobas/191/base -> origin/gh/guilhermeleobas/191/base 2025-07-24T03:47:25.3920119Z * [new branch] gh/guilhermeleobas/191/head -> origin/gh/guilhermeleobas/191/head 2025-07-24T03:47:25.3920714Z * [new branch] gh/guilhermeleobas/191/orig -> origin/gh/guilhermeleobas/191/orig 2025-07-24T03:47:25.3921318Z * [new branch] gh/guilhermeleobas/192/base -> origin/gh/guilhermeleobas/192/base 2025-07-24T03:47:25.3921981Z * [new branch] gh/guilhermeleobas/192/head -> origin/gh/guilhermeleobas/192/head 2025-07-24T03:47:25.3922612Z * [new branch] gh/guilhermeleobas/192/orig -> origin/gh/guilhermeleobas/192/orig 2025-07-24T03:47:25.3923216Z * [new branch] gh/guilhermeleobas/193/base -> origin/gh/guilhermeleobas/193/base 2025-07-24T03:47:25.3923827Z * [new branch] gh/guilhermeleobas/193/head -> origin/gh/guilhermeleobas/193/head 2025-07-24T03:47:25.3924432Z * [new branch] gh/guilhermeleobas/193/orig -> origin/gh/guilhermeleobas/193/orig 2025-07-24T03:47:25.3925026Z * [new branch] gh/guilhermeleobas/194/base -> origin/gh/guilhermeleobas/194/base 2025-07-24T03:47:25.3925610Z * [new branch] gh/guilhermeleobas/194/head -> origin/gh/guilhermeleobas/194/head 2025-07-24T03:47:25.3926208Z * [new branch] gh/guilhermeleobas/194/orig -> origin/gh/guilhermeleobas/194/orig 2025-07-24T03:47:25.3926801Z * [new branch] gh/guilhermeleobas/195/base -> origin/gh/guilhermeleobas/195/base 2025-07-24T03:47:25.3927402Z * [new branch] gh/guilhermeleobas/195/head -> origin/gh/guilhermeleobas/195/head 2025-07-24T03:47:25.3928012Z * [new branch] gh/guilhermeleobas/195/orig -> origin/gh/guilhermeleobas/195/orig 2025-07-24T03:47:25.3928712Z * [new branch] gh/guilhermeleobas/196/base -> origin/gh/guilhermeleobas/196/base 2025-07-24T03:47:25.3929406Z * [new branch] gh/guilhermeleobas/196/head -> origin/gh/guilhermeleobas/196/head 2025-07-24T03:47:25.3930008Z * [new branch] gh/guilhermeleobas/196/orig -> origin/gh/guilhermeleobas/196/orig 2025-07-24T03:47:25.3930615Z * [new branch] gh/guilhermeleobas/197/base -> origin/gh/guilhermeleobas/197/base 2025-07-24T03:47:25.3931210Z * [new branch] gh/guilhermeleobas/197/head -> origin/gh/guilhermeleobas/197/head 2025-07-24T03:47:25.3931814Z * [new branch] gh/guilhermeleobas/197/orig -> origin/gh/guilhermeleobas/197/orig 2025-07-24T03:47:25.3932418Z * [new branch] gh/guilhermeleobas/198/base -> origin/gh/guilhermeleobas/198/base 2025-07-24T03:47:25.3933009Z * [new branch] gh/guilhermeleobas/198/head -> origin/gh/guilhermeleobas/198/head 2025-07-24T03:47:25.4429365Z * [new branch] gh/guilhermeleobas/198/orig -> origin/gh/guilhermeleobas/198/orig 2025-07-24T03:47:25.4429995Z * [new branch] gh/guilhermeleobas/199/base -> origin/gh/guilhermeleobas/199/base 2025-07-24T03:47:25.4430600Z * [new branch] gh/guilhermeleobas/199/head -> origin/gh/guilhermeleobas/199/head 2025-07-24T03:47:25.4431207Z * [new branch] gh/guilhermeleobas/199/orig -> origin/gh/guilhermeleobas/199/orig 2025-07-24T03:47:25.4431800Z * [new branch] gh/guilhermeleobas/200/base -> origin/gh/guilhermeleobas/200/base 2025-07-24T03:47:25.4432395Z * [new branch] gh/guilhermeleobas/200/head -> origin/gh/guilhermeleobas/200/head 2025-07-24T03:47:25.4432993Z * [new branch] gh/guilhermeleobas/200/orig -> origin/gh/guilhermeleobas/200/orig 2025-07-24T03:47:25.4433587Z * [new branch] gh/guilhermeleobas/201/base -> origin/gh/guilhermeleobas/201/base 2025-07-24T03:47:25.4434198Z * [new branch] gh/guilhermeleobas/201/head -> origin/gh/guilhermeleobas/201/head 2025-07-24T03:47:25.4434790Z * [new branch] gh/guilhermeleobas/201/orig -> origin/gh/guilhermeleobas/201/orig 2025-07-24T03:47:25.4435395Z * [new branch] gh/guilhermeleobas/202/base -> origin/gh/guilhermeleobas/202/base 2025-07-24T03:47:25.4435988Z * [new branch] gh/guilhermeleobas/202/head -> origin/gh/guilhermeleobas/202/head 2025-07-24T03:47:25.4436583Z * [new branch] gh/guilhermeleobas/202/orig -> origin/gh/guilhermeleobas/202/orig 2025-07-24T03:47:25.4437178Z * [new branch] gh/guilhermeleobas/203/base -> origin/gh/guilhermeleobas/203/base 2025-07-24T03:47:25.4437765Z * [new branch] gh/guilhermeleobas/203/head -> origin/gh/guilhermeleobas/203/head 2025-07-24T03:47:25.4438358Z * [new branch] gh/guilhermeleobas/203/orig -> origin/gh/guilhermeleobas/203/orig 2025-07-24T03:47:25.4438961Z * [new branch] gh/guilhermeleobas/204/base -> origin/gh/guilhermeleobas/204/base 2025-07-24T03:47:25.4439545Z * [new branch] gh/guilhermeleobas/204/head -> origin/gh/guilhermeleobas/204/head 2025-07-24T03:47:25.4440150Z * [new branch] gh/guilhermeleobas/204/orig -> origin/gh/guilhermeleobas/204/orig 2025-07-24T03:47:25.4440737Z * [new branch] gh/guilhermeleobas/205/base -> origin/gh/guilhermeleobas/205/base 2025-07-24T03:47:25.4441335Z * [new branch] gh/guilhermeleobas/205/head -> origin/gh/guilhermeleobas/205/head 2025-07-24T03:47:25.4442014Z * [new branch] gh/guilhermeleobas/205/orig -> origin/gh/guilhermeleobas/205/orig 2025-07-24T03:47:25.4442607Z * [new branch] gh/guilhermeleobas/206/base -> origin/gh/guilhermeleobas/206/base 2025-07-24T03:47:25.4443196Z * [new branch] gh/guilhermeleobas/206/head -> origin/gh/guilhermeleobas/206/head 2025-07-24T03:47:25.4443780Z * [new branch] gh/guilhermeleobas/206/orig -> origin/gh/guilhermeleobas/206/orig 2025-07-24T03:47:25.4444553Z * [new branch] gh/guilhermeleobas/207/base -> origin/gh/guilhermeleobas/207/base 2025-07-24T03:47:25.4445277Z * [new branch] gh/guilhermeleobas/207/head -> origin/gh/guilhermeleobas/207/head 2025-07-24T03:47:25.4445868Z * [new branch] gh/guilhermeleobas/207/orig -> origin/gh/guilhermeleobas/207/orig 2025-07-24T03:47:25.4446463Z * [new branch] gh/guilhermeleobas/208/base -> origin/gh/guilhermeleobas/208/base 2025-07-24T03:47:25.4447055Z * [new branch] gh/guilhermeleobas/208/head -> origin/gh/guilhermeleobas/208/head 2025-07-24T03:47:25.4447661Z * [new branch] gh/guilhermeleobas/208/orig -> origin/gh/guilhermeleobas/208/orig 2025-07-24T03:47:25.4448262Z * [new branch] gh/guilhermeleobas/209/base -> origin/gh/guilhermeleobas/209/base 2025-07-24T03:47:25.4448854Z * [new branch] gh/guilhermeleobas/209/head -> origin/gh/guilhermeleobas/209/head 2025-07-24T03:47:25.4449467Z * [new branch] gh/guilhermeleobas/209/orig -> origin/gh/guilhermeleobas/209/orig 2025-07-24T03:47:25.4450063Z * [new branch] gh/guilhermeleobas/210/base -> origin/gh/guilhermeleobas/210/base 2025-07-24T03:47:25.4450661Z * [new branch] gh/guilhermeleobas/210/head -> origin/gh/guilhermeleobas/210/head 2025-07-24T03:47:25.4451260Z * [new branch] gh/guilhermeleobas/210/orig -> origin/gh/guilhermeleobas/210/orig 2025-07-24T03:47:25.4451861Z * [new branch] gh/guilhermeleobas/211/base -> origin/gh/guilhermeleobas/211/base 2025-07-24T03:47:25.4452459Z * [new branch] gh/guilhermeleobas/211/head -> origin/gh/guilhermeleobas/211/head 2025-07-24T03:47:25.4453048Z * [new branch] gh/guilhermeleobas/211/orig -> origin/gh/guilhermeleobas/211/orig 2025-07-24T03:47:25.4453653Z * [new branch] gh/guilhermeleobas/212/base -> origin/gh/guilhermeleobas/212/base 2025-07-24T03:47:25.4454253Z * [new branch] gh/guilhermeleobas/212/head -> origin/gh/guilhermeleobas/212/head 2025-07-24T03:47:25.4454849Z * [new branch] gh/guilhermeleobas/212/orig -> origin/gh/guilhermeleobas/212/orig 2025-07-24T03:47:25.4964326Z * [new branch] gh/guilhermeleobas/213/base -> origin/gh/guilhermeleobas/213/base 2025-07-24T03:47:25.4964943Z * [new branch] gh/guilhermeleobas/213/head -> origin/gh/guilhermeleobas/213/head 2025-07-24T03:47:25.4965552Z * [new branch] gh/guilhermeleobas/213/orig -> origin/gh/guilhermeleobas/213/orig 2025-07-24T03:47:25.4966209Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-07-24T03:47:25.4966851Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-07-24T03:47:25.4967446Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-07-24T03:47:25.4968034Z * [new branch] gh/henrylhtsang/103/base -> origin/gh/henrylhtsang/103/base 2025-07-24T03:47:25.4968607Z * [new branch] gh/henrylhtsang/103/head -> origin/gh/henrylhtsang/103/head 2025-07-24T03:47:25.4969172Z * [new branch] gh/henrylhtsang/103/orig -> origin/gh/henrylhtsang/103/orig 2025-07-24T03:47:25.4969725Z * [new branch] gh/henrylhtsang/104/base -> origin/gh/henrylhtsang/104/base 2025-07-24T03:47:25.4970289Z * [new branch] gh/henrylhtsang/104/head -> origin/gh/henrylhtsang/104/head 2025-07-24T03:47:25.4970837Z * [new branch] gh/henrylhtsang/104/orig -> origin/gh/henrylhtsang/104/orig 2025-07-24T03:47:25.4971403Z * [new branch] gh/henrylhtsang/105/base -> origin/gh/henrylhtsang/105/base 2025-07-24T03:47:25.4971960Z * [new branch] gh/henrylhtsang/105/head -> origin/gh/henrylhtsang/105/head 2025-07-24T03:47:25.4972558Z * [new branch] gh/henrylhtsang/105/orig -> origin/gh/henrylhtsang/105/orig 2025-07-24T03:47:25.4973355Z * [new branch] gh/henrylhtsang/106/base -> origin/gh/henrylhtsang/106/base 2025-07-24T03:47:25.4974018Z * [new branch] gh/henrylhtsang/106/head -> origin/gh/henrylhtsang/106/head 2025-07-24T03:47:25.4974601Z * [new branch] gh/henrylhtsang/106/orig -> origin/gh/henrylhtsang/106/orig 2025-07-24T03:47:25.4975162Z * [new branch] gh/henrylhtsang/107/base -> origin/gh/henrylhtsang/107/base 2025-07-24T03:47:25.4975716Z * [new branch] gh/henrylhtsang/107/head -> origin/gh/henrylhtsang/107/head 2025-07-24T03:47:25.4976277Z * [new branch] gh/henrylhtsang/107/orig -> origin/gh/henrylhtsang/107/orig 2025-07-24T03:47:25.4976846Z * [new branch] gh/henrylhtsang/108/base -> origin/gh/henrylhtsang/108/base 2025-07-24T03:47:25.4977397Z * [new branch] gh/henrylhtsang/108/head -> origin/gh/henrylhtsang/108/head 2025-07-24T03:47:25.4977957Z * [new branch] gh/henrylhtsang/108/orig -> origin/gh/henrylhtsang/108/orig 2025-07-24T03:47:25.4978561Z * [new branch] gh/henrylhtsang/109/base -> origin/gh/henrylhtsang/109/base 2025-07-24T03:47:25.4979174Z * [new branch] gh/henrylhtsang/109/head -> origin/gh/henrylhtsang/109/head 2025-07-24T03:47:25.4979734Z * [new branch] gh/henrylhtsang/109/orig -> origin/gh/henrylhtsang/109/orig 2025-07-24T03:47:25.4980280Z * [new branch] gh/henrylhtsang/110/base -> origin/gh/henrylhtsang/110/base 2025-07-24T03:47:25.4980831Z * [new branch] gh/henrylhtsang/110/head -> origin/gh/henrylhtsang/110/head 2025-07-24T03:47:25.4981382Z * [new branch] gh/henrylhtsang/110/orig -> origin/gh/henrylhtsang/110/orig 2025-07-24T03:47:25.4981933Z * [new branch] gh/henrylhtsang/111/base -> origin/gh/henrylhtsang/111/base 2025-07-24T03:47:25.4982497Z * [new branch] gh/henrylhtsang/111/head -> origin/gh/henrylhtsang/111/head 2025-07-24T03:47:25.4983045Z * [new branch] gh/henrylhtsang/111/orig -> origin/gh/henrylhtsang/111/orig 2025-07-24T03:47:25.4983612Z * [new branch] gh/henrylhtsang/112/base -> origin/gh/henrylhtsang/112/base 2025-07-24T03:47:25.4984172Z * [new branch] gh/henrylhtsang/112/head -> origin/gh/henrylhtsang/112/head 2025-07-24T03:47:25.4984783Z * [new branch] gh/henrylhtsang/112/orig -> origin/gh/henrylhtsang/112/orig 2025-07-24T03:47:25.4985392Z * [new branch] gh/henrylhtsang/113/base -> origin/gh/henrylhtsang/113/base 2025-07-24T03:47:25.4985941Z * [new branch] gh/henrylhtsang/113/head -> origin/gh/henrylhtsang/113/head 2025-07-24T03:47:25.4986492Z * [new branch] gh/henrylhtsang/113/orig -> origin/gh/henrylhtsang/113/orig 2025-07-24T03:47:25.4987044Z * [new branch] gh/henrylhtsang/114/base -> origin/gh/henrylhtsang/114/base 2025-07-24T03:47:25.4987618Z * [new branch] gh/henrylhtsang/114/head -> origin/gh/henrylhtsang/114/head 2025-07-24T03:47:25.4988180Z * [new branch] gh/henrylhtsang/114/orig -> origin/gh/henrylhtsang/114/orig 2025-07-24T03:47:25.4988738Z * [new branch] gh/henrylhtsang/115/base -> origin/gh/henrylhtsang/115/base 2025-07-24T03:47:25.4989293Z * [new branch] gh/henrylhtsang/115/head -> origin/gh/henrylhtsang/115/head 2025-07-24T03:47:25.5503647Z * [new branch] gh/henrylhtsang/115/orig -> origin/gh/henrylhtsang/115/orig 2025-07-24T03:47:25.5504245Z * [new branch] gh/henrylhtsang/116/base -> origin/gh/henrylhtsang/116/base 2025-07-24T03:47:25.5504812Z * [new branch] gh/henrylhtsang/116/head -> origin/gh/henrylhtsang/116/head 2025-07-24T03:47:25.5505372Z * [new branch] gh/henrylhtsang/116/orig -> origin/gh/henrylhtsang/116/orig 2025-07-24T03:47:25.5506172Z * [new branch] gh/henrylhtsang/117/base -> origin/gh/henrylhtsang/117/base 2025-07-24T03:47:25.5506788Z * [new branch] gh/henrylhtsang/117/head -> origin/gh/henrylhtsang/117/head 2025-07-24T03:47:25.5507458Z * [new branch] gh/henrylhtsang/117/orig -> origin/gh/henrylhtsang/117/orig 2025-07-24T03:47:25.5508017Z * [new branch] gh/henrylhtsang/118/base -> origin/gh/henrylhtsang/118/base 2025-07-24T03:47:25.5508566Z * [new branch] gh/henrylhtsang/118/head -> origin/gh/henrylhtsang/118/head 2025-07-24T03:47:25.5509125Z * [new branch] gh/henrylhtsang/118/orig -> origin/gh/henrylhtsang/118/orig 2025-07-24T03:47:25.5509676Z * [new branch] gh/henrylhtsang/119/base -> origin/gh/henrylhtsang/119/base 2025-07-24T03:47:25.5510242Z * [new branch] gh/henrylhtsang/119/head -> origin/gh/henrylhtsang/119/head 2025-07-24T03:47:25.5510801Z * [new branch] gh/henrylhtsang/119/orig -> origin/gh/henrylhtsang/119/orig 2025-07-24T03:47:25.5511357Z * [new branch] gh/henrylhtsang/120/base -> origin/gh/henrylhtsang/120/base 2025-07-24T03:47:25.5511918Z * [new branch] gh/henrylhtsang/120/head -> origin/gh/henrylhtsang/120/head 2025-07-24T03:47:25.5512522Z * [new branch] gh/henrylhtsang/120/orig -> origin/gh/henrylhtsang/120/orig 2025-07-24T03:47:25.5513134Z * [new branch] gh/henrylhtsang/121/base -> origin/gh/henrylhtsang/121/base 2025-07-24T03:47:25.5513690Z * [new branch] gh/henrylhtsang/121/head -> origin/gh/henrylhtsang/121/head 2025-07-24T03:47:25.5514236Z * [new branch] gh/henrylhtsang/121/orig -> origin/gh/henrylhtsang/121/orig 2025-07-24T03:47:25.5514795Z * [new branch] gh/henrylhtsang/122/base -> origin/gh/henrylhtsang/122/base 2025-07-24T03:47:25.5515342Z * [new branch] gh/henrylhtsang/122/head -> origin/gh/henrylhtsang/122/head 2025-07-24T03:47:25.5515898Z * [new branch] gh/henrylhtsang/122/orig -> origin/gh/henrylhtsang/122/orig 2025-07-24T03:47:25.5516456Z * [new branch] gh/henrylhtsang/123/base -> origin/gh/henrylhtsang/123/base 2025-07-24T03:47:25.5533045Z * [new branch] gh/henrylhtsang/123/head -> origin/gh/henrylhtsang/123/head 2025-07-24T03:47:25.5533682Z * [new branch] gh/henrylhtsang/123/orig -> origin/gh/henrylhtsang/123/orig 2025-07-24T03:47:25.5534261Z * [new branch] gh/henrylhtsang/124/base -> origin/gh/henrylhtsang/124/base 2025-07-24T03:47:25.5534826Z * [new branch] gh/henrylhtsang/124/head -> origin/gh/henrylhtsang/124/head 2025-07-24T03:47:25.5535381Z * [new branch] gh/henrylhtsang/124/orig -> origin/gh/henrylhtsang/124/orig 2025-07-24T03:47:25.5535945Z * [new branch] gh/henrylhtsang/125/base -> origin/gh/henrylhtsang/125/base 2025-07-24T03:47:25.5536578Z * [new branch] gh/henrylhtsang/125/head -> origin/gh/henrylhtsang/125/head 2025-07-24T03:47:25.5537202Z * [new branch] gh/henrylhtsang/125/orig -> origin/gh/henrylhtsang/125/orig 2025-07-24T03:47:25.5537762Z * [new branch] gh/henrylhtsang/126/base -> origin/gh/henrylhtsang/126/base 2025-07-24T03:47:25.5538328Z * [new branch] gh/henrylhtsang/126/head -> origin/gh/henrylhtsang/126/head 2025-07-24T03:47:25.5538896Z * [new branch] gh/henrylhtsang/126/orig -> origin/gh/henrylhtsang/126/orig 2025-07-24T03:47:25.5539450Z * [new branch] gh/henrylhtsang/127/base -> origin/gh/henrylhtsang/127/base 2025-07-24T03:47:25.5540015Z * [new branch] gh/henrylhtsang/127/head -> origin/gh/henrylhtsang/127/head 2025-07-24T03:47:25.5540565Z * [new branch] gh/henrylhtsang/127/orig -> origin/gh/henrylhtsang/127/orig 2025-07-24T03:47:25.5541128Z * [new branch] gh/henrylhtsang/128/base -> origin/gh/henrylhtsang/128/base 2025-07-24T03:47:25.5541884Z * [new branch] gh/henrylhtsang/128/head -> origin/gh/henrylhtsang/128/head 2025-07-24T03:47:25.5542607Z * [new branch] gh/henrylhtsang/128/orig -> origin/gh/henrylhtsang/128/orig 2025-07-24T03:47:25.5543223Z * [new branch] gh/henrylhtsang/129/base -> origin/gh/henrylhtsang/129/base 2025-07-24T03:47:25.5543777Z * [new branch] gh/henrylhtsang/129/head -> origin/gh/henrylhtsang/129/head 2025-07-24T03:47:25.5544341Z * [new branch] gh/henrylhtsang/129/orig -> origin/gh/henrylhtsang/129/orig 2025-07-24T03:47:25.5544906Z * [new branch] gh/henrylhtsang/98/base -> origin/gh/henrylhtsang/98/base 2025-07-24T03:47:25.5545451Z * [new branch] gh/henrylhtsang/98/head -> origin/gh/henrylhtsang/98/head 2025-07-24T03:47:25.6091338Z * [new branch] gh/henrylhtsang/98/orig -> origin/gh/henrylhtsang/98/orig 2025-07-24T03:47:25.6091948Z * [new branch] gh/huydhn/1/head -> origin/gh/huydhn/1/head 2025-07-24T03:47:25.6092468Z * [new branch] gh/huydhn/1/next -> origin/gh/huydhn/1/next 2025-07-24T03:47:25.6092965Z * [new branch] gh/huydhn/2/head -> origin/gh/huydhn/2/head 2025-07-24T03:47:25.6093439Z * [new branch] gh/huydhn/2/next -> origin/gh/huydhn/2/next 2025-07-24T03:47:25.6093970Z * [new branch] gh/huydhn/2/orig -> origin/gh/huydhn/2/orig 2025-07-24T03:47:25.6094447Z * [new branch] gh/huydhn/3/head -> origin/gh/huydhn/3/head 2025-07-24T03:47:25.6094990Z * [new branch] gh/huydhn/3/next -> origin/gh/huydhn/3/next 2025-07-24T03:47:25.6095469Z * [new branch] gh/huydhn/3/orig -> origin/gh/huydhn/3/orig 2025-07-24T03:47:25.6095940Z * [new branch] gh/huydhn/4/head -> origin/gh/huydhn/4/head 2025-07-24T03:47:25.6096432Z * [new branch] gh/huydhn/4/next -> origin/gh/huydhn/4/next 2025-07-24T03:47:25.6096898Z * [new branch] gh/huydhn/4/orig -> origin/gh/huydhn/4/orig 2025-07-24T03:47:25.6097387Z * [new branch] gh/huydhn/5/head -> origin/gh/huydhn/5/head 2025-07-24T03:47:25.6097864Z * [new branch] gh/huydhn/5/next -> origin/gh/huydhn/5/next 2025-07-24T03:47:25.6098335Z * [new branch] gh/huydhn/5/orig -> origin/gh/huydhn/5/orig 2025-07-24T03:47:25.6098812Z * [new branch] gh/huydhn/6/head -> origin/gh/huydhn/6/head 2025-07-24T03:47:25.6099283Z * [new branch] gh/huydhn/6/next -> origin/gh/huydhn/6/next 2025-07-24T03:47:25.6099756Z * [new branch] gh/huydhn/6/orig -> origin/gh/huydhn/6/orig 2025-07-24T03:47:25.6100283Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-07-24T03:47:25.6100829Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-07-24T03:47:25.6101317Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-07-24T03:47:25.6101815Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-07-24T03:47:25.6102308Z * [new branch] gh/isuruf/105/base -> origin/gh/isuruf/105/base 2025-07-24T03:47:25.6102800Z * [new branch] gh/isuruf/105/head -> origin/gh/isuruf/105/head 2025-07-24T03:47:25.6103302Z * [new branch] gh/isuruf/105/orig -> origin/gh/isuruf/105/orig 2025-07-24T03:47:25.6103794Z * [new branch] gh/isuruf/110/base -> origin/gh/isuruf/110/base 2025-07-24T03:47:25.6104277Z * [new branch] gh/isuruf/110/head -> origin/gh/isuruf/110/head 2025-07-24T03:47:25.6104779Z * [new branch] gh/isuruf/110/orig -> origin/gh/isuruf/110/orig 2025-07-24T03:47:25.6105478Z * [new branch] gh/isuruf/116/base -> origin/gh/isuruf/116/base 2025-07-24T03:47:25.6105983Z * [new branch] gh/isuruf/116/head -> origin/gh/isuruf/116/head 2025-07-24T03:47:25.6106674Z * [new branch] gh/isuruf/116/orig -> origin/gh/isuruf/116/orig 2025-07-24T03:47:25.6107232Z * [new branch] gh/isuruf/141/base -> origin/gh/isuruf/141/base 2025-07-24T03:47:25.6107734Z * [new branch] gh/isuruf/141/head -> origin/gh/isuruf/141/head 2025-07-24T03:47:25.6108217Z * [new branch] gh/isuruf/141/orig -> origin/gh/isuruf/141/orig 2025-07-24T03:47:25.6108730Z * [new branch] gh/isuruf/143/base -> origin/gh/isuruf/143/base 2025-07-24T03:47:25.6109233Z * [new branch] gh/isuruf/143/head -> origin/gh/isuruf/143/head 2025-07-24T03:47:25.6109729Z * [new branch] gh/isuruf/143/orig -> origin/gh/isuruf/143/orig 2025-07-24T03:47:25.6110245Z * [new branch] gh/isuruf/148/base -> origin/gh/isuruf/148/base 2025-07-24T03:47:25.6110741Z * [new branch] gh/isuruf/148/head -> origin/gh/isuruf/148/head 2025-07-24T03:47:25.6111247Z * [new branch] gh/isuruf/148/orig -> origin/gh/isuruf/148/orig 2025-07-24T03:47:25.6111772Z * [new branch] gh/jamesjwu/140/base -> origin/gh/jamesjwu/140/base 2025-07-24T03:47:25.6112344Z * [new branch] gh/jamesjwu/140/head -> origin/gh/jamesjwu/140/head 2025-07-24T03:47:25.6112910Z * [new branch] gh/jamesjwu/140/orig -> origin/gh/jamesjwu/140/orig 2025-07-24T03:47:25.6113424Z * [new branch] gh/jamesjwu/150/base -> origin/gh/jamesjwu/150/base 2025-07-24T03:47:25.6113939Z * [new branch] gh/jamesjwu/150/head -> origin/gh/jamesjwu/150/head 2025-07-24T03:47:25.6114449Z * [new branch] gh/jamesjwu/150/orig -> origin/gh/jamesjwu/150/orig 2025-07-24T03:47:25.6114968Z * [new branch] gh/jamesjwu/154/base -> origin/gh/jamesjwu/154/base 2025-07-24T03:47:25.6115486Z * [new branch] gh/jamesjwu/154/head -> origin/gh/jamesjwu/154/head 2025-07-24T03:47:25.6659553Z * [new branch] gh/jamesjwu/154/orig -> origin/gh/jamesjwu/154/orig 2025-07-24T03:47:25.6660133Z * [new branch] gh/jamesjwu/155/base -> origin/gh/jamesjwu/155/base 2025-07-24T03:47:25.6660661Z * [new branch] gh/jamesjwu/155/head -> origin/gh/jamesjwu/155/head 2025-07-24T03:47:25.6661177Z * [new branch] gh/jamesjwu/155/orig -> origin/gh/jamesjwu/155/orig 2025-07-24T03:47:25.6661692Z * [new branch] gh/jamesjwu/159/base -> origin/gh/jamesjwu/159/base 2025-07-24T03:47:25.6662200Z * [new branch] gh/jamesjwu/159/head -> origin/gh/jamesjwu/159/head 2025-07-24T03:47:25.6662791Z * [new branch] gh/jamesjwu/159/orig -> origin/gh/jamesjwu/159/orig 2025-07-24T03:47:25.6663345Z * [new branch] gh/jamesjwu/163/base -> origin/gh/jamesjwu/163/base 2025-07-24T03:47:25.6663872Z * [new branch] gh/jamesjwu/163/head -> origin/gh/jamesjwu/163/head 2025-07-24T03:47:25.6664377Z * [new branch] gh/jamesjwu/163/orig -> origin/gh/jamesjwu/163/orig 2025-07-24T03:47:25.6664881Z * [new branch] gh/jamesjwu/165/base -> origin/gh/jamesjwu/165/base 2025-07-24T03:47:25.6665400Z * [new branch] gh/jamesjwu/165/head -> origin/gh/jamesjwu/165/head 2025-07-24T03:47:25.6665931Z * [new branch] gh/jamesjwu/165/orig -> origin/gh/jamesjwu/165/orig 2025-07-24T03:47:25.6666433Z * [new branch] gh/jamesjwu/166/base -> origin/gh/jamesjwu/166/base 2025-07-24T03:47:25.6666942Z * [new branch] gh/jamesjwu/166/head -> origin/gh/jamesjwu/166/head 2025-07-24T03:47:25.6667632Z * [new branch] gh/jamesjwu/166/orig -> origin/gh/jamesjwu/166/orig 2025-07-24T03:47:25.6668154Z * [new branch] gh/jamesjwu/167/base -> origin/gh/jamesjwu/167/base 2025-07-24T03:47:25.6668829Z * [new branch] gh/jamesjwu/167/head -> origin/gh/jamesjwu/167/head 2025-07-24T03:47:25.6669390Z * [new branch] gh/jamesjwu/167/orig -> origin/gh/jamesjwu/167/orig 2025-07-24T03:47:25.6669920Z * [new branch] gh/jamesjwu/168/base -> origin/gh/jamesjwu/168/base 2025-07-24T03:47:25.6670428Z * [new branch] gh/jamesjwu/168/head -> origin/gh/jamesjwu/168/head 2025-07-24T03:47:25.6670945Z * [new branch] gh/jamesjwu/168/orig -> origin/gh/jamesjwu/168/orig 2025-07-24T03:47:25.6671443Z * [new branch] gh/jamesjwu/169/base -> origin/gh/jamesjwu/169/base 2025-07-24T03:47:25.6671963Z * [new branch] gh/jamesjwu/169/head -> origin/gh/jamesjwu/169/head 2025-07-24T03:47:25.6672480Z * [new branch] gh/jamesjwu/169/orig -> origin/gh/jamesjwu/169/orig 2025-07-24T03:47:25.6672989Z * [new branch] gh/jamesjwu/170/base -> origin/gh/jamesjwu/170/base 2025-07-24T03:47:25.6673501Z * [new branch] gh/jamesjwu/170/head -> origin/gh/jamesjwu/170/head 2025-07-24T03:47:25.6674004Z * [new branch] gh/jamesjwu/170/orig -> origin/gh/jamesjwu/170/orig 2025-07-24T03:47:25.6674520Z * [new branch] gh/jamesjwu/171/base -> origin/gh/jamesjwu/171/base 2025-07-24T03:47:25.6675088Z * [new branch] gh/jamesjwu/171/head -> origin/gh/jamesjwu/171/head 2025-07-24T03:47:25.6675648Z * [new branch] gh/jamesjwu/171/orig -> origin/gh/jamesjwu/171/orig 2025-07-24T03:47:25.6676147Z * [new branch] gh/jamesjwu/172/base -> origin/gh/jamesjwu/172/base 2025-07-24T03:47:25.6676657Z * [new branch] gh/jamesjwu/172/head -> origin/gh/jamesjwu/172/head 2025-07-24T03:47:25.6677168Z * [new branch] gh/jamesjwu/172/orig -> origin/gh/jamesjwu/172/orig 2025-07-24T03:47:25.6677674Z * [new branch] gh/jamesjwu/173/base -> origin/gh/jamesjwu/173/base 2025-07-24T03:47:25.6678189Z * [new branch] gh/jamesjwu/173/head -> origin/gh/jamesjwu/173/head 2025-07-24T03:47:25.6678688Z * [new branch] gh/jamesjwu/173/orig -> origin/gh/jamesjwu/173/orig 2025-07-24T03:47:25.6679198Z * [new branch] gh/jamesjwu/174/base -> origin/gh/jamesjwu/174/base 2025-07-24T03:47:25.6679709Z * [new branch] gh/jamesjwu/174/head -> origin/gh/jamesjwu/174/head 2025-07-24T03:47:25.6680213Z * [new branch] gh/jamesjwu/174/orig -> origin/gh/jamesjwu/174/orig 2025-07-24T03:47:25.6680732Z * [new branch] gh/jamesjwu/175/base -> origin/gh/jamesjwu/175/base 2025-07-24T03:47:25.6681288Z * [new branch] gh/jamesjwu/175/head -> origin/gh/jamesjwu/175/head 2025-07-24T03:47:25.6681856Z * [new branch] gh/jamesjwu/175/orig -> origin/gh/jamesjwu/175/orig 2025-07-24T03:47:25.6682456Z * [new branch] gh/jamesjwu/176/base -> origin/gh/jamesjwu/176/base 2025-07-24T03:47:25.6682960Z * [new branch] gh/jamesjwu/176/head -> origin/gh/jamesjwu/176/head 2025-07-24T03:47:25.6683487Z * [new branch] gh/jamesjwu/176/orig -> origin/gh/jamesjwu/176/orig 2025-07-24T03:47:25.7227006Z * [new branch] gh/jamesjwu/177/base -> origin/gh/jamesjwu/177/base 2025-07-24T03:47:25.7227589Z * [new branch] gh/jamesjwu/177/head -> origin/gh/jamesjwu/177/head 2025-07-24T03:47:25.7228120Z * [new branch] gh/jamesjwu/177/orig -> origin/gh/jamesjwu/177/orig 2025-07-24T03:47:25.7228626Z * [new branch] gh/jamesjwu/178/base -> origin/gh/jamesjwu/178/base 2025-07-24T03:47:25.7229925Z * [new branch] gh/jamesjwu/178/head -> origin/gh/jamesjwu/178/head 2025-07-24T03:47:25.7230593Z * [new branch] gh/jamesjwu/178/orig -> origin/gh/jamesjwu/178/orig 2025-07-24T03:47:25.7231113Z * [new branch] gh/jamesjwu/179/base -> origin/gh/jamesjwu/179/base 2025-07-24T03:47:25.7231625Z * [new branch] gh/jamesjwu/179/head -> origin/gh/jamesjwu/179/head 2025-07-24T03:47:25.7232128Z * [new branch] gh/jamesjwu/179/orig -> origin/gh/jamesjwu/179/orig 2025-07-24T03:47:25.7232642Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-07-24T03:47:25.7233227Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-07-24T03:47:25.7233789Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-07-24T03:47:25.7234317Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-07-24T03:47:25.7234811Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-07-24T03:47:25.7235316Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-07-24T03:47:25.7235809Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-07-24T03:47:25.7236311Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-07-24T03:47:25.7236812Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-07-24T03:47:25.7237308Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-07-24T03:47:25.7237807Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-07-24T03:47:25.7238299Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-07-24T03:47:25.7238810Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-07-24T03:47:25.7239313Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-07-24T03:47:25.7239816Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-07-24T03:47:25.7240315Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-07-24T03:47:25.7240811Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-07-24T03:47:25.7241309Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-07-24T03:47:25.7241805Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-07-24T03:47:25.7242401Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-07-24T03:47:25.7242903Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-07-24T03:47:25.7243408Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-07-24T03:47:25.7243921Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-07-24T03:47:25.7244424Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-07-24T03:47:25.7244934Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-07-24T03:47:25.7245437Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-07-24T03:47:25.7245930Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-07-24T03:47:25.7246431Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-07-24T03:47:25.7246929Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-07-24T03:47:25.7247438Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-07-24T03:47:25.7248114Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-07-24T03:47:25.7248712Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-07-24T03:47:25.7249239Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-07-24T03:47:25.7249738Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-07-24T03:47:25.7250245Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-07-24T03:47:25.7250756Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-07-24T03:47:25.7251281Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-07-24T03:47:25.7251795Z * [new branch] gh/janeyx99/256/base -> origin/gh/janeyx99/256/base 2025-07-24T03:47:25.9186633Z * [new branch] gh/janeyx99/256/head -> origin/gh/janeyx99/256/head 2025-07-24T03:47:25.9187202Z * [new branch] gh/janeyx99/256/orig -> origin/gh/janeyx99/256/orig 2025-07-24T03:47:25.9187750Z * [new branch] gh/janeyx99/267/base -> origin/gh/janeyx99/267/base 2025-07-24T03:47:25.9188332Z * [new branch] gh/janeyx99/267/head -> origin/gh/janeyx99/267/head 2025-07-24T03:47:25.9188848Z * [new branch] gh/janeyx99/267/orig -> origin/gh/janeyx99/267/orig 2025-07-24T03:47:25.9189418Z * [new branch] gh/janeyx99/268/base -> origin/gh/janeyx99/268/base 2025-07-24T03:47:25.9189915Z * [new branch] gh/janeyx99/268/head -> origin/gh/janeyx99/268/head 2025-07-24T03:47:25.9190420Z * [new branch] gh/janeyx99/268/orig -> origin/gh/janeyx99/268/orig 2025-07-24T03:47:25.9190912Z * [new branch] gh/janeyx99/269/base -> origin/gh/janeyx99/269/base 2025-07-24T03:47:25.9191437Z * [new branch] gh/janeyx99/269/head -> origin/gh/janeyx99/269/head 2025-07-24T03:47:25.9191945Z * [new branch] gh/janeyx99/269/orig -> origin/gh/janeyx99/269/orig 2025-07-24T03:47:25.9192449Z * [new branch] gh/janeyx99/271/base -> origin/gh/janeyx99/271/base 2025-07-24T03:47:25.9192949Z * [new branch] gh/janeyx99/271/head -> origin/gh/janeyx99/271/head 2025-07-24T03:47:25.9193444Z * [new branch] gh/janeyx99/271/orig -> origin/gh/janeyx99/271/orig 2025-07-24T03:47:25.9193952Z * [new branch] gh/janeyx99/272/base -> origin/gh/janeyx99/272/base 2025-07-24T03:47:25.9194512Z * [new branch] gh/janeyx99/272/head -> origin/gh/janeyx99/272/head 2025-07-24T03:47:25.9195072Z * [new branch] gh/janeyx99/272/orig -> origin/gh/janeyx99/272/orig 2025-07-24T03:47:25.9195576Z * [new branch] gh/janeyx99/273/base -> origin/gh/janeyx99/273/base 2025-07-24T03:47:25.9196079Z * [new branch] gh/janeyx99/273/head -> origin/gh/janeyx99/273/head 2025-07-24T03:47:25.9196590Z * [new branch] gh/janeyx99/273/orig -> origin/gh/janeyx99/273/orig 2025-07-24T03:47:25.9197094Z * [new branch] gh/janeyx99/274/base -> origin/gh/janeyx99/274/base 2025-07-24T03:47:25.9197596Z * [new branch] gh/janeyx99/274/head -> origin/gh/janeyx99/274/head 2025-07-24T03:47:25.9198105Z * [new branch] gh/janeyx99/274/orig -> origin/gh/janeyx99/274/orig 2025-07-24T03:47:25.9198608Z * [new branch] gh/janeyx99/275/base -> origin/gh/janeyx99/275/base 2025-07-24T03:47:25.9199119Z * [new branch] gh/janeyx99/275/head -> origin/gh/janeyx99/275/head 2025-07-24T03:47:25.9199624Z * [new branch] gh/janeyx99/275/orig -> origin/gh/janeyx99/275/orig 2025-07-24T03:47:25.9200398Z * [new branch] gh/janeyx99/276/base -> origin/gh/janeyx99/276/base 2025-07-24T03:47:25.9200974Z * [new branch] gh/janeyx99/276/head -> origin/gh/janeyx99/276/head 2025-07-24T03:47:25.9202293Z * [new branch] gh/janeyx99/276/orig -> origin/gh/janeyx99/276/orig 2025-07-24T03:47:25.9202833Z * [new branch] gh/janeyx99/277/base -> origin/gh/janeyx99/277/base 2025-07-24T03:47:25.9203332Z * [new branch] gh/janeyx99/277/head -> origin/gh/janeyx99/277/head 2025-07-24T03:47:25.9203843Z * [new branch] gh/janeyx99/277/orig -> origin/gh/janeyx99/277/orig 2025-07-24T03:47:25.9204354Z * [new branch] gh/janeyx99/278/base -> origin/gh/janeyx99/278/base 2025-07-24T03:47:25.9204853Z * [new branch] gh/janeyx99/278/head -> origin/gh/janeyx99/278/head 2025-07-24T03:47:25.9205356Z * [new branch] gh/janeyx99/278/orig -> origin/gh/janeyx99/278/orig 2025-07-24T03:47:25.9205861Z * [new branch] gh/janeyx99/279/base -> origin/gh/janeyx99/279/base 2025-07-24T03:47:25.9206440Z * [new branch] gh/janeyx99/279/head -> origin/gh/janeyx99/279/head 2025-07-24T03:47:25.9206953Z * [new branch] gh/janeyx99/279/orig -> origin/gh/janeyx99/279/orig 2025-07-24T03:47:25.9207510Z * [new branch] gh/janeyx99/280/base -> origin/gh/janeyx99/280/base 2025-07-24T03:47:25.9208033Z * [new branch] gh/janeyx99/280/head -> origin/gh/janeyx99/280/head 2025-07-24T03:47:25.9208530Z * [new branch] gh/janeyx99/280/orig -> origin/gh/janeyx99/280/orig 2025-07-24T03:47:25.9209044Z * [new branch] gh/janeyx99/281/base -> origin/gh/janeyx99/281/base 2025-07-24T03:47:25.9209552Z * [new branch] gh/janeyx99/281/head -> origin/gh/janeyx99/281/head 2025-07-24T03:47:25.9210052Z * [new branch] gh/janeyx99/281/orig -> origin/gh/janeyx99/281/orig 2025-07-24T03:47:25.9210563Z * [new branch] gh/janeyx99/282/base -> origin/gh/janeyx99/282/base 2025-07-24T03:47:25.9211063Z * [new branch] gh/janeyx99/282/head -> origin/gh/janeyx99/282/head 2025-07-24T03:47:25.9211566Z * [new branch] gh/janeyx99/282/orig -> origin/gh/janeyx99/282/orig 2025-07-24T03:47:25.9711866Z * [new branch] gh/janeyx99/283/base -> origin/gh/janeyx99/283/base 2025-07-24T03:47:25.9712401Z * [new branch] gh/janeyx99/283/head -> origin/gh/janeyx99/283/head 2025-07-24T03:47:25.9712927Z * [new branch] gh/janeyx99/283/orig -> origin/gh/janeyx99/283/orig 2025-07-24T03:47:25.9713439Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-07-24T03:47:25.9713961Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-07-24T03:47:25.9714481Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-07-24T03:47:25.9714986Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-07-24T03:47:25.9715497Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-07-24T03:47:25.9715987Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-07-24T03:47:25.9716479Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-07-24T03:47:25.9716972Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-07-24T03:47:25.9717456Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-07-24T03:47:25.9717940Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-07-24T03:47:25.9718427Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-07-24T03:47:25.9719104Z * [new branch] gh/jansel/513/base -> origin/gh/jansel/513/base 2025-07-24T03:47:25.9719601Z * [new branch] gh/jansel/513/head -> origin/gh/jansel/513/head 2025-07-24T03:47:25.9720200Z * [new branch] gh/jansel/513/orig -> origin/gh/jansel/513/orig 2025-07-24T03:47:25.9720705Z * [new branch] gh/jansel/519/base -> origin/gh/jansel/519/base 2025-07-24T03:47:25.9721194Z * [new branch] gh/jansel/519/head -> origin/gh/jansel/519/head 2025-07-24T03:47:25.9721685Z * [new branch] gh/jansel/519/orig -> origin/gh/jansel/519/orig 2025-07-24T03:47:25.9722309Z * [new branch] gh/jansel/520/base -> origin/gh/jansel/520/base 2025-07-24T03:47:25.9722808Z * [new branch] gh/jansel/520/head -> origin/gh/jansel/520/head 2025-07-24T03:47:25.9723327Z * [new branch] gh/jansel/520/orig -> origin/gh/jansel/520/orig 2025-07-24T03:47:25.9723815Z * [new branch] gh/jansel/521/base -> origin/gh/jansel/521/base 2025-07-24T03:47:25.9724309Z * [new branch] gh/jansel/521/head -> origin/gh/jansel/521/head 2025-07-24T03:47:25.9724806Z * [new branch] gh/jansel/521/orig -> origin/gh/jansel/521/orig 2025-07-24T03:47:25.9725291Z * [new branch] gh/jansel/522/base -> origin/gh/jansel/522/base 2025-07-24T03:47:25.9725794Z * [new branch] gh/jansel/522/head -> origin/gh/jansel/522/head 2025-07-24T03:47:25.9726282Z * [new branch] gh/jansel/522/orig -> origin/gh/jansel/522/orig 2025-07-24T03:47:25.9726775Z * [new branch] gh/jansel/523/base -> origin/gh/jansel/523/base 2025-07-24T03:47:25.9727256Z * [new branch] gh/jansel/523/head -> origin/gh/jansel/523/head 2025-07-24T03:47:25.9727751Z * [new branch] gh/jansel/523/orig -> origin/gh/jansel/523/orig 2025-07-24T03:47:25.9728248Z * [new branch] gh/jansel/524/base -> origin/gh/jansel/524/base 2025-07-24T03:47:25.9728732Z * [new branch] gh/jansel/524/head -> origin/gh/jansel/524/head 2025-07-24T03:47:25.9729228Z * [new branch] gh/jansel/524/orig -> origin/gh/jansel/524/orig 2025-07-24T03:47:25.9729719Z * [new branch] gh/jansel/525/base -> origin/gh/jansel/525/base 2025-07-24T03:47:25.9730218Z * [new branch] gh/jansel/525/head -> origin/gh/jansel/525/head 2025-07-24T03:47:25.9730708Z * [new branch] gh/jansel/525/orig -> origin/gh/jansel/525/orig 2025-07-24T03:47:25.9731196Z * [new branch] gh/jansel/526/base -> origin/gh/jansel/526/base 2025-07-24T03:47:25.9731689Z * [new branch] gh/jansel/526/head -> origin/gh/jansel/526/head 2025-07-24T03:47:25.9732171Z * [new branch] gh/jansel/526/orig -> origin/gh/jansel/526/orig 2025-07-24T03:47:25.9732673Z * [new branch] gh/jansel/527/base -> origin/gh/jansel/527/base 2025-07-24T03:47:25.9733177Z * [new branch] gh/jansel/527/head -> origin/gh/jansel/527/head 2025-07-24T03:47:25.9733744Z * [new branch] gh/jansel/527/orig -> origin/gh/jansel/527/orig 2025-07-24T03:47:25.9734298Z * [new branch] gh/jansel/528/base -> origin/gh/jansel/528/base 2025-07-24T03:47:25.9734792Z * [new branch] gh/jansel/528/head -> origin/gh/jansel/528/head 2025-07-24T03:47:25.9735285Z * [new branch] gh/jansel/528/orig -> origin/gh/jansel/528/orig 2025-07-24T03:47:26.0331735Z * [new branch] gh/jansel/529/base -> origin/gh/jansel/529/base 2025-07-24T03:47:26.0332292Z * [new branch] gh/jansel/529/head -> origin/gh/jansel/529/head 2025-07-24T03:47:26.0333034Z * [new branch] gh/jansel/529/orig -> origin/gh/jansel/529/orig 2025-07-24T03:47:26.0333536Z * [new branch] gh/jansel/530/base -> origin/gh/jansel/530/base 2025-07-24T03:47:26.0334147Z * [new branch] gh/jansel/530/head -> origin/gh/jansel/530/head 2025-07-24T03:47:26.0334651Z * [new branch] gh/jansel/530/orig -> origin/gh/jansel/530/orig 2025-07-24T03:47:26.0335133Z * [new branch] gh/jansel/531/base -> origin/gh/jansel/531/base 2025-07-24T03:47:26.0335692Z * [new branch] gh/jansel/531/head -> origin/gh/jansel/531/head 2025-07-24T03:47:26.0336234Z * [new branch] gh/jansel/531/orig -> origin/gh/jansel/531/orig 2025-07-24T03:47:26.0336770Z * [new branch] gh/jansel/532/base -> origin/gh/jansel/532/base 2025-07-24T03:47:26.0337261Z * [new branch] gh/jansel/532/head -> origin/gh/jansel/532/head 2025-07-24T03:47:26.0337751Z * [new branch] gh/jansel/532/orig -> origin/gh/jansel/532/orig 2025-07-24T03:47:26.0338239Z * [new branch] gh/jansel/533/base -> origin/gh/jansel/533/base 2025-07-24T03:47:26.0338734Z * [new branch] gh/jansel/533/head -> origin/gh/jansel/533/head 2025-07-24T03:47:26.0339220Z * [new branch] gh/jansel/533/orig -> origin/gh/jansel/533/orig 2025-07-24T03:47:26.0339741Z * [new branch] gh/jbschlosser/226/base -> origin/gh/jbschlosser/226/base 2025-07-24T03:47:26.0340290Z * [new branch] gh/jbschlosser/226/head -> origin/gh/jbschlosser/226/head 2025-07-24T03:47:26.0340845Z * [new branch] gh/jbschlosser/226/orig -> origin/gh/jbschlosser/226/orig 2025-07-24T03:47:26.0341388Z * [new branch] gh/jbschlosser/239/base -> origin/gh/jbschlosser/239/base 2025-07-24T03:47:26.0341931Z * [new branch] gh/jbschlosser/239/head -> origin/gh/jbschlosser/239/head 2025-07-24T03:47:26.0342483Z * [new branch] gh/jbschlosser/239/orig -> origin/gh/jbschlosser/239/orig 2025-07-24T03:47:26.0343032Z * [new branch] gh/jbschlosser/247/base -> origin/gh/jbschlosser/247/base 2025-07-24T03:47:26.0343581Z * [new branch] gh/jbschlosser/247/head -> origin/gh/jbschlosser/247/head 2025-07-24T03:47:26.0344119Z * [new branch] gh/jbschlosser/247/orig -> origin/gh/jbschlosser/247/orig 2025-07-24T03:47:26.0344665Z * [new branch] gh/jbschlosser/248/base -> origin/gh/jbschlosser/248/base 2025-07-24T03:47:26.0345212Z * [new branch] gh/jbschlosser/248/head -> origin/gh/jbschlosser/248/head 2025-07-24T03:47:26.0345749Z * [new branch] gh/jbschlosser/248/orig -> origin/gh/jbschlosser/248/orig 2025-07-24T03:47:26.0346293Z * [new branch] gh/jbschlosser/249/base -> origin/gh/jbschlosser/249/base 2025-07-24T03:47:26.0346832Z * [new branch] gh/jbschlosser/249/head -> origin/gh/jbschlosser/249/head 2025-07-24T03:47:26.0347373Z * [new branch] gh/jbschlosser/249/orig -> origin/gh/jbschlosser/249/orig 2025-07-24T03:47:26.0347914Z * [new branch] gh/jerryzh168/1/base -> origin/gh/jerryzh168/1/base 2025-07-24T03:47:26.0348428Z * [new branch] gh/jerryzh168/1/head -> origin/gh/jerryzh168/1/head 2025-07-24T03:47:26.0348947Z * [new branch] gh/jerryzh168/1/orig -> origin/gh/jerryzh168/1/orig 2025-07-24T03:47:26.0349453Z * [new branch] gh/jiayisunx/57/base -> origin/gh/jiayisunx/57/base 2025-07-24T03:47:26.0349967Z * [new branch] gh/jiayisunx/57/head -> origin/gh/jiayisunx/57/head 2025-07-24T03:47:26.0350496Z * [new branch] gh/jiayisunx/57/orig -> origin/gh/jiayisunx/57/orig 2025-07-24T03:47:26.0351000Z * [new branch] gh/jiayisunx/58/base -> origin/gh/jiayisunx/58/base 2025-07-24T03:47:26.0351644Z * [new branch] gh/jiayisunx/58/head -> origin/gh/jiayisunx/58/head 2025-07-24T03:47:26.0352220Z * [new branch] gh/jiayisunx/58/orig -> origin/gh/jiayisunx/58/orig 2025-07-24T03:47:26.0352942Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-07-24T03:47:26.0353463Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-07-24T03:47:26.0353981Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-07-24T03:47:26.0354495Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-07-24T03:47:26.0355001Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-07-24T03:47:26.0355519Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-07-24T03:47:26.0356028Z * [new branch] gh/jiayisunx/63/base -> origin/gh/jiayisunx/63/base 2025-07-24T03:47:26.0356550Z * [new branch] gh/jiayisunx/63/head -> origin/gh/jiayisunx/63/head 2025-07-24T03:47:26.0882864Z * [new branch] gh/jiayisunx/63/orig -> origin/gh/jiayisunx/63/orig 2025-07-24T03:47:26.0883447Z * [new branch] gh/jiayisunx/64/base -> origin/gh/jiayisunx/64/base 2025-07-24T03:47:26.0883986Z * [new branch] gh/jiayisunx/64/head -> origin/gh/jiayisunx/64/head 2025-07-24T03:47:26.0884497Z * [new branch] gh/jiayisunx/64/orig -> origin/gh/jiayisunx/64/orig 2025-07-24T03:47:26.0885016Z * [new branch] gh/jiayisunx/65/base -> origin/gh/jiayisunx/65/base 2025-07-24T03:47:26.0885535Z * [new branch] gh/jiayisunx/65/head -> origin/gh/jiayisunx/65/head 2025-07-24T03:47:26.0886040Z * [new branch] gh/jiayisunx/65/orig -> origin/gh/jiayisunx/65/orig 2025-07-24T03:47:26.0886567Z * [new branch] gh/jiayisunx/66/base -> origin/gh/jiayisunx/66/base 2025-07-24T03:47:26.0887078Z * [new branch] gh/jiayisunx/66/head -> origin/gh/jiayisunx/66/head 2025-07-24T03:47:26.0887604Z * [new branch] gh/jiayisunx/66/orig -> origin/gh/jiayisunx/66/orig 2025-07-24T03:47:26.0888146Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-07-24T03:47:26.0888676Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-07-24T03:47:26.0889226Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-07-24T03:47:26.0889773Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-07-24T03:47:26.0890322Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-07-24T03:47:26.0890866Z * [new branch] gh/kurtamohler/31/base -> origin/gh/kurtamohler/31/base 2025-07-24T03:47:26.0891402Z * [new branch] gh/kurtamohler/31/head -> origin/gh/kurtamohler/31/head 2025-07-24T03:47:26.0891971Z * [new branch] gh/kurtamohler/31/orig -> origin/gh/kurtamohler/31/orig 2025-07-24T03:47:26.0892501Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-07-24T03:47:26.0893037Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-07-24T03:47:26.0893575Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-07-24T03:47:26.0894105Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-07-24T03:47:26.0894647Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-07-24T03:47:26.0895182Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-07-24T03:47:26.0895929Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-07-24T03:47:26.0896474Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-07-24T03:47:26.0897122Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-07-24T03:47:26.0897673Z * [new branch] gh/kurtamohler/37/base -> origin/gh/kurtamohler/37/base 2025-07-24T03:47:26.0898207Z * [new branch] gh/kurtamohler/37/head -> origin/gh/kurtamohler/37/head 2025-07-24T03:47:26.0898762Z * [new branch] gh/kurtamohler/37/orig -> origin/gh/kurtamohler/37/orig 2025-07-24T03:47:26.0899307Z * [new branch] gh/kurtamohler/38/base -> origin/gh/kurtamohler/38/base 2025-07-24T03:47:26.0899843Z * [new branch] gh/kurtamohler/38/head -> origin/gh/kurtamohler/38/head 2025-07-24T03:47:26.0900396Z * [new branch] gh/kurtamohler/38/orig -> origin/gh/kurtamohler/38/orig 2025-07-24T03:47:26.0900926Z * [new branch] gh/kurtamohler/39/base -> origin/gh/kurtamohler/39/base 2025-07-24T03:47:26.0901470Z * [new branch] gh/kurtamohler/39/head -> origin/gh/kurtamohler/39/head 2025-07-24T03:47:26.0902008Z * [new branch] gh/kurtamohler/39/orig -> origin/gh/kurtamohler/39/orig 2025-07-24T03:47:26.0902540Z * [new branch] gh/kurtamohler/40/base -> origin/gh/kurtamohler/40/base 2025-07-24T03:47:26.0903085Z * [new branch] gh/kurtamohler/40/head -> origin/gh/kurtamohler/40/head 2025-07-24T03:47:26.0903613Z * [new branch] gh/kurtamohler/40/orig -> origin/gh/kurtamohler/40/orig 2025-07-24T03:47:26.0904146Z * [new branch] gh/kurtamohler/41/base -> origin/gh/kurtamohler/41/base 2025-07-24T03:47:26.0904676Z * [new branch] gh/kurtamohler/41/head -> origin/gh/kurtamohler/41/head 2025-07-24T03:47:26.0905216Z * [new branch] gh/kurtamohler/41/orig -> origin/gh/kurtamohler/41/orig 2025-07-24T03:47:26.0905761Z * [new branch] gh/kurtamohler/42/base -> origin/gh/kurtamohler/42/base 2025-07-24T03:47:26.0906314Z * [new branch] gh/kurtamohler/42/head -> origin/gh/kurtamohler/42/head 2025-07-24T03:47:26.0906848Z * [new branch] gh/kurtamohler/42/orig -> origin/gh/kurtamohler/42/orig 2025-07-24T03:47:26.1455591Z * [new branch] gh/kwen2501/1/base -> origin/gh/kwen2501/1/base 2025-07-24T03:47:26.1456144Z * [new branch] gh/kwen2501/1/head -> origin/gh/kwen2501/1/head 2025-07-24T03:47:26.1456648Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-07-24T03:47:26.1457152Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-07-24T03:47:26.1457648Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-07-24T03:47:26.1458174Z * [new branch] gh/kwen2501/142/base -> origin/gh/kwen2501/142/base 2025-07-24T03:47:26.1458676Z * [new branch] gh/kwen2501/142/head -> origin/gh/kwen2501/142/head 2025-07-24T03:47:26.1459183Z * [new branch] gh/kwen2501/142/orig -> origin/gh/kwen2501/142/orig 2025-07-24T03:47:26.1459686Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-07-24T03:47:26.1460175Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-07-24T03:47:26.1460676Z * [new branch] gh/kwen2501/156/base -> origin/gh/kwen2501/156/base 2025-07-24T03:47:26.1461174Z * [new branch] gh/kwen2501/156/head -> origin/gh/kwen2501/156/head 2025-07-24T03:47:26.1461671Z * [new branch] gh/kwen2501/156/orig -> origin/gh/kwen2501/156/orig 2025-07-24T03:47:26.1462174Z * [new branch] gh/kwen2501/162/base -> origin/gh/kwen2501/162/base 2025-07-24T03:47:26.1462861Z * [new branch] gh/kwen2501/162/head -> origin/gh/kwen2501/162/head 2025-07-24T03:47:26.1463488Z * [new branch] gh/kwen2501/162/orig -> origin/gh/kwen2501/162/orig 2025-07-24T03:47:26.1463988Z * [new branch] gh/kwen2501/170/base -> origin/gh/kwen2501/170/base 2025-07-24T03:47:26.1464494Z * [new branch] gh/kwen2501/170/head -> origin/gh/kwen2501/170/head 2025-07-24T03:47:26.1464997Z * [new branch] gh/kwen2501/178/base -> origin/gh/kwen2501/178/base 2025-07-24T03:47:26.1465497Z * [new branch] gh/kwen2501/178/head -> origin/gh/kwen2501/178/head 2025-07-24T03:47:26.1465998Z * [new branch] gh/kwen2501/178/orig -> origin/gh/kwen2501/178/orig 2025-07-24T03:47:26.1466492Z * [new branch] gh/kwen2501/179/base -> origin/gh/kwen2501/179/base 2025-07-24T03:47:26.1466985Z * [new branch] gh/kwen2501/179/head -> origin/gh/kwen2501/179/head 2025-07-24T03:47:26.1467486Z * [new branch] gh/kwen2501/179/orig -> origin/gh/kwen2501/179/orig 2025-07-24T03:47:26.1467978Z * [new branch] gh/kwen2501/180/base -> origin/gh/kwen2501/180/base 2025-07-24T03:47:26.1468475Z * [new branch] gh/kwen2501/180/head -> origin/gh/kwen2501/180/head 2025-07-24T03:47:26.1468966Z * [new branch] gh/kwen2501/180/orig -> origin/gh/kwen2501/180/orig 2025-07-24T03:47:26.1469475Z * [new branch] gh/kwen2501/181/base -> origin/gh/kwen2501/181/base 2025-07-24T03:47:26.1469974Z * [new branch] gh/kwen2501/181/head -> origin/gh/kwen2501/181/head 2025-07-24T03:47:26.1470463Z * [new branch] gh/kwen2501/181/orig -> origin/gh/kwen2501/181/orig 2025-07-24T03:47:26.1470957Z * [new branch] gh/kwen2501/182/base -> origin/gh/kwen2501/182/base 2025-07-24T03:47:26.1471457Z * [new branch] gh/kwen2501/182/head -> origin/gh/kwen2501/182/head 2025-07-24T03:47:26.1471962Z * [new branch] gh/kwen2501/182/orig -> origin/gh/kwen2501/182/orig 2025-07-24T03:47:26.1472471Z * [new branch] gh/kwen2501/183/base -> origin/gh/kwen2501/183/base 2025-07-24T03:47:26.1472961Z * [new branch] gh/kwen2501/183/head -> origin/gh/kwen2501/183/head 2025-07-24T03:47:26.1473456Z * [new branch] gh/kwen2501/183/orig -> origin/gh/kwen2501/183/orig 2025-07-24T03:47:26.1473948Z * [new branch] gh/kwen2501/184/base -> origin/gh/kwen2501/184/base 2025-07-24T03:47:26.1474451Z * [new branch] gh/kwen2501/184/head -> origin/gh/kwen2501/184/head 2025-07-24T03:47:26.1474946Z * [new branch] gh/kwen2501/184/orig -> origin/gh/kwen2501/184/orig 2025-07-24T03:47:26.1475456Z * [new branch] gh/kwen2501/185/base -> origin/gh/kwen2501/185/base 2025-07-24T03:47:26.1475957Z * [new branch] gh/kwen2501/185/head -> origin/gh/kwen2501/185/head 2025-07-24T03:47:26.1476451Z * [new branch] gh/kwen2501/185/orig -> origin/gh/kwen2501/185/orig 2025-07-24T03:47:26.1476948Z * [new branch] gh/kwen2501/186/base -> origin/gh/kwen2501/186/base 2025-07-24T03:47:26.1477442Z * [new branch] gh/kwen2501/186/head -> origin/gh/kwen2501/186/head 2025-07-24T03:47:26.1477938Z * [new branch] gh/kwen2501/186/orig -> origin/gh/kwen2501/186/orig 2025-07-24T03:47:26.1478434Z * [new branch] gh/kwen2501/187/base -> origin/gh/kwen2501/187/base 2025-07-24T03:47:26.1478926Z * [new branch] gh/kwen2501/187/head -> origin/gh/kwen2501/187/head 2025-07-24T03:47:26.2001612Z * [new branch] gh/kwen2501/187/orig -> origin/gh/kwen2501/187/orig 2025-07-24T03:47:26.2002212Z * [new branch] gh/kwen2501/188/base -> origin/gh/kwen2501/188/base 2025-07-24T03:47:26.2002921Z * [new branch] gh/kwen2501/188/head -> origin/gh/kwen2501/188/head 2025-07-24T03:47:26.2003563Z * [new branch] gh/kwen2501/188/orig -> origin/gh/kwen2501/188/orig 2025-07-24T03:47:26.2004061Z * [new branch] gh/kwen2501/189/base -> origin/gh/kwen2501/189/base 2025-07-24T03:47:26.2004569Z * [new branch] gh/kwen2501/189/head -> origin/gh/kwen2501/189/head 2025-07-24T03:47:26.2005065Z * [new branch] gh/kwen2501/189/orig -> origin/gh/kwen2501/189/orig 2025-07-24T03:47:26.2005567Z * [new branch] gh/kwen2501/190/base -> origin/gh/kwen2501/190/base 2025-07-24T03:47:26.2006072Z * [new branch] gh/kwen2501/190/head -> origin/gh/kwen2501/190/head 2025-07-24T03:47:26.2006562Z * [new branch] gh/kwen2501/190/orig -> origin/gh/kwen2501/190/orig 2025-07-24T03:47:26.2007068Z * [new branch] gh/kwen2501/191/base -> origin/gh/kwen2501/191/base 2025-07-24T03:47:26.2007561Z * [new branch] gh/kwen2501/191/head -> origin/gh/kwen2501/191/head 2025-07-24T03:47:26.2008079Z * [new branch] gh/kwen2501/191/orig -> origin/gh/kwen2501/191/orig 2025-07-24T03:47:26.2008581Z * [new branch] gh/kwen2501/192/base -> origin/gh/kwen2501/192/base 2025-07-24T03:47:26.2009076Z * [new branch] gh/kwen2501/192/head -> origin/gh/kwen2501/192/head 2025-07-24T03:47:26.2009595Z * [new branch] gh/kwen2501/192/orig -> origin/gh/kwen2501/192/orig 2025-07-24T03:47:26.2010090Z * [new branch] gh/kwen2501/193/base -> origin/gh/kwen2501/193/base 2025-07-24T03:47:26.2010590Z * [new branch] gh/kwen2501/193/head -> origin/gh/kwen2501/193/head 2025-07-24T03:47:26.2011093Z * [new branch] gh/kwen2501/193/orig -> origin/gh/kwen2501/193/orig 2025-07-24T03:47:26.2011590Z * [new branch] gh/kwen2501/194/base -> origin/gh/kwen2501/194/base 2025-07-24T03:47:26.2012101Z * [new branch] gh/kwen2501/194/head -> origin/gh/kwen2501/194/head 2025-07-24T03:47:26.2012595Z * [new branch] gh/kwen2501/194/orig -> origin/gh/kwen2501/194/orig 2025-07-24T03:47:26.2013094Z * [new branch] gh/kwen2501/195/base -> origin/gh/kwen2501/195/base 2025-07-24T03:47:26.2013596Z * [new branch] gh/kwen2501/195/head -> origin/gh/kwen2501/195/head 2025-07-24T03:47:26.2014093Z * [new branch] gh/kwen2501/195/orig -> origin/gh/kwen2501/195/orig 2025-07-24T03:47:26.2014599Z * [new branch] gh/kwen2501/196/base -> origin/gh/kwen2501/196/base 2025-07-24T03:47:26.2015091Z * [new branch] gh/kwen2501/196/head -> origin/gh/kwen2501/196/head 2025-07-24T03:47:26.2015589Z * [new branch] gh/kwen2501/196/orig -> origin/gh/kwen2501/196/orig 2025-07-24T03:47:26.2016086Z * [new branch] gh/kwen2501/197/base -> origin/gh/kwen2501/197/base 2025-07-24T03:47:26.2016590Z * [new branch] gh/kwen2501/197/head -> origin/gh/kwen2501/197/head 2025-07-24T03:47:26.2017094Z * [new branch] gh/kwen2501/197/orig -> origin/gh/kwen2501/197/orig 2025-07-24T03:47:26.2017616Z * [new branch] gh/laithsakka/117/base -> origin/gh/laithsakka/117/base 2025-07-24T03:47:26.2018164Z * [new branch] gh/laithsakka/117/head -> origin/gh/laithsakka/117/head 2025-07-24T03:47:26.2018697Z * [new branch] gh/laithsakka/117/orig -> origin/gh/laithsakka/117/orig 2025-07-24T03:47:26.2019239Z * [new branch] gh/laithsakka/120/base -> origin/gh/laithsakka/120/base 2025-07-24T03:47:26.2019774Z * [new branch] gh/laithsakka/120/head -> origin/gh/laithsakka/120/head 2025-07-24T03:47:26.2020432Z * [new branch] gh/laithsakka/120/orig -> origin/gh/laithsakka/120/orig 2025-07-24T03:47:26.2020979Z * [new branch] gh/laithsakka/141/base -> origin/gh/laithsakka/141/base 2025-07-24T03:47:26.2021611Z * [new branch] gh/laithsakka/141/head -> origin/gh/laithsakka/141/head 2025-07-24T03:47:26.2022156Z * [new branch] gh/laithsakka/141/orig -> origin/gh/laithsakka/141/orig 2025-07-24T03:47:26.2022706Z * [new branch] gh/laithsakka/152/base -> origin/gh/laithsakka/152/base 2025-07-24T03:47:26.2023239Z * [new branch] gh/laithsakka/152/head -> origin/gh/laithsakka/152/head 2025-07-24T03:47:26.2023779Z * [new branch] gh/laithsakka/152/orig -> origin/gh/laithsakka/152/orig 2025-07-24T03:47:26.2024306Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-07-24T03:47:26.2024851Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-07-24T03:47:26.2025394Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-07-24T03:47:26.2522949Z * [new branch] gh/laithsakka/159/base -> origin/gh/laithsakka/159/base 2025-07-24T03:47:26.2523544Z * [new branch] gh/laithsakka/159/head -> origin/gh/laithsakka/159/head 2025-07-24T03:47:26.2524104Z * [new branch] gh/laithsakka/159/orig -> origin/gh/laithsakka/159/orig 2025-07-24T03:47:26.2524646Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-07-24T03:47:26.2525179Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-07-24T03:47:26.2525708Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-07-24T03:47:26.2526237Z * [new branch] gh/laithsakka/178/base -> origin/gh/laithsakka/178/base 2025-07-24T03:47:26.2526793Z * [new branch] gh/laithsakka/178/head -> origin/gh/laithsakka/178/head 2025-07-24T03:47:26.2527329Z * [new branch] gh/laithsakka/178/orig -> origin/gh/laithsakka/178/orig 2025-07-24T03:47:26.2527861Z * [new branch] gh/laithsakka/191/base -> origin/gh/laithsakka/191/base 2025-07-24T03:47:26.2528396Z * [new branch] gh/laithsakka/191/head -> origin/gh/laithsakka/191/head 2025-07-24T03:47:26.2528926Z * [new branch] gh/laithsakka/191/orig -> origin/gh/laithsakka/191/orig 2025-07-24T03:47:26.2529460Z * [new branch] gh/laithsakka/206/base -> origin/gh/laithsakka/206/base 2025-07-24T03:47:26.2529987Z * [new branch] gh/laithsakka/206/head -> origin/gh/laithsakka/206/head 2025-07-24T03:47:26.2530505Z * [new branch] gh/laithsakka/206/orig -> origin/gh/laithsakka/206/orig 2025-07-24T03:47:26.2531036Z * [new branch] gh/laithsakka/219/base -> origin/gh/laithsakka/219/base 2025-07-24T03:47:26.2531579Z * [new branch] gh/laithsakka/219/head -> origin/gh/laithsakka/219/head 2025-07-24T03:47:26.2532123Z * [new branch] gh/laithsakka/219/orig -> origin/gh/laithsakka/219/orig 2025-07-24T03:47:26.2532661Z * [new branch] gh/laithsakka/222/base -> origin/gh/laithsakka/222/base 2025-07-24T03:47:26.2533181Z * [new branch] gh/laithsakka/222/head -> origin/gh/laithsakka/222/head 2025-07-24T03:47:26.2533712Z * [new branch] gh/laithsakka/222/orig -> origin/gh/laithsakka/222/orig 2025-07-24T03:47:26.2534237Z * [new branch] gh/laithsakka/223/base -> origin/gh/laithsakka/223/base 2025-07-24T03:47:26.2534767Z * [new branch] gh/laithsakka/223/head -> origin/gh/laithsakka/223/head 2025-07-24T03:47:26.2535299Z * [new branch] gh/laithsakka/223/orig -> origin/gh/laithsakka/223/orig 2025-07-24T03:47:26.2536028Z * [new branch] gh/laithsakka/227/base -> origin/gh/laithsakka/227/base 2025-07-24T03:47:26.2536560Z * [new branch] gh/laithsakka/227/head -> origin/gh/laithsakka/227/head 2025-07-24T03:47:26.2537206Z * [new branch] gh/laithsakka/227/orig -> origin/gh/laithsakka/227/orig 2025-07-24T03:47:26.2537746Z * [new branch] gh/laithsakka/228/base -> origin/gh/laithsakka/228/base 2025-07-24T03:47:26.2538281Z * [new branch] gh/laithsakka/228/head -> origin/gh/laithsakka/228/head 2025-07-24T03:47:26.2538809Z * [new branch] gh/laithsakka/228/orig -> origin/gh/laithsakka/228/orig 2025-07-24T03:47:26.2539348Z * [new branch] gh/laithsakka/229/base -> origin/gh/laithsakka/229/base 2025-07-24T03:47:26.2539876Z * [new branch] gh/laithsakka/229/head -> origin/gh/laithsakka/229/head 2025-07-24T03:47:26.2540409Z * [new branch] gh/laithsakka/229/orig -> origin/gh/laithsakka/229/orig 2025-07-24T03:47:26.2540937Z * [new branch] gh/laithsakka/230/base -> origin/gh/laithsakka/230/base 2025-07-24T03:47:26.2541470Z * [new branch] gh/laithsakka/230/head -> origin/gh/laithsakka/230/head 2025-07-24T03:47:26.2542003Z * [new branch] gh/laithsakka/230/orig -> origin/gh/laithsakka/230/orig 2025-07-24T03:47:26.2542527Z * [new branch] gh/laithsakka/231/base -> origin/gh/laithsakka/231/base 2025-07-24T03:47:26.2543059Z * [new branch] gh/laithsakka/231/head -> origin/gh/laithsakka/231/head 2025-07-24T03:47:26.2543584Z * [new branch] gh/laithsakka/231/orig -> origin/gh/laithsakka/231/orig 2025-07-24T03:47:26.2544133Z * [new branch] gh/laithsakka/232/base -> origin/gh/laithsakka/232/base 2025-07-24T03:47:26.2544665Z * [new branch] gh/laithsakka/232/head -> origin/gh/laithsakka/232/head 2025-07-24T03:47:26.2545191Z * [new branch] gh/laithsakka/232/orig -> origin/gh/laithsakka/232/orig 2025-07-24T03:47:26.2545732Z * [new branch] gh/laithsakka/233/base -> origin/gh/laithsakka/233/base 2025-07-24T03:47:26.2546258Z * [new branch] gh/laithsakka/233/head -> origin/gh/laithsakka/233/head 2025-07-24T03:47:26.2546788Z * [new branch] gh/laithsakka/233/orig -> origin/gh/laithsakka/233/orig 2025-07-24T03:47:26.2547322Z * [new branch] gh/laithsakka/234/base -> origin/gh/laithsakka/234/base 2025-07-24T03:47:26.3100825Z * [new branch] gh/laithsakka/234/head -> origin/gh/laithsakka/234/head 2025-07-24T03:47:26.3101390Z * [new branch] gh/laithsakka/234/orig -> origin/gh/laithsakka/234/orig 2025-07-24T03:47:26.3101980Z * [new branch] gh/laithsakka/235/base -> origin/gh/laithsakka/235/base 2025-07-24T03:47:26.3102581Z * [new branch] gh/laithsakka/235/head -> origin/gh/laithsakka/235/head 2025-07-24T03:47:26.3103132Z * [new branch] gh/laithsakka/235/orig -> origin/gh/laithsakka/235/orig 2025-07-24T03:47:26.3103665Z * [new branch] gh/laithsakka/236/base -> origin/gh/laithsakka/236/base 2025-07-24T03:47:26.3104214Z * [new branch] gh/laithsakka/236/head -> origin/gh/laithsakka/236/head 2025-07-24T03:47:26.3104753Z * [new branch] gh/laithsakka/236/orig -> origin/gh/laithsakka/236/orig 2025-07-24T03:47:26.3105275Z * [new branch] gh/laithsakka/237/base -> origin/gh/laithsakka/237/base 2025-07-24T03:47:26.3105807Z * [new branch] gh/laithsakka/237/head -> origin/gh/laithsakka/237/head 2025-07-24T03:47:26.3106328Z * [new branch] gh/laithsakka/237/orig -> origin/gh/laithsakka/237/orig 2025-07-24T03:47:26.3106857Z * [new branch] gh/laithsakka/238/base -> origin/gh/laithsakka/238/base 2025-07-24T03:47:26.3107565Z * [new branch] gh/laithsakka/238/head -> origin/gh/laithsakka/238/head 2025-07-24T03:47:26.3108152Z * [new branch] gh/laithsakka/238/orig -> origin/gh/laithsakka/238/orig 2025-07-24T03:47:26.3108861Z * [new branch] gh/laithsakka/239/base -> origin/gh/laithsakka/239/base 2025-07-24T03:47:26.3109388Z * [new branch] gh/laithsakka/239/head -> origin/gh/laithsakka/239/head 2025-07-24T03:47:26.3109935Z * [new branch] gh/laithsakka/239/orig -> origin/gh/laithsakka/239/orig 2025-07-24T03:47:26.3110468Z * [new branch] gh/laithsakka/240/base -> origin/gh/laithsakka/240/base 2025-07-24T03:47:26.3111010Z * [new branch] gh/laithsakka/240/head -> origin/gh/laithsakka/240/head 2025-07-24T03:47:26.3111544Z * [new branch] gh/laithsakka/240/orig -> origin/gh/laithsakka/240/orig 2025-07-24T03:47:26.3112071Z * [new branch] gh/laithsakka/241/base -> origin/gh/laithsakka/241/base 2025-07-24T03:47:26.3112606Z * [new branch] gh/laithsakka/241/head -> origin/gh/laithsakka/241/head 2025-07-24T03:47:26.3113133Z * [new branch] gh/laithsakka/241/orig -> origin/gh/laithsakka/241/orig 2025-07-24T03:47:26.3113671Z * [new branch] gh/laithsakka/242/base -> origin/gh/laithsakka/242/base 2025-07-24T03:47:26.3114252Z * [new branch] gh/laithsakka/242/head -> origin/gh/laithsakka/242/head 2025-07-24T03:47:26.3114824Z * [new branch] gh/laithsakka/242/orig -> origin/gh/laithsakka/242/orig 2025-07-24T03:47:26.3115355Z * [new branch] gh/laithsakka/243/base -> origin/gh/laithsakka/243/base 2025-07-24T03:47:26.3115885Z * [new branch] gh/laithsakka/243/head -> origin/gh/laithsakka/243/head 2025-07-24T03:47:26.3116425Z * [new branch] gh/laithsakka/243/orig -> origin/gh/laithsakka/243/orig 2025-07-24T03:47:26.3116957Z * [new branch] gh/laithsakka/244/base -> origin/gh/laithsakka/244/base 2025-07-24T03:47:26.3117494Z * [new branch] gh/laithsakka/244/head -> origin/gh/laithsakka/244/head 2025-07-24T03:47:26.3118037Z * [new branch] gh/laithsakka/244/orig -> origin/gh/laithsakka/244/orig 2025-07-24T03:47:26.3118563Z * [new branch] gh/laithsakka/245/base -> origin/gh/laithsakka/245/base 2025-07-24T03:47:26.3119091Z * [new branch] gh/laithsakka/245/head -> origin/gh/laithsakka/245/head 2025-07-24T03:47:26.3119625Z * [new branch] gh/laithsakka/245/orig -> origin/gh/laithsakka/245/orig 2025-07-24T03:47:26.3120216Z * [new branch] gh/laithsakka/246/base -> origin/gh/laithsakka/246/base 2025-07-24T03:47:26.3120817Z * [new branch] gh/laithsakka/246/head -> origin/gh/laithsakka/246/head 2025-07-24T03:47:26.3121342Z * [new branch] gh/laithsakka/246/orig -> origin/gh/laithsakka/246/orig 2025-07-24T03:47:26.3121886Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-07-24T03:47:26.3122499Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-07-24T03:47:26.3123036Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-07-24T03:47:26.3123671Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-07-24T03:47:26.3124271Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-07-24T03:47:26.3124862Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-07-24T03:47:26.3125443Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-07-24T03:47:26.4034290Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-07-24T03:47:26.4034944Z * [new branch] gh/leslie-fang-intel/190/base -> origin/gh/leslie-fang-intel/190/base 2025-07-24T03:47:26.4035788Z * [new branch] gh/leslie-fang-intel/190/head -> origin/gh/leslie-fang-intel/190/head 2025-07-24T03:47:26.4036661Z * [new branch] gh/leslie-fang-intel/190/orig -> origin/gh/leslie-fang-intel/190/orig 2025-07-24T03:47:26.4037280Z * [new branch] gh/leslie-fang-intel/199/base -> origin/gh/leslie-fang-intel/199/base 2025-07-24T03:47:26.4037896Z * [new branch] gh/leslie-fang-intel/199/head -> origin/gh/leslie-fang-intel/199/head 2025-07-24T03:47:26.4038514Z * [new branch] gh/leslie-fang-intel/199/orig -> origin/gh/leslie-fang-intel/199/orig 2025-07-24T03:47:26.4039123Z * [new branch] gh/leslie-fang-intel/207/base -> origin/gh/leslie-fang-intel/207/base 2025-07-24T03:47:26.4039742Z * [new branch] gh/leslie-fang-intel/207/head -> origin/gh/leslie-fang-intel/207/head 2025-07-24T03:47:26.4040358Z * [new branch] gh/leslie-fang-intel/207/orig -> origin/gh/leslie-fang-intel/207/orig 2025-07-24T03:47:26.4040982Z * [new branch] gh/leslie-fang-intel/208/base -> origin/gh/leslie-fang-intel/208/base 2025-07-24T03:47:26.4041601Z * [new branch] gh/leslie-fang-intel/208/head -> origin/gh/leslie-fang-intel/208/head 2025-07-24T03:47:26.4042334Z * [new branch] gh/leslie-fang-intel/208/orig -> origin/gh/leslie-fang-intel/208/orig 2025-07-24T03:47:26.4042937Z * [new branch] gh/lw/1/base -> origin/gh/lw/1/base 2025-07-24T03:47:26.4043394Z * [new branch] gh/lw/1/head -> origin/gh/lw/1/head 2025-07-24T03:47:26.4043845Z * [new branch] gh/lw/1/orig -> origin/gh/lw/1/orig 2025-07-24T03:47:26.4044290Z * [new branch] gh/lw/2/base -> origin/gh/lw/2/base 2025-07-24T03:47:26.4044719Z * [new branch] gh/lw/2/head -> origin/gh/lw/2/head 2025-07-24T03:47:26.4045162Z * [new branch] gh/lw/2/orig -> origin/gh/lw/2/orig 2025-07-24T03:47:26.4045586Z * [new branch] gh/lw/3/base -> origin/gh/lw/3/base 2025-07-24T03:47:26.4046031Z * [new branch] gh/lw/3/head -> origin/gh/lw/3/head 2025-07-24T03:47:26.4046467Z * [new branch] gh/lw/3/orig -> origin/gh/lw/3/orig 2025-07-24T03:47:26.4046897Z * [new branch] gh/lw/4/base -> origin/gh/lw/4/base 2025-07-24T03:47:26.4047332Z * [new branch] gh/lw/4/head -> origin/gh/lw/4/head 2025-07-24T03:47:26.4047758Z * [new branch] gh/lw/4/orig -> origin/gh/lw/4/orig 2025-07-24T03:47:26.4048224Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-07-24T03:47:26.4048798Z * [new branch] gh/malfet/169/base -> origin/gh/malfet/169/base 2025-07-24T03:47:26.4049342Z * [new branch] gh/malfet/169/head -> origin/gh/malfet/169/head 2025-07-24T03:47:26.4049846Z * [new branch] gh/malfet/169/orig -> origin/gh/malfet/169/orig 2025-07-24T03:47:26.4050344Z * [new branch] gh/malfet/259/base -> origin/gh/malfet/259/base 2025-07-24T03:47:26.4050842Z * [new branch] gh/malfet/259/head -> origin/gh/malfet/259/head 2025-07-24T03:47:26.4051330Z * [new branch] gh/malfet/259/orig -> origin/gh/malfet/259/orig 2025-07-24T03:47:26.4051812Z * [new branch] gh/malfet/330/base -> origin/gh/malfet/330/base 2025-07-24T03:47:26.4052305Z * [new branch] gh/malfet/330/head -> origin/gh/malfet/330/head 2025-07-24T03:47:26.4052786Z * [new branch] gh/malfet/330/orig -> origin/gh/malfet/330/orig 2025-07-24T03:47:26.4053285Z * [new branch] gh/malfet/394/base -> origin/gh/malfet/394/base 2025-07-24T03:47:26.4053890Z * [new branch] gh/malfet/394/head -> origin/gh/malfet/394/head 2025-07-24T03:47:26.4054431Z * [new branch] gh/malfet/394/orig -> origin/gh/malfet/394/orig 2025-07-24T03:47:26.4055065Z * [new branch] gh/malfet/396/base -> origin/gh/malfet/396/base 2025-07-24T03:47:26.4055553Z * [new branch] gh/malfet/396/head -> origin/gh/malfet/396/head 2025-07-24T03:47:26.4056044Z * [new branch] gh/malfet/396/orig -> origin/gh/malfet/396/orig 2025-07-24T03:47:26.4056527Z * [new branch] gh/malfet/397/base -> origin/gh/malfet/397/base 2025-07-24T03:47:26.4071640Z * [new branch] gh/malfet/397/head -> origin/gh/malfet/397/head 2025-07-24T03:47:26.4072191Z * [new branch] gh/malfet/397/orig -> origin/gh/malfet/397/orig 2025-07-24T03:47:26.4072686Z * [new branch] gh/malfet/398/base -> origin/gh/malfet/398/base 2025-07-24T03:47:26.4073275Z * [new branch] gh/malfet/398/head -> origin/gh/malfet/398/head 2025-07-24T03:47:26.4073828Z * [new branch] gh/malfet/398/orig -> origin/gh/malfet/398/orig 2025-07-24T03:47:26.4628648Z * [new branch] gh/malfet/399/base -> origin/gh/malfet/399/base 2025-07-24T03:47:26.4629225Z * [new branch] gh/malfet/399/head -> origin/gh/malfet/399/head 2025-07-24T03:47:26.4629730Z * [new branch] gh/malfet/399/orig -> origin/gh/malfet/399/orig 2025-07-24T03:47:26.4630240Z * [new branch] gh/malfet/414/base -> origin/gh/malfet/414/base 2025-07-24T03:47:26.4630728Z * [new branch] gh/malfet/414/head -> origin/gh/malfet/414/head 2025-07-24T03:47:26.4631230Z * [new branch] gh/malfet/414/orig -> origin/gh/malfet/414/orig 2025-07-24T03:47:26.4631725Z * [new branch] gh/malfet/417/base -> origin/gh/malfet/417/base 2025-07-24T03:47:26.4632223Z * [new branch] gh/malfet/417/head -> origin/gh/malfet/417/head 2025-07-24T03:47:26.4632716Z * [new branch] gh/malfet/417/orig -> origin/gh/malfet/417/orig 2025-07-24T03:47:26.4633202Z * [new branch] gh/malfet/418/base -> origin/gh/malfet/418/base 2025-07-24T03:47:26.4633755Z * [new branch] gh/malfet/418/head -> origin/gh/malfet/418/head 2025-07-24T03:47:26.4634255Z * [new branch] gh/malfet/418/orig -> origin/gh/malfet/418/orig 2025-07-24T03:47:26.4634797Z * [new branch] gh/malfet/419/base -> origin/gh/malfet/419/base 2025-07-24T03:47:26.4635294Z * [new branch] gh/malfet/419/head -> origin/gh/malfet/419/head 2025-07-24T03:47:26.4635776Z * [new branch] gh/malfet/419/orig -> origin/gh/malfet/419/orig 2025-07-24T03:47:26.4636270Z * [new branch] gh/malfet/420/base -> origin/gh/malfet/420/base 2025-07-24T03:47:26.4636784Z * [new branch] gh/malfet/420/head -> origin/gh/malfet/420/head 2025-07-24T03:47:26.4637275Z * [new branch] gh/malfet/420/orig -> origin/gh/malfet/420/orig 2025-07-24T03:47:26.4637768Z * [new branch] gh/malfet/421/base -> origin/gh/malfet/421/base 2025-07-24T03:47:26.4638249Z * [new branch] gh/malfet/421/head -> origin/gh/malfet/421/head 2025-07-24T03:47:26.4638742Z * [new branch] gh/malfet/421/orig -> origin/gh/malfet/421/orig 2025-07-24T03:47:26.4639217Z * [new branch] gh/malfet/422/base -> origin/gh/malfet/422/base 2025-07-24T03:47:26.4639705Z * [new branch] gh/malfet/422/head -> origin/gh/malfet/422/head 2025-07-24T03:47:26.4640257Z * [new branch] gh/malfet/422/orig -> origin/gh/malfet/422/orig 2025-07-24T03:47:26.4640796Z * [new branch] gh/malfet/423/base -> origin/gh/malfet/423/base 2025-07-24T03:47:26.4641508Z * [new branch] gh/malfet/423/head -> origin/gh/malfet/423/head 2025-07-24T03:47:26.4642199Z * [new branch] gh/malfet/423/orig -> origin/gh/malfet/423/orig 2025-07-24T03:47:26.4642696Z * [new branch] gh/malfet/424/base -> origin/gh/malfet/424/base 2025-07-24T03:47:26.4643193Z * [new branch] gh/malfet/424/head -> origin/gh/malfet/424/head 2025-07-24T03:47:26.4643680Z * [new branch] gh/malfet/424/orig -> origin/gh/malfet/424/orig 2025-07-24T03:47:26.4644171Z * [new branch] gh/malfet/425/base -> origin/gh/malfet/425/base 2025-07-24T03:47:26.4644650Z * [new branch] gh/malfet/425/head -> origin/gh/malfet/425/head 2025-07-24T03:47:26.4645138Z * [new branch] gh/malfet/425/orig -> origin/gh/malfet/425/orig 2025-07-24T03:47:26.4645636Z * [new branch] gh/malfet/426/base -> origin/gh/malfet/426/base 2025-07-24T03:47:26.4646181Z * [new branch] gh/malfet/426/head -> origin/gh/malfet/426/head 2025-07-24T03:47:26.4646723Z * [new branch] gh/malfet/426/orig -> origin/gh/malfet/426/orig 2025-07-24T03:47:26.4647210Z * [new branch] gh/malfet/427/base -> origin/gh/malfet/427/base 2025-07-24T03:47:26.4647698Z * [new branch] gh/malfet/427/head -> origin/gh/malfet/427/head 2025-07-24T03:47:26.4648179Z * [new branch] gh/malfet/427/orig -> origin/gh/malfet/427/orig 2025-07-24T03:47:26.4648671Z * [new branch] gh/malfet/428/base -> origin/gh/malfet/428/base 2025-07-24T03:47:26.4649159Z * [new branch] gh/malfet/428/head -> origin/gh/malfet/428/head 2025-07-24T03:47:26.4649642Z * [new branch] gh/malfet/428/orig -> origin/gh/malfet/428/orig 2025-07-24T03:47:26.4650138Z * [new branch] gh/malfet/429/base -> origin/gh/malfet/429/base 2025-07-24T03:47:26.4650625Z * [new branch] gh/malfet/429/head -> origin/gh/malfet/429/head 2025-07-24T03:47:26.4651117Z * [new branch] gh/malfet/429/orig -> origin/gh/malfet/429/orig 2025-07-24T03:47:26.4651610Z * [new branch] gh/malfet/430/base -> origin/gh/malfet/430/base 2025-07-24T03:47:26.4652148Z * [new branch] gh/malfet/430/head -> origin/gh/malfet/430/head 2025-07-24T03:47:26.4652701Z * [new branch] gh/malfet/430/orig -> origin/gh/malfet/430/orig 2025-07-24T03:47:26.5261255Z * [new branch] gh/malfet/431/base -> origin/gh/malfet/431/base 2025-07-24T03:47:26.5261805Z * [new branch] gh/malfet/431/head -> origin/gh/malfet/431/head 2025-07-24T03:47:26.5262307Z * [new branch] gh/malfet/431/orig -> origin/gh/malfet/431/orig 2025-07-24T03:47:26.5262818Z * [new branch] gh/malfet/432/base -> origin/gh/malfet/432/base 2025-07-24T03:47:26.5263317Z * [new branch] gh/malfet/432/head -> origin/gh/malfet/432/head 2025-07-24T03:47:26.5263818Z * [new branch] gh/malfet/432/orig -> origin/gh/malfet/432/orig 2025-07-24T03:47:26.5264311Z * [new branch] gh/malfet/433/base -> origin/gh/malfet/433/base 2025-07-24T03:47:26.5264811Z * [new branch] gh/malfet/433/head -> origin/gh/malfet/433/head 2025-07-24T03:47:26.5265365Z * [new branch] gh/malfet/433/orig -> origin/gh/malfet/433/orig 2025-07-24T03:47:26.5265906Z * [new branch] gh/malfet/434/base -> origin/gh/malfet/434/base 2025-07-24T03:47:26.5266396Z * [new branch] gh/malfet/434/head -> origin/gh/malfet/434/head 2025-07-24T03:47:26.5266889Z * [new branch] gh/malfet/434/orig -> origin/gh/malfet/434/orig 2025-07-24T03:47:26.5267567Z * [new branch] gh/malfet/435/base -> origin/gh/malfet/435/base 2025-07-24T03:47:26.5268077Z * [new branch] gh/malfet/435/head -> origin/gh/malfet/435/head 2025-07-24T03:47:26.5268707Z * [new branch] gh/malfet/435/orig -> origin/gh/malfet/435/orig 2025-07-24T03:47:26.5269206Z * [new branch] gh/malfet/436/base -> origin/gh/malfet/436/base 2025-07-24T03:47:26.5269706Z * [new branch] gh/malfet/436/head -> origin/gh/malfet/436/head 2025-07-24T03:47:26.5270204Z * [new branch] gh/malfet/436/orig -> origin/gh/malfet/436/orig 2025-07-24T03:47:26.5270686Z * [new branch] gh/malfet/437/base -> origin/gh/malfet/437/base 2025-07-24T03:47:26.5271199Z * [new branch] gh/malfet/437/head -> origin/gh/malfet/437/head 2025-07-24T03:47:26.5271686Z * [new branch] gh/malfet/437/orig -> origin/gh/malfet/437/orig 2025-07-24T03:47:26.5272188Z * [new branch] gh/malfet/438/base -> origin/gh/malfet/438/base 2025-07-24T03:47:26.5272677Z * [new branch] gh/malfet/438/head -> origin/gh/malfet/438/head 2025-07-24T03:47:26.5273162Z * [new branch] gh/malfet/438/orig -> origin/gh/malfet/438/orig 2025-07-24T03:47:26.5273648Z * [new branch] gh/malfet/439/base -> origin/gh/malfet/439/base 2025-07-24T03:47:26.5274130Z * [new branch] gh/malfet/439/head -> origin/gh/malfet/439/head 2025-07-24T03:47:26.5274623Z * [new branch] gh/malfet/439/orig -> origin/gh/malfet/439/orig 2025-07-24T03:47:26.5275114Z * [new branch] gh/malfet/440/base -> origin/gh/malfet/440/base 2025-07-24T03:47:26.5275592Z * [new branch] gh/malfet/440/head -> origin/gh/malfet/440/head 2025-07-24T03:47:26.5276079Z * [new branch] gh/malfet/440/orig -> origin/gh/malfet/440/orig 2025-07-24T03:47:26.5276560Z * [new branch] gh/malfet/441/base -> origin/gh/malfet/441/base 2025-07-24T03:47:26.5277064Z * [new branch] gh/malfet/441/head -> origin/gh/malfet/441/head 2025-07-24T03:47:26.5277544Z * [new branch] gh/malfet/441/orig -> origin/gh/malfet/441/orig 2025-07-24T03:47:26.5278051Z * [new branch] gh/malfet/442/base -> origin/gh/malfet/442/base 2025-07-24T03:47:26.5278538Z * [new branch] gh/malfet/442/head -> origin/gh/malfet/442/head 2025-07-24T03:47:26.5279019Z * [new branch] gh/malfet/442/orig -> origin/gh/malfet/442/orig 2025-07-24T03:47:26.5279512Z * [new branch] gh/malfet/443/base -> origin/gh/malfet/443/base 2025-07-24T03:47:26.5279991Z * [new branch] gh/malfet/443/head -> origin/gh/malfet/443/head 2025-07-24T03:47:26.5280487Z * [new branch] gh/malfet/443/orig -> origin/gh/malfet/443/orig 2025-07-24T03:47:26.5280976Z * [new branch] gh/malfet/444/base -> origin/gh/malfet/444/base 2025-07-24T03:47:26.5281462Z * [new branch] gh/malfet/444/head -> origin/gh/malfet/444/head 2025-07-24T03:47:26.5281954Z * [new branch] gh/malfet/444/orig -> origin/gh/malfet/444/orig 2025-07-24T03:47:26.5282538Z * [new branch] gh/malfet/445/base -> origin/gh/malfet/445/base 2025-07-24T03:47:26.5283034Z * [new branch] gh/malfet/445/head -> origin/gh/malfet/445/head 2025-07-24T03:47:26.5283525Z * [new branch] gh/malfet/445/orig -> origin/gh/malfet/445/orig 2025-07-24T03:47:26.5284017Z * [new branch] gh/malfet/446/base -> origin/gh/malfet/446/base 2025-07-24T03:47:26.5284509Z * [new branch] gh/malfet/446/head -> origin/gh/malfet/446/head 2025-07-24T03:47:26.5895741Z * [new branch] gh/malfet/446/orig -> origin/gh/malfet/446/orig 2025-07-24T03:47:26.5896316Z * [new branch] gh/malfet/447/base -> origin/gh/malfet/447/base 2025-07-24T03:47:26.5897028Z * [new branch] gh/malfet/447/head -> origin/gh/malfet/447/head 2025-07-24T03:47:26.5897533Z * [new branch] gh/malfet/448/base -> origin/gh/malfet/448/base 2025-07-24T03:47:26.5898011Z * [new branch] gh/malfet/448/head -> origin/gh/malfet/448/head 2025-07-24T03:47:26.5898508Z * [new branch] gh/malfet/449/base -> origin/gh/malfet/449/base 2025-07-24T03:47:26.5899086Z * [new branch] gh/malfet/449/head -> origin/gh/malfet/449/head 2025-07-24T03:47:26.5899627Z * [new branch] gh/malfet/450/base -> origin/gh/malfet/450/base 2025-07-24T03:47:26.5900176Z * [new branch] gh/malfet/450/head -> origin/gh/malfet/450/head 2025-07-24T03:47:26.5900669Z * [new branch] gh/malfet/451/base -> origin/gh/malfet/451/base 2025-07-24T03:47:26.5901152Z * [new branch] gh/malfet/451/head -> origin/gh/malfet/451/head 2025-07-24T03:47:26.5901652Z * [new branch] gh/malfet/452/base -> origin/gh/malfet/452/base 2025-07-24T03:47:26.5902133Z * [new branch] gh/malfet/452/head -> origin/gh/malfet/452/head 2025-07-24T03:47:26.5902628Z * [new branch] gh/malfet/452/orig -> origin/gh/malfet/452/orig 2025-07-24T03:47:26.5903105Z * [new branch] gh/malfet/453/base -> origin/gh/malfet/453/base 2025-07-24T03:47:26.5903589Z * [new branch] gh/malfet/453/head -> origin/gh/malfet/453/head 2025-07-24T03:47:26.5904080Z * [new branch] gh/malfet/453/orig -> origin/gh/malfet/453/orig 2025-07-24T03:47:26.5904557Z * [new branch] gh/malfet/454/base -> origin/gh/malfet/454/base 2025-07-24T03:47:26.5905048Z * [new branch] gh/malfet/454/head -> origin/gh/malfet/454/head 2025-07-24T03:47:26.5905536Z * [new branch] gh/malfet/454/orig -> origin/gh/malfet/454/orig 2025-07-24T03:47:26.5906024Z * [new branch] gh/malfet/455/base -> origin/gh/malfet/455/base 2025-07-24T03:47:26.5906499Z * [new branch] gh/malfet/455/head -> origin/gh/malfet/455/head 2025-07-24T03:47:26.5906981Z * [new branch] gh/malfet/455/orig -> origin/gh/malfet/455/orig 2025-07-24T03:47:26.5907462Z * [new branch] gh/malfet/456/base -> origin/gh/malfet/456/base 2025-07-24T03:47:26.5907945Z * [new branch] gh/malfet/456/head -> origin/gh/malfet/456/head 2025-07-24T03:47:26.5908435Z * [new branch] gh/malfet/456/orig -> origin/gh/malfet/456/orig 2025-07-24T03:47:26.5908914Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-07-24T03:47:26.5909426Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-07-24T03:47:26.5909976Z * [new branch] gh/manuelcandales/10/base -> origin/gh/manuelcandales/10/base 2025-07-24T03:47:26.5910553Z * [new branch] gh/manuelcandales/10/head -> origin/gh/manuelcandales/10/head 2025-07-24T03:47:26.5911131Z * [new branch] gh/manuelcandales/10/orig -> origin/gh/manuelcandales/10/orig 2025-07-24T03:47:26.5911704Z * [new branch] gh/manuelcandales/11/base -> origin/gh/manuelcandales/11/base 2025-07-24T03:47:26.5912280Z * [new branch] gh/manuelcandales/11/head -> origin/gh/manuelcandales/11/head 2025-07-24T03:47:26.5912860Z * [new branch] gh/manuelcandales/11/orig -> origin/gh/manuelcandales/11/orig 2025-07-24T03:47:26.5913426Z * [new branch] gh/manuelcandales/12/base -> origin/gh/manuelcandales/12/base 2025-07-24T03:47:26.5914153Z * [new branch] gh/manuelcandales/12/head -> origin/gh/manuelcandales/12/head 2025-07-24T03:47:26.5914717Z * [new branch] gh/manuelcandales/12/orig -> origin/gh/manuelcandales/12/orig 2025-07-24T03:47:26.5915465Z * [new branch] gh/manuelcandales/13/base -> origin/gh/manuelcandales/13/base 2025-07-24T03:47:26.5916108Z * [new branch] gh/manuelcandales/13/head -> origin/gh/manuelcandales/13/head 2025-07-24T03:47:26.5916686Z * [new branch] gh/manuelcandales/13/orig -> origin/gh/manuelcandales/13/orig 2025-07-24T03:47:26.5917277Z * [new branch] gh/manuelcandales/14/base -> origin/gh/manuelcandales/14/base 2025-07-24T03:47:26.5917845Z * [new branch] gh/manuelcandales/14/head -> origin/gh/manuelcandales/14/head 2025-07-24T03:47:26.5918438Z * [new branch] gh/manuelcandales/14/orig -> origin/gh/manuelcandales/14/orig 2025-07-24T03:47:26.5919029Z * [new branch] gh/manuelcandales/15/base -> origin/gh/manuelcandales/15/base 2025-07-24T03:47:26.5919599Z * [new branch] gh/manuelcandales/15/head -> origin/gh/manuelcandales/15/head 2025-07-24T03:47:26.5920181Z * [new branch] gh/manuelcandales/15/orig -> origin/gh/manuelcandales/15/orig 2025-07-24T03:47:26.6456258Z * [new branch] gh/manuelcandales/16/base -> origin/gh/manuelcandales/16/base 2025-07-24T03:47:26.6456919Z * [new branch] gh/manuelcandales/16/head -> origin/gh/manuelcandales/16/head 2025-07-24T03:47:26.6457511Z * [new branch] gh/manuelcandales/16/orig -> origin/gh/manuelcandales/16/orig 2025-07-24T03:47:26.6458091Z * [new branch] gh/manuelcandales/17/base -> origin/gh/manuelcandales/17/base 2025-07-24T03:47:26.6458694Z * [new branch] gh/manuelcandales/17/head -> origin/gh/manuelcandales/17/head 2025-07-24T03:47:26.6459275Z * [new branch] gh/manuelcandales/17/orig -> origin/gh/manuelcandales/17/orig 2025-07-24T03:47:26.6459861Z * [new branch] gh/manuelcandales/9/base -> origin/gh/manuelcandales/9/base 2025-07-24T03:47:26.6460458Z * [new branch] gh/manuelcandales/9/head -> origin/gh/manuelcandales/9/head 2025-07-24T03:47:26.6461020Z * [new branch] gh/manuelcandales/9/orig -> origin/gh/manuelcandales/9/orig 2025-07-24T03:47:26.6461548Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-07-24T03:47:26.6462054Z * [new branch] gh/masnesral/204/base -> origin/gh/masnesral/204/base 2025-07-24T03:47:26.6462580Z * [new branch] gh/masnesral/204/head -> origin/gh/masnesral/204/head 2025-07-24T03:47:26.6463102Z * [new branch] gh/masnesral/204/orig -> origin/gh/masnesral/204/orig 2025-07-24T03:47:26.6463611Z * [new branch] gh/masnesral/210/base -> origin/gh/masnesral/210/base 2025-07-24T03:47:26.6464134Z * [new branch] gh/masnesral/210/head -> origin/gh/masnesral/210/head 2025-07-24T03:47:26.6464650Z * [new branch] gh/masnesral/210/orig -> origin/gh/masnesral/210/orig 2025-07-24T03:47:26.6465182Z * [new branch] gh/masnesral/212/base -> origin/gh/masnesral/212/base 2025-07-24T03:47:26.6465710Z * [new branch] gh/masnesral/212/head -> origin/gh/masnesral/212/head 2025-07-24T03:47:26.6466221Z * [new branch] gh/masnesral/212/orig -> origin/gh/masnesral/212/orig 2025-07-24T03:47:26.6466743Z * [new branch] gh/masnesral/214/base -> origin/gh/masnesral/214/base 2025-07-24T03:47:26.6467254Z * [new branch] gh/masnesral/214/head -> origin/gh/masnesral/214/head 2025-07-24T03:47:26.6467772Z * [new branch] gh/masnesral/214/orig -> origin/gh/masnesral/214/orig 2025-07-24T03:47:26.6468289Z * [new branch] gh/masnesral/215/base -> origin/gh/masnesral/215/base 2025-07-24T03:47:26.6469001Z * [new branch] gh/masnesral/215/head -> origin/gh/masnesral/215/head 2025-07-24T03:47:26.6469519Z * [new branch] gh/masnesral/215/orig -> origin/gh/masnesral/215/orig 2025-07-24T03:47:26.6470734Z * [new branch] gh/masnesral/216/base -> origin/gh/masnesral/216/base 2025-07-24T03:47:26.6471272Z * [new branch] gh/masnesral/216/head -> origin/gh/masnesral/216/head 2025-07-24T03:47:26.6471793Z * [new branch] gh/masnesral/216/orig -> origin/gh/masnesral/216/orig 2025-07-24T03:47:26.6472307Z * [new branch] gh/masnesral/217/base -> origin/gh/masnesral/217/base 2025-07-24T03:47:26.6472827Z * [new branch] gh/masnesral/217/head -> origin/gh/masnesral/217/head 2025-07-24T03:47:26.6473338Z * [new branch] gh/masnesral/217/orig -> origin/gh/masnesral/217/orig 2025-07-24T03:47:26.6473856Z * [new branch] gh/masnesral/218/base -> origin/gh/masnesral/218/base 2025-07-24T03:47:26.6474371Z * [new branch] gh/masnesral/218/head -> origin/gh/masnesral/218/head 2025-07-24T03:47:26.6474892Z * [new branch] gh/masnesral/218/orig -> origin/gh/masnesral/218/orig 2025-07-24T03:47:26.6475409Z * [new branch] gh/masnesral/219/base -> origin/gh/masnesral/219/base 2025-07-24T03:47:26.6475917Z * [new branch] gh/masnesral/219/head -> origin/gh/masnesral/219/head 2025-07-24T03:47:26.6476430Z * [new branch] gh/masnesral/219/orig -> origin/gh/masnesral/219/orig 2025-07-24T03:47:26.6476937Z * [new branch] gh/masnesral/220/base -> origin/gh/masnesral/220/base 2025-07-24T03:47:26.6477460Z * [new branch] gh/masnesral/220/head -> origin/gh/masnesral/220/head 2025-07-24T03:47:26.6477982Z * [new branch] gh/masnesral/220/orig -> origin/gh/masnesral/220/orig 2025-07-24T03:47:26.6478499Z * [new branch] gh/masnesral/221/base -> origin/gh/masnesral/221/base 2025-07-24T03:47:26.6479011Z * [new branch] gh/masnesral/221/head -> origin/gh/masnesral/221/head 2025-07-24T03:47:26.6479525Z * [new branch] gh/masnesral/221/orig -> origin/gh/masnesral/221/orig 2025-07-24T03:47:26.6480038Z * [new branch] gh/masnesral/222/base -> origin/gh/masnesral/222/base 2025-07-24T03:47:26.6480551Z * [new branch] gh/masnesral/222/head -> origin/gh/masnesral/222/head 2025-07-24T03:47:26.6481062Z * [new branch] gh/masnesral/222/orig -> origin/gh/masnesral/222/orig 2025-07-24T03:47:26.6999554Z * [new branch] gh/masnesral/223/base -> origin/gh/masnesral/223/base 2025-07-24T03:47:26.7000141Z * [new branch] gh/masnesral/223/head -> origin/gh/masnesral/223/head 2025-07-24T03:47:26.7000682Z * [new branch] gh/masnesral/223/orig -> origin/gh/masnesral/223/orig 2025-07-24T03:47:26.7001253Z * [new branch] gh/masnesral/224/base -> origin/gh/masnesral/224/base 2025-07-24T03:47:26.7001776Z * [new branch] gh/masnesral/224/head -> origin/gh/masnesral/224/head 2025-07-24T03:47:26.7002374Z * [new branch] gh/masnesral/224/orig -> origin/gh/masnesral/224/orig 2025-07-24T03:47:26.7002887Z * [new branch] gh/masnesral/225/base -> origin/gh/masnesral/225/base 2025-07-24T03:47:26.7003416Z * [new branch] gh/masnesral/225/head -> origin/gh/masnesral/225/head 2025-07-24T03:47:26.7003942Z * [new branch] gh/masnesral/225/orig -> origin/gh/masnesral/225/orig 2025-07-24T03:47:26.7004457Z * [new branch] gh/masnesral/226/base -> origin/gh/masnesral/226/base 2025-07-24T03:47:26.7004973Z * [new branch] gh/masnesral/226/head -> origin/gh/masnesral/226/head 2025-07-24T03:47:26.7005688Z * [new branch] gh/masnesral/226/orig -> origin/gh/masnesral/226/orig 2025-07-24T03:47:26.7006214Z * [new branch] gh/masnesral/227/base -> origin/gh/masnesral/227/base 2025-07-24T03:47:26.7006859Z * [new branch] gh/masnesral/227/head -> origin/gh/masnesral/227/head 2025-07-24T03:47:26.7007378Z * [new branch] gh/masnesral/227/orig -> origin/gh/masnesral/227/orig 2025-07-24T03:47:26.7007907Z * [new branch] gh/masnesral/228/base -> origin/gh/masnesral/228/base 2025-07-24T03:47:26.7008421Z * [new branch] gh/masnesral/228/head -> origin/gh/masnesral/228/head 2025-07-24T03:47:26.7008950Z * [new branch] gh/masnesral/228/orig -> origin/gh/masnesral/228/orig 2025-07-24T03:47:26.7009470Z * [new branch] gh/masnesral/229/base -> origin/gh/masnesral/229/base 2025-07-24T03:47:26.7009982Z * [new branch] gh/masnesral/229/head -> origin/gh/masnesral/229/head 2025-07-24T03:47:26.7010500Z * [new branch] gh/masnesral/229/orig -> origin/gh/masnesral/229/orig 2025-07-24T03:47:26.7011011Z * [new branch] gh/masnesral/230/base -> origin/gh/masnesral/230/base 2025-07-24T03:47:26.7011536Z * [new branch] gh/masnesral/230/head -> origin/gh/masnesral/230/head 2025-07-24T03:47:26.7012051Z * [new branch] gh/masnesral/230/orig -> origin/gh/masnesral/230/orig 2025-07-24T03:47:26.7012557Z * [new branch] gh/masnesral/231/base -> origin/gh/masnesral/231/base 2025-07-24T03:47:26.7013070Z * [new branch] gh/masnesral/231/head -> origin/gh/masnesral/231/head 2025-07-24T03:47:26.7013578Z * [new branch] gh/masnesral/231/orig -> origin/gh/masnesral/231/orig 2025-07-24T03:47:26.7014100Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-07-24T03:47:26.7014612Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-07-24T03:47:26.7015135Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-07-24T03:47:26.7015649Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-07-24T03:47:26.7016146Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-07-24T03:47:26.7016660Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-07-24T03:47:26.7017159Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-07-24T03:47:26.7017663Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-07-24T03:47:26.7018168Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-07-24T03:47:26.7018665Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-07-24T03:47:26.7019169Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-07-24T03:47:26.7019668Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-07-24T03:47:26.7020178Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-07-24T03:47:26.7020695Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-07-24T03:47:26.7021197Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-07-24T03:47:26.7021778Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-07-24T03:47:26.7022399Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-07-24T03:47:26.7023035Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-07-24T03:47:26.7023651Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-07-24T03:47:26.7424586Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-07-24T03:47:26.7425477Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-07-24T03:47:26.7426117Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-07-24T03:47:26.7426744Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-07-24T03:47:26.7427380Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-07-24T03:47:26.7427990Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-07-24T03:47:26.7428622Z * [new branch] gh/mikaylagawarecki/313/base -> origin/gh/mikaylagawarecki/313/base 2025-07-24T03:47:26.7429239Z * [new branch] gh/mikaylagawarecki/313/head -> origin/gh/mikaylagawarecki/313/head 2025-07-24T03:47:26.7429878Z * [new branch] gh/mikaylagawarecki/313/orig -> origin/gh/mikaylagawarecki/313/orig 2025-07-24T03:47:26.7430504Z * [new branch] gh/mikaylagawarecki/316/base -> origin/gh/mikaylagawarecki/316/base 2025-07-24T03:47:26.7431107Z * [new branch] gh/mikaylagawarecki/316/head -> origin/gh/mikaylagawarecki/316/head 2025-07-24T03:47:26.7431720Z * [new branch] gh/mikaylagawarecki/316/orig -> origin/gh/mikaylagawarecki/316/orig 2025-07-24T03:47:26.7432323Z * [new branch] gh/mikaylagawarecki/317/base -> origin/gh/mikaylagawarecki/317/base 2025-07-24T03:47:26.7432939Z * [new branch] gh/mikaylagawarecki/317/head -> origin/gh/mikaylagawarecki/317/head 2025-07-24T03:47:26.7433558Z * [new branch] gh/mikaylagawarecki/317/orig -> origin/gh/mikaylagawarecki/317/orig 2025-07-24T03:47:26.7434163Z * [new branch] gh/mikaylagawarecki/318/base -> origin/gh/mikaylagawarecki/318/base 2025-07-24T03:47:26.7434787Z * [new branch] gh/mikaylagawarecki/318/head -> origin/gh/mikaylagawarecki/318/head 2025-07-24T03:47:26.7435398Z * [new branch] gh/mikaylagawarecki/318/orig -> origin/gh/mikaylagawarecki/318/orig 2025-07-24T03:47:26.7436013Z * [new branch] gh/mikaylagawarecki/319/base -> origin/gh/mikaylagawarecki/319/base 2025-07-24T03:47:26.7436639Z * [new branch] gh/mikaylagawarecki/319/head -> origin/gh/mikaylagawarecki/319/head 2025-07-24T03:47:26.7437246Z * [new branch] gh/mikaylagawarecki/319/orig -> origin/gh/mikaylagawarecki/319/orig 2025-07-24T03:47:26.7437863Z * [new branch] gh/mikaylagawarecki/320/base -> origin/gh/mikaylagawarecki/320/base 2025-07-24T03:47:26.7438473Z * [new branch] gh/mikaylagawarecki/320/head -> origin/gh/mikaylagawarecki/320/head 2025-07-24T03:47:26.7439092Z * [new branch] gh/mikaylagawarecki/320/orig -> origin/gh/mikaylagawarecki/320/orig 2025-07-24T03:47:26.7439714Z * [new branch] gh/mikaylagawarecki/321/base -> origin/gh/mikaylagawarecki/321/base 2025-07-24T03:47:26.7440336Z * [new branch] gh/mikaylagawarecki/321/head -> origin/gh/mikaylagawarecki/321/head 2025-07-24T03:47:26.7440941Z * [new branch] gh/mikaylagawarecki/321/orig -> origin/gh/mikaylagawarecki/321/orig 2025-07-24T03:47:26.7441554Z * [new branch] gh/mikaylagawarecki/322/base -> origin/gh/mikaylagawarecki/322/base 2025-07-24T03:47:26.7442250Z * [new branch] gh/mikaylagawarecki/322/head -> origin/gh/mikaylagawarecki/322/head 2025-07-24T03:47:26.7442870Z * [new branch] gh/mikaylagawarecki/322/orig -> origin/gh/mikaylagawarecki/322/orig 2025-07-24T03:47:26.7443487Z * [new branch] gh/mikaylagawarecki/323/base -> origin/gh/mikaylagawarecki/323/base 2025-07-24T03:47:26.7444096Z * [new branch] gh/mikaylagawarecki/323/head -> origin/gh/mikaylagawarecki/323/head 2025-07-24T03:47:26.7444848Z * [new branch] gh/mikaylagawarecki/323/orig -> origin/gh/mikaylagawarecki/323/orig 2025-07-24T03:47:26.7445580Z * [new branch] gh/mikaylagawarecki/324/base -> origin/gh/mikaylagawarecki/324/base 2025-07-24T03:47:26.7446189Z * [new branch] gh/mikaylagawarecki/324/head -> origin/gh/mikaylagawarecki/324/head 2025-07-24T03:47:26.7446812Z * [new branch] gh/mikaylagawarecki/324/orig -> origin/gh/mikaylagawarecki/324/orig 2025-07-24T03:47:26.7447421Z * [new branch] gh/mikaylagawarecki/325/base -> origin/gh/mikaylagawarecki/325/base 2025-07-24T03:47:26.7448046Z * [new branch] gh/mikaylagawarecki/325/head -> origin/gh/mikaylagawarecki/325/head 2025-07-24T03:47:26.7448669Z * [new branch] gh/mikaylagawarecki/325/orig -> origin/gh/mikaylagawarecki/325/orig 2025-07-24T03:47:26.7449275Z * [new branch] gh/mikaylagawarecki/326/base -> origin/gh/mikaylagawarecki/326/base 2025-07-24T03:47:26.7449892Z * [new branch] gh/mikaylagawarecki/326/head -> origin/gh/mikaylagawarecki/326/head 2025-07-24T03:47:26.7450502Z * [new branch] gh/mikaylagawarecki/326/orig -> origin/gh/mikaylagawarecki/326/orig 2025-07-24T03:47:26.7995821Z * [new branch] gh/mikaylagawarecki/327/base -> origin/gh/mikaylagawarecki/327/base 2025-07-24T03:47:26.7996504Z * [new branch] gh/mikaylagawarecki/327/head -> origin/gh/mikaylagawarecki/327/head 2025-07-24T03:47:26.7997127Z * [new branch] gh/mikaylagawarecki/327/orig -> origin/gh/mikaylagawarecki/327/orig 2025-07-24T03:47:26.7997770Z * [new branch] gh/mikaylagawarecki/328/base -> origin/gh/mikaylagawarecki/328/base 2025-07-24T03:47:26.7998384Z * [new branch] gh/mikaylagawarecki/328/head -> origin/gh/mikaylagawarecki/328/head 2025-07-24T03:47:26.7998998Z * [new branch] gh/mikaylagawarecki/328/orig -> origin/gh/mikaylagawarecki/328/orig 2025-07-24T03:47:26.7999563Z * [new branch] gh/mlazos/1/base -> origin/gh/mlazos/1/base 2025-07-24T03:47:26.8000047Z * [new branch] gh/mlazos/1/head -> origin/gh/mlazos/1/head 2025-07-24T03:47:26.8000531Z * [new branch] gh/mlazos/1/orig -> origin/gh/mlazos/1/orig 2025-07-24T03:47:26.8000996Z * [new branch] gh/mlazos/2/base -> origin/gh/mlazos/2/base 2025-07-24T03:47:26.8001470Z * [new branch] gh/mlazos/2/head -> origin/gh/mlazos/2/head 2025-07-24T03:47:26.8001946Z * [new branch] gh/mlazos/2/orig -> origin/gh/mlazos/2/orig 2025-07-24T03:47:26.8002490Z * [new branch] gh/mlazos/3/base -> origin/gh/mlazos/3/base 2025-07-24T03:47:26.8002961Z * [new branch] gh/mlazos/3/head -> origin/gh/mlazos/3/head 2025-07-24T03:47:26.8003423Z * [new branch] gh/mlazos/3/orig -> origin/gh/mlazos/3/orig 2025-07-24T03:47:26.8003912Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-07-24T03:47:26.8004405Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-07-24T03:47:26.8004914Z * [new branch] gh/muchulee8/62/base -> origin/gh/muchulee8/62/base 2025-07-24T03:47:26.8005427Z * [new branch] gh/muchulee8/62/head -> origin/gh/muchulee8/62/head 2025-07-24T03:47:26.8005931Z * [new branch] gh/muchulee8/62/orig -> origin/gh/muchulee8/62/orig 2025-07-24T03:47:26.8006446Z * [new branch] gh/nautsimon/1/base -> origin/gh/nautsimon/1/base 2025-07-24T03:47:26.8006961Z * [new branch] gh/nautsimon/1/head -> origin/gh/nautsimon/1/head 2025-07-24T03:47:26.8007458Z * [new branch] gh/nautsimon/1/orig -> origin/gh/nautsimon/1/orig 2025-07-24T03:47:26.8007973Z * [new branch] gh/nautsimon/10/base -> origin/gh/nautsimon/10/base 2025-07-24T03:47:26.8008668Z * [new branch] gh/nautsimon/10/head -> origin/gh/nautsimon/10/head 2025-07-24T03:47:26.8009309Z * [new branch] gh/nautsimon/10/orig -> origin/gh/nautsimon/10/orig 2025-07-24T03:47:26.8009821Z * [new branch] gh/nautsimon/11/base -> origin/gh/nautsimon/11/base 2025-07-24T03:47:26.8010346Z * [new branch] gh/nautsimon/11/head -> origin/gh/nautsimon/11/head 2025-07-24T03:47:26.8010864Z * [new branch] gh/nautsimon/11/orig -> origin/gh/nautsimon/11/orig 2025-07-24T03:47:26.8011372Z * [new branch] gh/nautsimon/12/base -> origin/gh/nautsimon/12/base 2025-07-24T03:47:26.8011886Z * [new branch] gh/nautsimon/12/head -> origin/gh/nautsimon/12/head 2025-07-24T03:47:26.8012389Z * [new branch] gh/nautsimon/12/orig -> origin/gh/nautsimon/12/orig 2025-07-24T03:47:26.8012910Z * [new branch] gh/nautsimon/13/base -> origin/gh/nautsimon/13/base 2025-07-24T03:47:26.8013425Z * [new branch] gh/nautsimon/13/head -> origin/gh/nautsimon/13/head 2025-07-24T03:47:26.8013942Z * [new branch] gh/nautsimon/13/orig -> origin/gh/nautsimon/13/orig 2025-07-24T03:47:26.8014452Z * [new branch] gh/nautsimon/14/base -> origin/gh/nautsimon/14/base 2025-07-24T03:47:26.8014959Z * [new branch] gh/nautsimon/14/head -> origin/gh/nautsimon/14/head 2025-07-24T03:47:26.8015478Z * [new branch] gh/nautsimon/14/orig -> origin/gh/nautsimon/14/orig 2025-07-24T03:47:26.8015989Z * [new branch] gh/nautsimon/15/base -> origin/gh/nautsimon/15/base 2025-07-24T03:47:26.8016491Z * [new branch] gh/nautsimon/15/head -> origin/gh/nautsimon/15/head 2025-07-24T03:47:26.8017008Z * [new branch] gh/nautsimon/15/orig -> origin/gh/nautsimon/15/orig 2025-07-24T03:47:26.8017513Z * [new branch] gh/nautsimon/16/base -> origin/gh/nautsimon/16/base 2025-07-24T03:47:26.8018022Z * [new branch] gh/nautsimon/16/head -> origin/gh/nautsimon/16/head 2025-07-24T03:47:26.8018535Z * [new branch] gh/nautsimon/16/orig -> origin/gh/nautsimon/16/orig 2025-07-24T03:47:26.8019036Z * [new branch] gh/nautsimon/17/base -> origin/gh/nautsimon/17/base 2025-07-24T03:47:26.8019543Z * [new branch] gh/nautsimon/17/head -> origin/gh/nautsimon/17/head 2025-07-24T03:47:26.8020044Z * [new branch] gh/nautsimon/17/orig -> origin/gh/nautsimon/17/orig 2025-07-24T03:47:26.8458988Z * [new branch] gh/nautsimon/18/base -> origin/gh/nautsimon/18/base 2025-07-24T03:47:26.8459589Z * [new branch] gh/nautsimon/18/head -> origin/gh/nautsimon/18/head 2025-07-24T03:47:26.8460118Z * [new branch] gh/nautsimon/18/orig -> origin/gh/nautsimon/18/orig 2025-07-24T03:47:26.8460687Z * [new branch] gh/nautsimon/19/base -> origin/gh/nautsimon/19/base 2025-07-24T03:47:26.8461202Z * [new branch] gh/nautsimon/19/head -> origin/gh/nautsimon/19/head 2025-07-24T03:47:26.8461737Z * [new branch] gh/nautsimon/19/orig -> origin/gh/nautsimon/19/orig 2025-07-24T03:47:26.8462259Z * [new branch] gh/nautsimon/2/base -> origin/gh/nautsimon/2/base 2025-07-24T03:47:26.8462770Z * [new branch] gh/nautsimon/2/head -> origin/gh/nautsimon/2/head 2025-07-24T03:47:26.8463281Z * [new branch] gh/nautsimon/2/orig -> origin/gh/nautsimon/2/orig 2025-07-24T03:47:26.8463783Z * [new branch] gh/nautsimon/20/base -> origin/gh/nautsimon/20/base 2025-07-24T03:47:26.8464309Z * [new branch] gh/nautsimon/20/head -> origin/gh/nautsimon/20/head 2025-07-24T03:47:26.8464823Z * [new branch] gh/nautsimon/20/orig -> origin/gh/nautsimon/20/orig 2025-07-24T03:47:26.8465502Z * [new branch] gh/nautsimon/21/base -> origin/gh/nautsimon/21/base 2025-07-24T03:47:26.8466164Z * [new branch] gh/nautsimon/21/head -> origin/gh/nautsimon/21/head 2025-07-24T03:47:26.8466677Z * [new branch] gh/nautsimon/21/orig -> origin/gh/nautsimon/21/orig 2025-07-24T03:47:26.8467194Z * [new branch] gh/nautsimon/3/base -> origin/gh/nautsimon/3/base 2025-07-24T03:47:26.8467708Z * [new branch] gh/nautsimon/3/head -> origin/gh/nautsimon/3/head 2025-07-24T03:47:26.8468212Z * [new branch] gh/nautsimon/3/orig -> origin/gh/nautsimon/3/orig 2025-07-24T03:47:26.8468726Z * [new branch] gh/nautsimon/4/base -> origin/gh/nautsimon/4/base 2025-07-24T03:47:26.8469229Z * [new branch] gh/nautsimon/4/head -> origin/gh/nautsimon/4/head 2025-07-24T03:47:26.8469738Z * [new branch] gh/nautsimon/4/orig -> origin/gh/nautsimon/4/orig 2025-07-24T03:47:26.8470236Z * [new branch] gh/nautsimon/5/base -> origin/gh/nautsimon/5/base 2025-07-24T03:47:26.8470751Z * [new branch] gh/nautsimon/5/head -> origin/gh/nautsimon/5/head 2025-07-24T03:47:26.8471253Z * [new branch] gh/nautsimon/5/orig -> origin/gh/nautsimon/5/orig 2025-07-24T03:47:26.8471750Z * [new branch] gh/nautsimon/6/base -> origin/gh/nautsimon/6/base 2025-07-24T03:47:26.8472259Z * [new branch] gh/nautsimon/6/head -> origin/gh/nautsimon/6/head 2025-07-24T03:47:26.8472757Z * [new branch] gh/nautsimon/6/orig -> origin/gh/nautsimon/6/orig 2025-07-24T03:47:26.8473271Z * [new branch] gh/nautsimon/7/base -> origin/gh/nautsimon/7/base 2025-07-24T03:47:26.8473777Z * [new branch] gh/nautsimon/7/head -> origin/gh/nautsimon/7/head 2025-07-24T03:47:26.8474287Z * [new branch] gh/nautsimon/7/orig -> origin/gh/nautsimon/7/orig 2025-07-24T03:47:26.8474792Z * [new branch] gh/nautsimon/8/base -> origin/gh/nautsimon/8/base 2025-07-24T03:47:26.8475315Z * [new branch] gh/nautsimon/8/head -> origin/gh/nautsimon/8/head 2025-07-24T03:47:26.8475812Z * [new branch] gh/nautsimon/8/orig -> origin/gh/nautsimon/8/orig 2025-07-24T03:47:26.8476319Z * [new branch] gh/nautsimon/9/base -> origin/gh/nautsimon/9/base 2025-07-24T03:47:26.8476812Z * [new branch] gh/nautsimon/9/head -> origin/gh/nautsimon/9/head 2025-07-24T03:47:26.8477321Z * [new branch] gh/nautsimon/9/orig -> origin/gh/nautsimon/9/orig 2025-07-24T03:47:26.8477828Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-07-24T03:47:26.8478306Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-07-24T03:47:26.8478793Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-07-24T03:47:26.8479266Z * [new branch] gh/oulgen/44/base -> origin/gh/oulgen/44/base 2025-07-24T03:47:26.8479753Z * [new branch] gh/oulgen/44/head -> origin/gh/oulgen/44/head 2025-07-24T03:47:26.8480232Z * [new branch] gh/oulgen/44/orig -> origin/gh/oulgen/44/orig 2025-07-24T03:47:26.8480712Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-07-24T03:47:26.8481200Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-07-24T03:47:26.8481675Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-07-24T03:47:26.8482249Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-07-24T03:47:26.8482741Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-07-24T03:47:26.8980109Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-07-24T03:47:26.8980872Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-07-24T03:47:26.8981372Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-07-24T03:47:26.8981850Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-07-24T03:47:26.8982344Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-07-24T03:47:26.8982837Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-07-24T03:47:26.8983317Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-07-24T03:47:26.8983920Z * [new branch] gh/raymo/cleanup-dynamo-logging -> origin/gh/raymo/cleanup-dynamo-logging 2025-07-24T03:47:26.8984549Z * [new branch] gh/raymo/refresh-script -> origin/gh/raymo/refresh-script 2025-07-24T03:47:26.8985095Z * [new branch] gh/rec/133/base -> origin/gh/rec/133/base 2025-07-24T03:47:26.8985567Z * [new branch] gh/rec/133/head -> origin/gh/rec/133/head 2025-07-24T03:47:26.8986022Z * [new branch] gh/rec/133/orig -> origin/gh/rec/133/orig 2025-07-24T03:47:26.8986490Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-07-24T03:47:26.8986941Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-07-24T03:47:26.8987400Z * [new branch] gh/rec/142/base -> origin/gh/rec/142/base 2025-07-24T03:47:26.8987855Z * [new branch] gh/rec/142/head -> origin/gh/rec/142/head 2025-07-24T03:47:26.8988335Z * [new branch] gh/rec/142/orig -> origin/gh/rec/142/orig 2025-07-24T03:47:26.8988795Z * [new branch] gh/rec/148/base -> origin/gh/rec/148/base 2025-07-24T03:47:26.8989256Z * [new branch] gh/rec/148/head -> origin/gh/rec/148/head 2025-07-24T03:47:26.8989717Z * [new branch] gh/rec/148/orig -> origin/gh/rec/148/orig 2025-07-24T03:47:26.8990172Z * [new branch] gh/rec/150/base -> origin/gh/rec/150/base 2025-07-24T03:47:26.8990622Z * [new branch] gh/rec/150/head -> origin/gh/rec/150/head 2025-07-24T03:47:26.8991081Z * [new branch] gh/rec/150/orig -> origin/gh/rec/150/orig 2025-07-24T03:47:26.8991535Z * [new branch] gh/rec/153/base -> origin/gh/rec/153/base 2025-07-24T03:47:26.8991989Z * [new branch] gh/rec/153/head -> origin/gh/rec/153/head 2025-07-24T03:47:26.8992452Z * [new branch] gh/rec/153/orig -> origin/gh/rec/153/orig 2025-07-24T03:47:26.8992909Z * [new branch] gh/rec/154/base -> origin/gh/rec/154/base 2025-07-24T03:47:26.8993374Z * [new branch] gh/rec/154/head -> origin/gh/rec/154/head 2025-07-24T03:47:26.8993830Z * [new branch] gh/rec/154/orig -> origin/gh/rec/154/orig 2025-07-24T03:47:26.8994305Z * [new branch] gh/rec/156/base -> origin/gh/rec/156/base 2025-07-24T03:47:26.8994756Z * [new branch] gh/rec/156/head -> origin/gh/rec/156/head 2025-07-24T03:47:26.8995215Z * [new branch] gh/rec/156/orig -> origin/gh/rec/156/orig 2025-07-24T03:47:26.8995682Z * [new branch] gh/rec/157/base -> origin/gh/rec/157/base 2025-07-24T03:47:26.8996137Z * [new branch] gh/rec/157/head -> origin/gh/rec/157/head 2025-07-24T03:47:26.8996596Z * [new branch] gh/rec/157/orig -> origin/gh/rec/157/orig 2025-07-24T03:47:26.8997070Z * [new branch] gh/rtimpe/1/base -> origin/gh/rtimpe/1/base 2025-07-24T03:47:26.8997815Z * [new branch] gh/rtimpe/1/head -> origin/gh/rtimpe/1/head 2025-07-24T03:47:26.8998450Z * [new branch] gh/rtimpe/2/base -> origin/gh/rtimpe/2/base 2025-07-24T03:47:26.8998935Z * [new branch] gh/rtimpe/2/head -> origin/gh/rtimpe/2/head 2025-07-24T03:47:26.8999418Z * [new branch] gh/rtimpe/3/base -> origin/gh/rtimpe/3/base 2025-07-24T03:47:26.8999892Z * [new branch] gh/rtimpe/3/head -> origin/gh/rtimpe/3/head 2025-07-24T03:47:26.9000386Z * [new branch] gh/rtimpe/4/base -> origin/gh/rtimpe/4/base 2025-07-24T03:47:26.9000868Z * [new branch] gh/rtimpe/4/head -> origin/gh/rtimpe/4/head 2025-07-24T03:47:26.9001354Z * [new branch] gh/rtimpe/5/base -> origin/gh/rtimpe/5/base 2025-07-24T03:47:26.9001847Z * [new branch] gh/rtimpe/5/head -> origin/gh/rtimpe/5/head 2025-07-24T03:47:26.9002444Z * [new branch] gh/rtimpe/5/orig -> origin/gh/rtimpe/5/orig 2025-07-24T03:47:26.9002931Z * [new branch] gh/rtimpe/6/base -> origin/gh/rtimpe/6/base 2025-07-24T03:47:26.9003404Z * [new branch] gh/rtimpe/6/head -> origin/gh/rtimpe/6/head 2025-07-24T03:47:26.9003883Z * [new branch] gh/rtimpe/6/orig -> origin/gh/rtimpe/6/orig 2025-07-24T03:47:26.9526928Z * [new branch] gh/ruisizhang123/1/base -> origin/gh/ruisizhang123/1/base 2025-07-24T03:47:26.9527546Z * [new branch] gh/ruisizhang123/1/head -> origin/gh/ruisizhang123/1/head 2025-07-24T03:47:26.9528117Z * [new branch] gh/ruisizhang123/1/orig -> origin/gh/ruisizhang123/1/orig 2025-07-24T03:47:26.9528666Z * [new branch] gh/ruisizhang123/2/base -> origin/gh/ruisizhang123/2/base 2025-07-24T03:47:26.9529242Z * [new branch] gh/ruisizhang123/2/head -> origin/gh/ruisizhang123/2/head 2025-07-24T03:47:26.9529787Z * [new branch] gh/ruisizhang123/2/orig -> origin/gh/ruisizhang123/2/orig 2025-07-24T03:47:26.9530335Z * [new branch] gh/ruisizhang123/3/base -> origin/gh/ruisizhang123/3/base 2025-07-24T03:47:26.9530887Z * [new branch] gh/ruisizhang123/3/head -> origin/gh/ruisizhang123/3/head 2025-07-24T03:47:26.9531434Z * [new branch] gh/ruisizhang123/3/orig -> origin/gh/ruisizhang123/3/orig 2025-07-24T03:47:26.9531981Z * [new branch] gh/ruisizhang123/4/base -> origin/gh/ruisizhang123/4/base 2025-07-24T03:47:26.9532526Z * [new branch] gh/ruisizhang123/4/head -> origin/gh/ruisizhang123/4/head 2025-07-24T03:47:26.9533068Z * [new branch] gh/ruisizhang123/4/orig -> origin/gh/ruisizhang123/4/orig 2025-07-24T03:47:26.9533623Z * [new branch] gh/ruisizhang123/5/base -> origin/gh/ruisizhang123/5/base 2025-07-24T03:47:26.9534165Z * [new branch] gh/ruisizhang123/5/head -> origin/gh/ruisizhang123/5/head 2025-07-24T03:47:26.9534715Z * [new branch] gh/ruisizhang123/5/orig -> origin/gh/ruisizhang123/5/orig 2025-07-24T03:47:26.9535287Z * [new branch] gh/ruisizhang123/6/base -> origin/gh/ruisizhang123/6/base 2025-07-24T03:47:26.9535828Z * [new branch] gh/ruisizhang123/6/head -> origin/gh/ruisizhang123/6/head 2025-07-24T03:47:26.9536380Z * [new branch] gh/ruisizhang123/6/orig -> origin/gh/ruisizhang123/6/orig 2025-07-24T03:47:26.9536914Z * [new branch] gh/ruisizhang123/7/base -> origin/gh/ruisizhang123/7/base 2025-07-24T03:47:26.9537470Z * [new branch] gh/ruisizhang123/7/head -> origin/gh/ruisizhang123/7/head 2025-07-24T03:47:26.9538006Z * [new branch] gh/ruisizhang123/7/orig -> origin/gh/ruisizhang123/7/orig 2025-07-24T03:47:26.9538735Z * [new branch] gh/sarckk/2/base -> origin/gh/sarckk/2/base 2025-07-24T03:47:26.9539228Z * [new branch] gh/sarckk/2/head -> origin/gh/sarckk/2/head 2025-07-24T03:47:26.9539825Z * [new branch] gh/sarckk/2/orig -> origin/gh/sarckk/2/orig 2025-07-24T03:47:26.9540341Z * [new branch] gh/seemethere/14/base -> origin/gh/seemethere/14/base 2025-07-24T03:47:26.9540886Z * [new branch] gh/seemethere/14/head -> origin/gh/seemethere/14/head 2025-07-24T03:47:26.9541408Z * [new branch] gh/seemethere/14/orig -> origin/gh/seemethere/14/orig 2025-07-24T03:47:26.9541936Z * [new branch] gh/seemethere/23/base -> origin/gh/seemethere/23/base 2025-07-24T03:47:26.9542449Z * [new branch] gh/seemethere/23/head -> origin/gh/seemethere/23/head 2025-07-24T03:47:26.9542981Z * [new branch] gh/seemethere/23/orig -> origin/gh/seemethere/23/orig 2025-07-24T03:47:26.9543511Z * [new branch] gh/seemethere/24/base -> origin/gh/seemethere/24/base 2025-07-24T03:47:26.9544025Z * [new branch] gh/seemethere/24/head -> origin/gh/seemethere/24/head 2025-07-24T03:47:26.9544551Z * [new branch] gh/seemethere/24/orig -> origin/gh/seemethere/24/orig 2025-07-24T03:47:26.9545068Z * [new branch] gh/seemethere/30/base -> origin/gh/seemethere/30/base 2025-07-24T03:47:26.9545591Z * [new branch] gh/seemethere/30/head -> origin/gh/seemethere/30/head 2025-07-24T03:47:26.9546111Z * [new branch] gh/seemethere/30/orig -> origin/gh/seemethere/30/orig 2025-07-24T03:47:26.9546642Z * [new branch] gh/seemethere/32/base -> origin/gh/seemethere/32/base 2025-07-24T03:47:26.9547173Z * [new branch] gh/seemethere/32/head -> origin/gh/seemethere/32/head 2025-07-24T03:47:26.9547691Z * [new branch] gh/seemethere/32/orig -> origin/gh/seemethere/32/orig 2025-07-24T03:47:26.9548218Z * [new branch] gh/seemethere/33/base -> origin/gh/seemethere/33/base 2025-07-24T03:47:26.9548735Z * [new branch] gh/seemethere/33/head -> origin/gh/seemethere/33/head 2025-07-24T03:47:26.9549254Z * [new branch] gh/seemethere/33/orig -> origin/gh/seemethere/33/orig 2025-07-24T03:47:26.9549773Z * [new branch] gh/seemethere/34/base -> origin/gh/seemethere/34/base 2025-07-24T03:47:26.9550284Z * [new branch] gh/seemethere/34/head -> origin/gh/seemethere/34/head 2025-07-24T03:47:26.9550799Z * [new branch] gh/seemethere/34/orig -> origin/gh/seemethere/34/orig 2025-07-24T03:47:27.0042567Z * [new branch] gh/seemethere/35/base -> origin/gh/seemethere/35/base 2025-07-24T03:47:27.0043172Z * [new branch] gh/seemethere/35/head -> origin/gh/seemethere/35/head 2025-07-24T03:47:27.0043741Z * [new branch] gh/seemethere/35/orig -> origin/gh/seemethere/35/orig 2025-07-24T03:47:27.0044271Z * [new branch] gh/seemethere/36/base -> origin/gh/seemethere/36/base 2025-07-24T03:47:27.0044809Z * [new branch] gh/seemethere/36/head -> origin/gh/seemethere/36/head 2025-07-24T03:47:27.0045335Z * [new branch] gh/seemethere/36/orig -> origin/gh/seemethere/36/orig 2025-07-24T03:47:27.0045860Z * [new branch] gh/seemethere/37/base -> origin/gh/seemethere/37/base 2025-07-24T03:47:27.0046385Z * [new branch] gh/seemethere/37/head -> origin/gh/seemethere/37/head 2025-07-24T03:47:27.0046897Z * [new branch] gh/seemethere/37/orig -> origin/gh/seemethere/37/orig 2025-07-24T03:47:27.0047422Z * [new branch] gh/seemethere/38/base -> origin/gh/seemethere/38/base 2025-07-24T03:47:27.0047936Z * [new branch] gh/seemethere/38/head -> origin/gh/seemethere/38/head 2025-07-24T03:47:27.0048676Z * [new branch] gh/seemethere/38/orig -> origin/gh/seemethere/38/orig 2025-07-24T03:47:27.0049321Z * [new branch] gh/seemethere/39/base -> origin/gh/seemethere/39/base 2025-07-24T03:47:27.0049841Z * [new branch] gh/seemethere/39/head -> origin/gh/seemethere/39/head 2025-07-24T03:47:27.0050365Z * [new branch] gh/seemethere/39/orig -> origin/gh/seemethere/39/orig 2025-07-24T03:47:27.0050881Z * [new branch] gh/seemethere/40/base -> origin/gh/seemethere/40/base 2025-07-24T03:47:27.0051410Z * [new branch] gh/seemethere/40/head -> origin/gh/seemethere/40/head 2025-07-24T03:47:27.0051938Z * [new branch] gh/seemethere/40/orig -> origin/gh/seemethere/40/orig 2025-07-24T03:47:27.0052452Z * [new branch] gh/seemethere/41/base -> origin/gh/seemethere/41/base 2025-07-24T03:47:27.0052976Z * [new branch] gh/seemethere/41/head -> origin/gh/seemethere/41/head 2025-07-24T03:47:27.0053490Z * [new branch] gh/seemethere/41/orig -> origin/gh/seemethere/41/orig 2025-07-24T03:47:27.0054012Z * [new branch] gh/seemethere/42/base -> origin/gh/seemethere/42/base 2025-07-24T03:47:27.0054526Z * [new branch] gh/seemethere/42/head -> origin/gh/seemethere/42/head 2025-07-24T03:47:27.0055039Z * [new branch] gh/seemethere/42/orig -> origin/gh/seemethere/42/orig 2025-07-24T03:47:27.0055559Z * [new branch] gh/seemethere/43/base -> origin/gh/seemethere/43/base 2025-07-24T03:47:27.0056077Z * [new branch] gh/seemethere/43/head -> origin/gh/seemethere/43/head 2025-07-24T03:47:27.0056598Z * [new branch] gh/seemethere/43/orig -> origin/gh/seemethere/43/orig 2025-07-24T03:47:27.0057125Z * [new branch] gh/seemethere/44/base -> origin/gh/seemethere/44/base 2025-07-24T03:47:27.0057649Z * [new branch] gh/seemethere/44/head -> origin/gh/seemethere/44/head 2025-07-24T03:47:27.0058171Z * [new branch] gh/seemethere/44/orig -> origin/gh/seemethere/44/orig 2025-07-24T03:47:27.0058692Z * [new branch] gh/seemethere/45/base -> origin/gh/seemethere/45/base 2025-07-24T03:47:27.0059210Z * [new branch] gh/seemethere/45/head -> origin/gh/seemethere/45/head 2025-07-24T03:47:27.0059735Z * [new branch] gh/seemethere/45/orig -> origin/gh/seemethere/45/orig 2025-07-24T03:47:27.0060247Z * [new branch] gh/seemethere/46/base -> origin/gh/seemethere/46/base 2025-07-24T03:47:27.0060774Z * [new branch] gh/seemethere/46/head -> origin/gh/seemethere/46/head 2025-07-24T03:47:27.0061290Z * [new branch] gh/seemethere/46/orig -> origin/gh/seemethere/46/orig 2025-07-24T03:47:27.0061810Z * [new branch] gh/seemethere/47/base -> origin/gh/seemethere/47/base 2025-07-24T03:47:27.0062328Z * [new branch] gh/seemethere/47/head -> origin/gh/seemethere/47/head 2025-07-24T03:47:27.0062857Z * [new branch] gh/seemethere/47/orig -> origin/gh/seemethere/47/orig 2025-07-24T03:47:27.0063390Z * [new branch] gh/seemethere/48/base -> origin/gh/seemethere/48/base 2025-07-24T03:47:27.0063909Z * [new branch] gh/seemethere/48/head -> origin/gh/seemethere/48/head 2025-07-24T03:47:27.0064440Z * [new branch] gh/seemethere/48/orig -> origin/gh/seemethere/48/orig 2025-07-24T03:47:27.0064953Z * [new branch] gh/seemethere/49/base -> origin/gh/seemethere/49/base 2025-07-24T03:47:27.0065489Z * [new branch] gh/seemethere/49/head -> origin/gh/seemethere/49/head 2025-07-24T03:47:27.0066015Z * [new branch] gh/seemethere/49/orig -> origin/gh/seemethere/49/orig 2025-07-24T03:47:27.0066645Z * [new branch] gh/seemethere/50/base -> origin/gh/seemethere/50/base 2025-07-24T03:47:27.0590424Z * [new branch] gh/seemethere/50/head -> origin/gh/seemethere/50/head 2025-07-24T03:47:27.0591245Z * [new branch] gh/seemethere/50/orig -> origin/gh/seemethere/50/orig 2025-07-24T03:47:27.0591800Z * [new branch] gh/seemethere/7/base -> origin/gh/seemethere/7/base 2025-07-24T03:47:27.0592371Z * [new branch] gh/seemethere/7/head -> origin/gh/seemethere/7/head 2025-07-24T03:47:27.0592892Z * [new branch] gh/seemethere/7/orig -> origin/gh/seemethere/7/orig 2025-07-24T03:47:27.0593437Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-07-24T03:47:27.0593995Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-07-24T03:47:27.0594537Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-07-24T03:47:27.0595089Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-07-24T03:47:27.0595629Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-07-24T03:47:27.0596168Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-07-24T03:47:27.0596701Z * [new branch] gh/shunting314/211/base -> origin/gh/shunting314/211/base 2025-07-24T03:47:27.0597246Z * [new branch] gh/shunting314/211/head -> origin/gh/shunting314/211/head 2025-07-24T03:47:27.0597796Z * [new branch] gh/shunting314/211/orig -> origin/gh/shunting314/211/orig 2025-07-24T03:47:27.0598324Z * [new branch] gh/shunting314/212/base -> origin/gh/shunting314/212/base 2025-07-24T03:47:27.0598858Z * [new branch] gh/shunting314/212/head -> origin/gh/shunting314/212/head 2025-07-24T03:47:27.0599390Z * [new branch] gh/shunting314/212/orig -> origin/gh/shunting314/212/orig 2025-07-24T03:47:27.0599936Z * [new branch] gh/shunting314/213/base -> origin/gh/shunting314/213/base 2025-07-24T03:47:27.0600485Z * [new branch] gh/shunting314/213/head -> origin/gh/shunting314/213/head 2025-07-24T03:47:27.0601015Z * [new branch] gh/shunting314/213/orig -> origin/gh/shunting314/213/orig 2025-07-24T03:47:27.0601557Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-07-24T03:47:27.0602069Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-07-24T03:47:27.0602712Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-07-24T03:47:27.0603241Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-07-24T03:47:27.0603761Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-07-24T03:47:27.0604280Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-07-24T03:47:27.0604791Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-07-24T03:47:27.0605297Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-07-24T03:47:27.0605806Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-07-24T03:47:27.0606337Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-07-24T03:47:27.0606845Z * [new branch] gh/skarjala/1/base -> origin/gh/skarjala/1/base 2025-07-24T03:47:27.0607424Z * [new branch] gh/skarjala/1/head -> origin/gh/skarjala/1/head 2025-07-24T03:47:27.0607979Z * [new branch] gh/skarjala/1/orig -> origin/gh/skarjala/1/orig 2025-07-24T03:47:27.0608473Z * [new branch] gh/skarjala/10/base -> origin/gh/skarjala/10/base 2025-07-24T03:47:27.0609147Z * [new branch] gh/skarjala/10/head -> origin/gh/skarjala/10/head 2025-07-24T03:47:27.0609746Z * [new branch] gh/skarjala/10/orig -> origin/gh/skarjala/10/orig 2025-07-24T03:47:27.0610268Z * [new branch] gh/skarjala/11/base -> origin/gh/skarjala/11/base 2025-07-24T03:47:27.0610772Z * [new branch] gh/skarjala/11/head -> origin/gh/skarjala/11/head 2025-07-24T03:47:27.0611266Z * [new branch] gh/skarjala/11/orig -> origin/gh/skarjala/11/orig 2025-07-24T03:47:27.0611774Z * [new branch] gh/skarjala/12/base -> origin/gh/skarjala/12/base 2025-07-24T03:47:27.0612267Z * [new branch] gh/skarjala/12/head -> origin/gh/skarjala/12/head 2025-07-24T03:47:27.0612772Z * [new branch] gh/skarjala/12/orig -> origin/gh/skarjala/12/orig 2025-07-24T03:47:27.0613276Z * [new branch] gh/skarjala/2/base -> origin/gh/skarjala/2/base 2025-07-24T03:47:27.0613823Z * [new branch] gh/skarjala/2/head -> origin/gh/skarjala/2/head 2025-07-24T03:47:27.0614327Z * [new branch] gh/skarjala/2/orig -> origin/gh/skarjala/2/orig 2025-07-24T03:47:27.0614819Z * [new branch] gh/skarjala/3/base -> origin/gh/skarjala/3/base 2025-07-24T03:47:27.0615313Z * [new branch] gh/skarjala/3/head -> origin/gh/skarjala/3/head 2025-07-24T03:47:27.1277920Z * [new branch] gh/skarjala/3/orig -> origin/gh/skarjala/3/orig 2025-07-24T03:47:27.1278458Z * [new branch] gh/skarjala/4/base -> origin/gh/skarjala/4/base 2025-07-24T03:47:27.1278964Z * [new branch] gh/skarjala/4/head -> origin/gh/skarjala/4/head 2025-07-24T03:47:27.1279450Z * [new branch] gh/skarjala/4/orig -> origin/gh/skarjala/4/orig 2025-07-24T03:47:27.1279962Z * [new branch] gh/skarjala/5/base -> origin/gh/skarjala/5/base 2025-07-24T03:47:27.1280464Z * [new branch] gh/skarjala/5/head -> origin/gh/skarjala/5/head 2025-07-24T03:47:27.1281014Z * [new branch] gh/skarjala/5/orig -> origin/gh/skarjala/5/orig 2025-07-24T03:47:27.1281509Z * [new branch] gh/skarjala/6/base -> origin/gh/skarjala/6/base 2025-07-24T03:47:27.1281996Z * [new branch] gh/skarjala/6/head -> origin/gh/skarjala/6/head 2025-07-24T03:47:27.1282564Z * [new branch] gh/skarjala/6/orig -> origin/gh/skarjala/6/orig 2025-07-24T03:47:27.1283049Z * [new branch] gh/skarjala/7/base -> origin/gh/skarjala/7/base 2025-07-24T03:47:27.1283626Z * [new branch] gh/skarjala/7/head -> origin/gh/skarjala/7/head 2025-07-24T03:47:27.1284173Z * [new branch] gh/skarjala/7/orig -> origin/gh/skarjala/7/orig 2025-07-24T03:47:27.1284663Z * [new branch] gh/skarjala/8/base -> origin/gh/skarjala/8/base 2025-07-24T03:47:27.1285160Z * [new branch] gh/skarjala/8/head -> origin/gh/skarjala/8/head 2025-07-24T03:47:27.1285648Z * [new branch] gh/skarjala/8/orig -> origin/gh/skarjala/8/orig 2025-07-24T03:47:27.1286148Z * [new branch] gh/skarjala/9/base -> origin/gh/skarjala/9/base 2025-07-24T03:47:27.1286693Z * [new branch] gh/skarjala/9/head -> origin/gh/skarjala/9/head 2025-07-24T03:47:27.1287181Z * [new branch] gh/skarjala/9/orig -> origin/gh/skarjala/9/orig 2025-07-24T03:47:27.1287692Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-07-24T03:47:27.1288235Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-07-24T03:47:27.1288818Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-07-24T03:47:27.1289525Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-07-24T03:47:27.1290153Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-07-24T03:47:27.1306557Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-07-24T03:47:27.1307138Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-07-24T03:47:27.1307684Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-07-24T03:47:27.1308211Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-07-24T03:47:27.1308735Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-07-24T03:47:27.1309243Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-07-24T03:47:27.1309777Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-07-24T03:47:27.1310370Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-07-24T03:47:27.1310945Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-07-24T03:47:27.1311473Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-07-24T03:47:27.1311989Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-07-24T03:47:27.1312512Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-07-24T03:47:27.1313025Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-07-24T03:47:27.1313565Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-07-24T03:47:27.1314092Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-07-24T03:47:27.1314614Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-07-24T03:47:27.1315134Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-07-24T03:47:27.1315654Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-07-24T03:47:27.1316224Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-07-24T03:47:27.1316802Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-07-24T03:47:27.1317320Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-07-24T03:47:27.1317848Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-07-24T03:47:27.1318365Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-07-24T03:47:27.2538023Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-07-24T03:47:27.2538644Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-07-24T03:47:27.2539188Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-07-24T03:47:27.2539722Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-07-24T03:47:27.2540237Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-07-24T03:47:27.2540763Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-07-24T03:47:27.2541288Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-07-24T03:47:27.2541810Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-07-24T03:47:27.2542335Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-07-24T03:47:27.2543060Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-07-24T03:47:27.2543581Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-07-24T03:47:27.2544242Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-07-24T03:47:27.2544762Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-07-24T03:47:27.2545308Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-07-24T03:47:27.2545826Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-07-24T03:47:27.2546351Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-07-24T03:47:27.2546883Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-07-24T03:47:27.2547405Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-07-24T03:47:27.2547949Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-07-24T03:47:27.2548469Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-07-24T03:47:27.2548987Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-07-24T03:47:27.2549510Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-07-24T03:47:27.2550022Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-07-24T03:47:27.2550537Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-07-24T03:47:27.2551052Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-07-24T03:47:27.2551572Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-07-24T03:47:27.2552088Z * [new branch] gh/soulitzer/362/base -> origin/gh/soulitzer/362/base 2025-07-24T03:47:27.2552600Z * [new branch] gh/soulitzer/362/head -> origin/gh/soulitzer/362/head 2025-07-24T03:47:27.2553118Z * [new branch] gh/soulitzer/362/orig -> origin/gh/soulitzer/362/orig 2025-07-24T03:47:27.2553630Z * [new branch] gh/soulitzer/372/base -> origin/gh/soulitzer/372/base 2025-07-24T03:47:27.2554152Z * [new branch] gh/soulitzer/372/head -> origin/gh/soulitzer/372/head 2025-07-24T03:47:27.2554669Z * [new branch] gh/soulitzer/372/orig -> origin/gh/soulitzer/372/orig 2025-07-24T03:47:27.2555192Z * [new branch] gh/soulitzer/374/base -> origin/gh/soulitzer/374/base 2025-07-24T03:47:27.2555734Z * [new branch] gh/soulitzer/374/head -> origin/gh/soulitzer/374/head 2025-07-24T03:47:27.2556247Z * [new branch] gh/soulitzer/374/orig -> origin/gh/soulitzer/374/orig 2025-07-24T03:47:27.2556754Z * [new branch] gh/suo/619/base -> origin/gh/suo/619/base 2025-07-24T03:47:27.2557250Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-07-24T03:47:27.2557782Z * [new branch] gh/swolchok/758/base -> origin/gh/swolchok/758/base 2025-07-24T03:47:27.2558300Z * [new branch] gh/swolchok/758/head -> origin/gh/swolchok/758/head 2025-07-24T03:47:27.2558806Z * [new branch] gh/swolchok/758/orig -> origin/gh/swolchok/758/orig 2025-07-24T03:47:27.2559331Z * [new branch] gh/swolchok/767/base -> origin/gh/swolchok/767/base 2025-07-24T03:47:27.2559842Z * [new branch] gh/swolchok/767/head -> origin/gh/swolchok/767/head 2025-07-24T03:47:27.2560357Z * [new branch] gh/swolchok/767/orig -> origin/gh/swolchok/767/orig 2025-07-24T03:47:27.2560877Z * [new branch] gh/swolchok/768/base -> origin/gh/swolchok/768/base 2025-07-24T03:47:27.2562444Z * [new branch] gh/swolchok/768/head -> origin/gh/swolchok/768/head 2025-07-24T03:47:27.2563198Z * [new branch] gh/swolchok/768/orig -> origin/gh/swolchok/768/orig 2025-07-24T03:47:27.3107758Z * [new branch] gh/swolchok/769/base -> origin/gh/swolchok/769/base 2025-07-24T03:47:27.3108346Z * [new branch] gh/swolchok/769/head -> origin/gh/swolchok/769/head 2025-07-24T03:47:27.3108879Z * [new branch] gh/swolchok/769/orig -> origin/gh/swolchok/769/orig 2025-07-24T03:47:27.3109390Z * [new branch] gh/swolchok/771/base -> origin/gh/swolchok/771/base 2025-07-24T03:47:27.3109913Z * [new branch] gh/swolchok/771/head -> origin/gh/swolchok/771/head 2025-07-24T03:47:27.3110416Z * [new branch] gh/swolchok/771/orig -> origin/gh/swolchok/771/orig 2025-07-24T03:47:27.3110932Z * [new branch] gh/swolchok/772/base -> origin/gh/swolchok/772/base 2025-07-24T03:47:27.3111465Z * [new branch] gh/swolchok/772/head -> origin/gh/swolchok/772/head 2025-07-24T03:47:27.3111980Z * [new branch] gh/swolchok/772/orig -> origin/gh/swolchok/772/orig 2025-07-24T03:47:27.3112494Z * [new branch] gh/swolchok/773/base -> origin/gh/swolchok/773/base 2025-07-24T03:47:27.3113002Z * [new branch] gh/swolchok/773/head -> origin/gh/swolchok/773/head 2025-07-24T03:47:27.3113517Z * [new branch] gh/swolchok/773/orig -> origin/gh/swolchok/773/orig 2025-07-24T03:47:27.3114034Z * [new branch] gh/swolchok/775/base -> origin/gh/swolchok/775/base 2025-07-24T03:47:27.3114544Z * [new branch] gh/swolchok/775/head -> origin/gh/swolchok/775/head 2025-07-24T03:47:27.3115055Z * [new branch] gh/swolchok/775/orig -> origin/gh/swolchok/775/orig 2025-07-24T03:47:27.3115560Z * [new branch] gh/swolchok/777/base -> origin/gh/swolchok/777/base 2025-07-24T03:47:27.3116080Z * [new branch] gh/swolchok/777/head -> origin/gh/swolchok/777/head 2025-07-24T03:47:27.3116601Z * [new branch] gh/swolchok/777/orig -> origin/gh/swolchok/777/orig 2025-07-24T03:47:27.3117106Z * [new branch] gh/swolchok/783/base -> origin/gh/swolchok/783/base 2025-07-24T03:47:27.3117614Z * [new branch] gh/swolchok/783/head -> origin/gh/swolchok/783/head 2025-07-24T03:47:27.3118123Z * [new branch] gh/swolchok/783/orig -> origin/gh/swolchok/783/orig 2025-07-24T03:47:27.3118632Z * [new branch] gh/swolchok/784/base -> origin/gh/swolchok/784/base 2025-07-24T03:47:27.3119132Z * [new branch] gh/swolchok/784/head -> origin/gh/swolchok/784/head 2025-07-24T03:47:27.3119646Z * [new branch] gh/swolchok/784/orig -> origin/gh/swolchok/784/orig 2025-07-24T03:47:27.3120162Z * [new branch] gh/swolchok/785/base -> origin/gh/swolchok/785/base 2025-07-24T03:47:27.3120668Z * [new branch] gh/swolchok/785/head -> origin/gh/swolchok/785/head 2025-07-24T03:47:27.3121181Z * [new branch] gh/swolchok/785/orig -> origin/gh/swolchok/785/orig 2025-07-24T03:47:27.3121695Z * [new branch] gh/syed-ahmed/2/base -> origin/gh/syed-ahmed/2/base 2025-07-24T03:47:27.3122290Z * [new branch] gh/syed-ahmed/2/head -> origin/gh/syed-ahmed/2/head 2025-07-24T03:47:27.3122804Z * [new branch] gh/syed-ahmed/2/orig -> origin/gh/syed-ahmed/2/orig 2025-07-24T03:47:27.3123323Z * [new branch] gh/teja-rao/1/base -> origin/gh/teja-rao/1/base 2025-07-24T03:47:27.3123811Z * [new branch] gh/teja-rao/1/head -> origin/gh/teja-rao/1/head 2025-07-24T03:47:27.3124310Z * [new branch] gh/teja-rao/1/orig -> origin/gh/teja-rao/1/orig 2025-07-24T03:47:27.3125012Z * [new branch] gh/teja-rao/2/base -> origin/gh/teja-rao/2/base 2025-07-24T03:47:27.3125622Z * [new branch] gh/teja-rao/2/head -> origin/gh/teja-rao/2/head 2025-07-24T03:47:27.3126114Z * [new branch] gh/teja-rao/2/orig -> origin/gh/teja-rao/2/orig 2025-07-24T03:47:27.3126594Z * [new branch] gh/teja-rao/3/base -> origin/gh/teja-rao/3/base 2025-07-24T03:47:27.3127092Z * [new branch] gh/teja-rao/3/head -> origin/gh/teja-rao/3/head 2025-07-24T03:47:27.3127587Z * [new branch] gh/teja-rao/3/orig -> origin/gh/teja-rao/3/orig 2025-07-24T03:47:27.3128067Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-07-24T03:47:27.3128587Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-07-24T03:47:27.3129068Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-07-24T03:47:27.3129557Z * [new branch] gh/tianyu-l/3/base -> origin/gh/tianyu-l/3/base 2025-07-24T03:47:27.3130048Z * [new branch] gh/tianyu-l/3/orig -> origin/gh/tianyu-l/3/orig 2025-07-24T03:47:27.3130525Z * [new branch] gh/tianyu-l/4/base -> origin/gh/tianyu-l/4/base 2025-07-24T03:47:27.3131014Z * [new branch] gh/tianyu-l/4/head -> origin/gh/tianyu-l/4/head 2025-07-24T03:47:27.3131493Z * [new branch] gh/tianyu-l/4/orig -> origin/gh/tianyu-l/4/orig 2025-07-24T03:47:27.3602499Z * [new branch] gh/titaiwangms/1/base -> origin/gh/titaiwangms/1/base 2025-07-24T03:47:27.3603137Z * [new branch] gh/titaiwangms/1/head -> origin/gh/titaiwangms/1/head 2025-07-24T03:47:27.3603827Z * [new branch] gh/titaiwangms/1/orig -> origin/gh/titaiwangms/1/orig 2025-07-24T03:47:27.3604415Z * [new branch] gh/titaiwangms/2/base -> origin/gh/titaiwangms/2/base 2025-07-24T03:47:27.3604950Z * [new branch] gh/titaiwangms/2/head -> origin/gh/titaiwangms/2/head 2025-07-24T03:47:27.3605488Z * [new branch] gh/titaiwangms/2/orig -> origin/gh/titaiwangms/2/orig 2025-07-24T03:47:27.3606018Z * [new branch] gh/titaiwangms/3/base -> origin/gh/titaiwangms/3/base 2025-07-24T03:47:27.3606536Z * [new branch] gh/titaiwangms/3/head -> origin/gh/titaiwangms/3/head 2025-07-24T03:47:27.3607065Z * [new branch] gh/titaiwangms/3/orig -> origin/gh/titaiwangms/3/orig 2025-07-24T03:47:27.3607583Z * [new branch] gh/titaiwangms/4/base -> origin/gh/titaiwangms/4/base 2025-07-24T03:47:27.3608114Z * [new branch] gh/titaiwangms/4/head -> origin/gh/titaiwangms/4/head 2025-07-24T03:47:27.3608647Z * [new branch] gh/titaiwangms/4/orig -> origin/gh/titaiwangms/4/orig 2025-07-24T03:47:27.3609179Z * [new branch] gh/titaiwangms/5/base -> origin/gh/titaiwangms/5/base 2025-07-24T03:47:27.3609717Z * [new branch] gh/titaiwangms/5/head -> origin/gh/titaiwangms/5/head 2025-07-24T03:47:27.3610239Z * [new branch] gh/titaiwangms/5/orig -> origin/gh/titaiwangms/5/orig 2025-07-24T03:47:27.3610763Z * [new branch] gh/titaiwangms/6/base -> origin/gh/titaiwangms/6/base 2025-07-24T03:47:27.3611296Z * [new branch] gh/titaiwangms/6/head -> origin/gh/titaiwangms/6/head 2025-07-24T03:47:27.3611818Z * [new branch] gh/titaiwangms/6/orig -> origin/gh/titaiwangms/6/orig 2025-07-24T03:47:27.3612348Z * [new branch] gh/titaiwangms/7/base -> origin/gh/titaiwangms/7/base 2025-07-24T03:47:27.3612873Z * [new branch] gh/titaiwangms/7/head -> origin/gh/titaiwangms/7/head 2025-07-24T03:47:27.3613604Z * [new branch] gh/titaiwangms/7/orig -> origin/gh/titaiwangms/7/orig 2025-07-24T03:47:27.3614147Z * [new branch] gh/titaiwangms/8/base -> origin/gh/titaiwangms/8/base 2025-07-24T03:47:27.3615766Z * [new branch] gh/titaiwangms/8/head -> origin/gh/titaiwangms/8/head 2025-07-24T03:47:27.3616354Z * [new branch] gh/titaiwangms/8/orig -> origin/gh/titaiwangms/8/orig 2025-07-24T03:47:27.3616856Z * [new branch] gh/v0i0/1/base -> origin/gh/v0i0/1/base 2025-07-24T03:47:27.3617332Z * [new branch] gh/v0i0/1/head -> origin/gh/v0i0/1/head 2025-07-24T03:47:27.3617781Z * [new branch] gh/v0i0/1/orig -> origin/gh/v0i0/1/orig 2025-07-24T03:47:27.3618238Z * [new branch] gh/v0i0/2/base -> origin/gh/v0i0/2/base 2025-07-24T03:47:27.3618701Z * [new branch] gh/v0i0/2/head -> origin/gh/v0i0/2/head 2025-07-24T03:47:27.3619152Z * [new branch] gh/v0i0/2/orig -> origin/gh/v0i0/2/orig 2025-07-24T03:47:27.3619603Z * [new branch] gh/v0i0/3/base -> origin/gh/v0i0/3/base 2025-07-24T03:47:27.3620049Z * [new branch] gh/v0i0/3/head -> origin/gh/v0i0/3/head 2025-07-24T03:47:27.3620501Z * [new branch] gh/v0i0/3/orig -> origin/gh/v0i0/3/orig 2025-07-24T03:47:27.3620972Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-07-24T03:47:27.3621441Z * [new branch] gh/vkuzo/10/base -> origin/gh/vkuzo/10/base 2025-07-24T03:47:27.3621931Z * [new branch] gh/vkuzo/10/head -> origin/gh/vkuzo/10/head 2025-07-24T03:47:27.3622406Z * [new branch] gh/vkuzo/10/orig -> origin/gh/vkuzo/10/orig 2025-07-24T03:47:27.3622883Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-07-24T03:47:27.3623362Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-07-24T03:47:27.3623859Z * [new branch] gh/wanchaol/373/base -> origin/gh/wanchaol/373/base 2025-07-24T03:47:27.3624443Z * [new branch] gh/wanchaol/373/head -> origin/gh/wanchaol/373/head 2025-07-24T03:47:27.3625305Z * [new branch] gh/wanchaol/373/orig -> origin/gh/wanchaol/373/orig 2025-07-24T03:47:27.3626249Z * [new branch] gh/wanchaol/374/base -> origin/gh/wanchaol/374/base 2025-07-24T03:47:27.3627068Z * [new branch] gh/wanchaol/374/head -> origin/gh/wanchaol/374/head 2025-07-24T03:47:27.3627900Z * [new branch] gh/wanchaol/374/orig -> origin/gh/wanchaol/374/orig 2025-07-24T03:47:27.3628725Z * [new branch] gh/wconstab/392/base -> origin/gh/wconstab/392/base 2025-07-24T03:47:27.3629564Z * [new branch] gh/wconstab/392/head -> origin/gh/wconstab/392/head 2025-07-24T03:47:27.4154509Z * [new branch] gh/wconstab/392/orig -> origin/gh/wconstab/392/orig 2025-07-24T03:47:27.4155079Z * [new branch] gh/wconstab/419/base -> origin/gh/wconstab/419/base 2025-07-24T03:47:27.4155622Z * [new branch] gh/wconstab/419/head -> origin/gh/wconstab/419/head 2025-07-24T03:47:27.4156134Z * [new branch] gh/wconstab/419/orig -> origin/gh/wconstab/419/orig 2025-07-24T03:47:27.4156634Z * [new branch] gh/wconstab/420/base -> origin/gh/wconstab/420/base 2025-07-24T03:47:27.4157143Z * [new branch] gh/wconstab/420/head -> origin/gh/wconstab/420/head 2025-07-24T03:47:27.4157655Z * [new branch] gh/wconstab/420/orig -> origin/gh/wconstab/420/orig 2025-07-24T03:47:27.4158158Z * [new branch] gh/wconstab/421/base -> origin/gh/wconstab/421/base 2025-07-24T03:47:27.4158672Z * [new branch] gh/wconstab/421/orig -> origin/gh/wconstab/421/orig 2025-07-24T03:47:27.4159410Z * [new branch] gh/wconstab/422/base -> origin/gh/wconstab/422/base 2025-07-24T03:47:27.4160039Z * [new branch] gh/wconstab/422/head -> origin/gh/wconstab/422/head 2025-07-24T03:47:27.4160549Z * [new branch] gh/wconstab/422/orig -> origin/gh/wconstab/422/orig 2025-07-24T03:47:27.4161050Z * [new branch] gh/wconstab/423/base -> origin/gh/wconstab/423/base 2025-07-24T03:47:27.4161571Z * [new branch] gh/wconstab/423/head -> origin/gh/wconstab/423/head 2025-07-24T03:47:27.4162084Z * [new branch] gh/wconstab/423/orig -> origin/gh/wconstab/423/orig 2025-07-24T03:47:27.4162742Z * [new branch] gh/wconstab/424/base -> origin/gh/wconstab/424/base 2025-07-24T03:47:27.4163263Z * [new branch] gh/wconstab/424/head -> origin/gh/wconstab/424/head 2025-07-24T03:47:27.4163827Z * [new branch] gh/wconstab/424/orig -> origin/gh/wconstab/424/orig 2025-07-24T03:47:27.4164334Z * [new branch] gh/wconstab/425/base -> origin/gh/wconstab/425/base 2025-07-24T03:47:27.4164834Z * [new branch] gh/wconstab/425/head -> origin/gh/wconstab/425/head 2025-07-24T03:47:27.4165337Z * [new branch] gh/wconstab/425/orig -> origin/gh/wconstab/425/orig 2025-07-24T03:47:27.4165844Z * [new branch] gh/wconstab/426/base -> origin/gh/wconstab/426/base 2025-07-24T03:47:27.4166343Z * [new branch] gh/wconstab/426/head -> origin/gh/wconstab/426/head 2025-07-24T03:47:27.4166849Z * [new branch] gh/wconstab/426/orig -> origin/gh/wconstab/426/orig 2025-07-24T03:47:27.4167354Z * [new branch] gh/wconstab/427/base -> origin/gh/wconstab/427/base 2025-07-24T03:47:27.4167863Z * [new branch] gh/wconstab/427/head -> origin/gh/wconstab/427/head 2025-07-24T03:47:27.4168379Z * [new branch] gh/wconstab/427/orig -> origin/gh/wconstab/427/orig 2025-07-24T03:47:27.4168926Z * [new branch] gh/wconstab/428/base -> origin/gh/wconstab/428/base 2025-07-24T03:47:27.4169451Z * [new branch] gh/wconstab/428/head -> origin/gh/wconstab/428/head 2025-07-24T03:47:27.4170001Z * [new branch] gh/wconstab/428/orig -> origin/gh/wconstab/428/orig 2025-07-24T03:47:27.4170513Z * [new branch] gh/wconstab/429/base -> origin/gh/wconstab/429/base 2025-07-24T03:47:27.4171027Z * [new branch] gh/wconstab/429/head -> origin/gh/wconstab/429/head 2025-07-24T03:47:27.4171526Z * [new branch] gh/wconstab/429/orig -> origin/gh/wconstab/429/orig 2025-07-24T03:47:27.4172033Z * [new branch] gh/wconstab/430/base -> origin/gh/wconstab/430/base 2025-07-24T03:47:27.4172532Z * [new branch] gh/wconstab/430/head -> origin/gh/wconstab/430/head 2025-07-24T03:47:27.4173049Z * [new branch] gh/wconstab/430/orig -> origin/gh/wconstab/430/orig 2025-07-24T03:47:27.4173551Z * [new branch] gh/wconstab/431/base -> origin/gh/wconstab/431/base 2025-07-24T03:47:27.4174063Z * [new branch] gh/wconstab/431/head -> origin/gh/wconstab/431/head 2025-07-24T03:47:27.4174579Z * [new branch] gh/wconstab/431/orig -> origin/gh/wconstab/431/orig 2025-07-24T03:47:27.4175086Z * [new branch] gh/weifengpy/27/base -> origin/gh/weifengpy/27/base 2025-07-24T03:47:27.4175652Z * [new branch] gh/weifengpy/27/head -> origin/gh/weifengpy/27/head 2025-07-24T03:47:27.4176211Z * [new branch] gh/weifengpy/27/orig -> origin/gh/weifengpy/27/orig 2025-07-24T03:47:27.4176730Z * [new branch] gh/weifengpy/30/base -> origin/gh/weifengpy/30/base 2025-07-24T03:47:27.4177379Z * [new branch] gh/weifengpy/30/head -> origin/gh/weifengpy/30/head 2025-07-24T03:47:27.4177894Z * [new branch] gh/weifengpy/30/orig -> origin/gh/weifengpy/30/orig 2025-07-24T03:47:27.4178522Z * [new branch] gh/weifengpy/31/base -> origin/gh/weifengpy/31/base 2025-07-24T03:47:27.4697286Z * [new branch] gh/weifengpy/31/head -> origin/gh/weifengpy/31/head 2025-07-24T03:47:27.4697819Z * [new branch] gh/weifengpy/31/orig -> origin/gh/weifengpy/31/orig 2025-07-24T03:47:27.4698361Z * [new branch] gh/weifengpy/32/base -> origin/gh/weifengpy/32/base 2025-07-24T03:47:27.4698876Z * [new branch] gh/weifengpy/32/head -> origin/gh/weifengpy/32/head 2025-07-24T03:47:27.4699402Z * [new branch] gh/weifengpy/32/orig -> origin/gh/weifengpy/32/orig 2025-07-24T03:47:27.4699943Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-07-24T03:47:27.4700516Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-07-24T03:47:27.4701085Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-07-24T03:47:27.4701635Z * [new branch] gh/williamwen42/209/base -> origin/gh/williamwen42/209/base 2025-07-24T03:47:27.4702194Z * [new branch] gh/williamwen42/209/head -> origin/gh/williamwen42/209/head 2025-07-24T03:47:27.4702743Z * [new branch] gh/williamwen42/209/orig -> origin/gh/williamwen42/209/orig 2025-07-24T03:47:27.4703289Z * [new branch] gh/williamwen42/241/base -> origin/gh/williamwen42/241/base 2025-07-24T03:47:27.4703838Z * [new branch] gh/williamwen42/241/head -> origin/gh/williamwen42/241/head 2025-07-24T03:47:27.4704382Z * [new branch] gh/williamwen42/241/orig -> origin/gh/williamwen42/241/orig 2025-07-24T03:47:27.4704940Z * [new branch] gh/williamwen42/242/base -> origin/gh/williamwen42/242/base 2025-07-24T03:47:27.4705489Z * [new branch] gh/williamwen42/242/head -> origin/gh/williamwen42/242/head 2025-07-24T03:47:27.4706044Z * [new branch] gh/williamwen42/242/orig -> origin/gh/williamwen42/242/orig 2025-07-24T03:47:27.4706606Z * [new branch] gh/williamwen42/243/base -> origin/gh/williamwen42/243/base 2025-07-24T03:47:27.4707152Z * [new branch] gh/williamwen42/243/head -> origin/gh/williamwen42/243/head 2025-07-24T03:47:27.4707708Z * [new branch] gh/williamwen42/243/orig -> origin/gh/williamwen42/243/orig 2025-07-24T03:47:27.4708257Z * [new branch] gh/williamwen42/244/base -> origin/gh/williamwen42/244/base 2025-07-24T03:47:27.4708811Z * [new branch] gh/williamwen42/244/head -> origin/gh/williamwen42/244/head 2025-07-24T03:47:27.4709363Z * [new branch] gh/williamwen42/244/orig -> origin/gh/williamwen42/244/orig 2025-07-24T03:47:27.4709931Z * [new branch] gh/williamwen42/245/base -> origin/gh/williamwen42/245/base 2025-07-24T03:47:27.4710499Z * [new branch] gh/williamwen42/245/head -> origin/gh/williamwen42/245/head 2025-07-24T03:47:27.4711041Z * [new branch] gh/williamwen42/245/orig -> origin/gh/williamwen42/245/orig 2025-07-24T03:47:27.4711595Z * [new branch] gh/williamwen42/246/base -> origin/gh/williamwen42/246/base 2025-07-24T03:47:27.4712149Z * [new branch] gh/williamwen42/246/head -> origin/gh/williamwen42/246/head 2025-07-24T03:47:27.4712696Z * [new branch] gh/williamwen42/246/orig -> origin/gh/williamwen42/246/orig 2025-07-24T03:47:27.4713251Z * [new branch] gh/williamwen42/250/base -> origin/gh/williamwen42/250/base 2025-07-24T03:47:27.4713795Z * [new branch] gh/williamwen42/250/head -> origin/gh/williamwen42/250/head 2025-07-24T03:47:27.4714525Z * [new branch] gh/williamwen42/250/orig -> origin/gh/williamwen42/250/orig 2025-07-24T03:47:27.4715080Z * [new branch] gh/williamwen42/251/base -> origin/gh/williamwen42/251/base 2025-07-24T03:47:27.4715740Z * [new branch] gh/williamwen42/251/head -> origin/gh/williamwen42/251/head 2025-07-24T03:47:27.4716307Z * [new branch] gh/williamwen42/251/orig -> origin/gh/williamwen42/251/orig 2025-07-24T03:47:27.4716858Z * [new branch] gh/williamwen42/252/base -> origin/gh/williamwen42/252/base 2025-07-24T03:47:27.4717420Z * [new branch] gh/williamwen42/252/head -> origin/gh/williamwen42/252/head 2025-07-24T03:47:27.4717978Z * [new branch] gh/williamwen42/252/orig -> origin/gh/williamwen42/252/orig 2025-07-24T03:47:27.4718531Z * [new branch] gh/williamwen42/253/base -> origin/gh/williamwen42/253/base 2025-07-24T03:47:27.4719099Z * [new branch] gh/williamwen42/253/head -> origin/gh/williamwen42/253/head 2025-07-24T03:47:27.4719657Z * [new branch] gh/williamwen42/253/orig -> origin/gh/williamwen42/253/orig 2025-07-24T03:47:27.4720215Z * [new branch] gh/williamwen42/254/base -> origin/gh/williamwen42/254/base 2025-07-24T03:47:27.4720758Z * [new branch] gh/williamwen42/254/head -> origin/gh/williamwen42/254/head 2025-07-24T03:47:27.4721302Z * [new branch] gh/williamwen42/254/orig -> origin/gh/williamwen42/254/orig 2025-07-24T03:47:27.4721858Z * [new branch] gh/williamwen42/255/base -> origin/gh/williamwen42/255/base 2025-07-24T03:47:27.5243373Z * [new branch] gh/williamwen42/255/head -> origin/gh/williamwen42/255/head 2025-07-24T03:47:27.5243970Z * [new branch] gh/williamwen42/255/orig -> origin/gh/williamwen42/255/orig 2025-07-24T03:47:27.5244524Z * [new branch] gh/williamwen42/256/base -> origin/gh/williamwen42/256/base 2025-07-24T03:47:27.5245209Z * [new branch] gh/williamwen42/256/head -> origin/gh/williamwen42/256/head 2025-07-24T03:47:27.5245815Z * [new branch] gh/williamwen42/256/orig -> origin/gh/williamwen42/256/orig 2025-07-24T03:47:27.5246365Z * [new branch] gh/williamwen42/257/base -> origin/gh/williamwen42/257/base 2025-07-24T03:47:27.5246911Z * [new branch] gh/williamwen42/257/head -> origin/gh/williamwen42/257/head 2025-07-24T03:47:27.5247483Z * [new branch] gh/williamwen42/257/orig -> origin/gh/williamwen42/257/orig 2025-07-24T03:47:27.5248031Z * [new branch] gh/williamwen42/258/base -> origin/gh/williamwen42/258/base 2025-07-24T03:47:27.5248640Z * [new branch] gh/williamwen42/258/head -> origin/gh/williamwen42/258/head 2025-07-24T03:47:27.5249230Z * [new branch] gh/williamwen42/258/orig -> origin/gh/williamwen42/258/orig 2025-07-24T03:47:27.5249791Z * [new branch] gh/williamwen42/259/base -> origin/gh/williamwen42/259/base 2025-07-24T03:47:27.5250344Z * [new branch] gh/williamwen42/259/head -> origin/gh/williamwen42/259/head 2025-07-24T03:47:27.5250891Z * [new branch] gh/williamwen42/259/orig -> origin/gh/williamwen42/259/orig 2025-07-24T03:47:27.5251437Z * [new branch] gh/williamwen42/260/base -> origin/gh/williamwen42/260/base 2025-07-24T03:47:27.5251984Z * [new branch] gh/williamwen42/260/head -> origin/gh/williamwen42/260/head 2025-07-24T03:47:27.5252534Z * [new branch] gh/williamwen42/260/orig -> origin/gh/williamwen42/260/orig 2025-07-24T03:47:27.5253088Z * [new branch] gh/williamwen42/261/base -> origin/gh/williamwen42/261/base 2025-07-24T03:47:27.5253627Z * [new branch] gh/williamwen42/261/head -> origin/gh/williamwen42/261/head 2025-07-24T03:47:27.5254178Z * [new branch] gh/williamwen42/261/orig -> origin/gh/williamwen42/261/orig 2025-07-24T03:47:27.5254938Z * [new branch] gh/williamwen42/262/base -> origin/gh/williamwen42/262/base 2025-07-24T03:47:27.5255745Z * [new branch] gh/williamwen42/262/head -> origin/gh/williamwen42/262/head 2025-07-24T03:47:27.5256301Z * [new branch] gh/williamwen42/262/orig -> origin/gh/williamwen42/262/orig 2025-07-24T03:47:27.5256863Z * [new branch] gh/williamwen42/263/base -> origin/gh/williamwen42/263/base 2025-07-24T03:47:27.5257425Z * [new branch] gh/williamwen42/263/head -> origin/gh/williamwen42/263/head 2025-07-24T03:47:27.5257979Z * [new branch] gh/williamwen42/263/orig -> origin/gh/williamwen42/263/orig 2025-07-24T03:47:27.5258509Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-07-24T03:47:27.5258999Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-07-24T03:47:27.5259500Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-07-24T03:47:27.5259980Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-07-24T03:47:27.5260463Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-07-24T03:47:27.5261002Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-07-24T03:47:27.5261525Z * [new branch] gh/xmfan/223/base -> origin/gh/xmfan/223/base 2025-07-24T03:47:27.5262015Z * [new branch] gh/xmfan/223/head -> origin/gh/xmfan/223/head 2025-07-24T03:47:27.5262498Z * [new branch] gh/xmfan/223/orig -> origin/gh/xmfan/223/orig 2025-07-24T03:47:27.5262970Z * [new branch] gh/xmfan/228/base -> origin/gh/xmfan/228/base 2025-07-24T03:47:27.5263445Z * [new branch] gh/xmfan/228/head -> origin/gh/xmfan/228/head 2025-07-24T03:47:27.5263928Z * [new branch] gh/xmfan/228/orig -> origin/gh/xmfan/228/orig 2025-07-24T03:47:27.5264415Z * [new branch] gh/xmfan/229/base -> origin/gh/xmfan/229/base 2025-07-24T03:47:27.5264889Z * [new branch] gh/xmfan/229/head -> origin/gh/xmfan/229/head 2025-07-24T03:47:27.5265366Z * [new branch] gh/xmfan/229/orig -> origin/gh/xmfan/229/orig 2025-07-24T03:47:27.5265842Z * [new branch] gh/xmfan/230/base -> origin/gh/xmfan/230/base 2025-07-24T03:47:27.5266313Z * [new branch] gh/xmfan/230/head -> origin/gh/xmfan/230/head 2025-07-24T03:47:27.5266839Z * [new branch] gh/xmfan/230/orig -> origin/gh/xmfan/230/orig 2025-07-24T03:47:27.5267343Z * [new branch] gh/xmfan/237/base -> origin/gh/xmfan/237/base 2025-07-24T03:47:27.5267847Z * [new branch] gh/xmfan/237/head -> origin/gh/xmfan/237/head 2025-07-24T03:47:27.5816095Z * [new branch] gh/xmfan/237/orig -> origin/gh/xmfan/237/orig 2025-07-24T03:47:27.5816594Z * [new branch] gh/xmfan/244/base -> origin/gh/xmfan/244/base 2025-07-24T03:47:27.5817143Z * [new branch] gh/xmfan/244/head -> origin/gh/xmfan/244/head 2025-07-24T03:47:27.5817634Z * [new branch] gh/xmfan/244/orig -> origin/gh/xmfan/244/orig 2025-07-24T03:47:27.5818183Z * [new branch] gh/xmfan/246/base -> origin/gh/xmfan/246/base 2025-07-24T03:47:27.5818667Z * [new branch] gh/xmfan/246/head -> origin/gh/xmfan/246/head 2025-07-24T03:47:27.5819135Z * [new branch] gh/xmfan/246/orig -> origin/gh/xmfan/246/orig 2025-07-24T03:47:27.5819620Z * [new branch] gh/xmfan/253/base -> origin/gh/xmfan/253/base 2025-07-24T03:47:27.5820089Z * [new branch] gh/xmfan/253/head -> origin/gh/xmfan/253/head 2025-07-24T03:47:27.5820764Z * [new branch] gh/xmfan/253/orig -> origin/gh/xmfan/253/orig 2025-07-24T03:47:27.5821261Z * [new branch] gh/xmfan/254/base -> origin/gh/xmfan/254/base 2025-07-24T03:47:27.5821856Z * [new branch] gh/xmfan/254/head -> origin/gh/xmfan/254/head 2025-07-24T03:47:27.5822350Z * [new branch] gh/xmfan/254/orig -> origin/gh/xmfan/254/orig 2025-07-24T03:47:27.5822822Z * [new branch] gh/xmfan/260/base -> origin/gh/xmfan/260/base 2025-07-24T03:47:27.5823354Z * [new branch] gh/xmfan/260/head -> origin/gh/xmfan/260/head 2025-07-24T03:47:27.5823866Z * [new branch] gh/xmfan/260/orig -> origin/gh/xmfan/260/orig 2025-07-24T03:47:27.5824350Z * [new branch] gh/xmfan/261/base -> origin/gh/xmfan/261/base 2025-07-24T03:47:27.5824834Z * [new branch] gh/xmfan/261/head -> origin/gh/xmfan/261/head 2025-07-24T03:47:27.5825307Z * [new branch] gh/xmfan/261/orig -> origin/gh/xmfan/261/orig 2025-07-24T03:47:27.5825793Z * [new branch] gh/xmfan/262/base -> origin/gh/xmfan/262/base 2025-07-24T03:47:27.5826270Z * [new branch] gh/xmfan/262/head -> origin/gh/xmfan/262/head 2025-07-24T03:47:27.5826773Z * [new branch] gh/xmfan/262/orig -> origin/gh/xmfan/262/orig 2025-07-24T03:47:27.5827266Z * [new branch] gh/xmfan/263/base -> origin/gh/xmfan/263/base 2025-07-24T03:47:27.5827742Z * [new branch] gh/xmfan/263/head -> origin/gh/xmfan/263/head 2025-07-24T03:47:27.5828231Z * [new branch] gh/xmfan/263/orig -> origin/gh/xmfan/263/orig 2025-07-24T03:47:27.5828701Z * [new branch] gh/xmfan/264/base -> origin/gh/xmfan/264/base 2025-07-24T03:47:27.5829188Z * [new branch] gh/xmfan/264/head -> origin/gh/xmfan/264/head 2025-07-24T03:47:27.5829722Z * [new branch] gh/xmfan/264/orig -> origin/gh/xmfan/264/orig 2025-07-24T03:47:27.5830239Z * [new branch] gh/xmfan/265/base -> origin/gh/xmfan/265/base 2025-07-24T03:47:27.5830732Z * [new branch] gh/xmfan/265/head -> origin/gh/xmfan/265/head 2025-07-24T03:47:27.5831208Z * [new branch] gh/xmfan/265/orig -> origin/gh/xmfan/265/orig 2025-07-24T03:47:27.5831694Z * [new branch] gh/xmfan/266/base -> origin/gh/xmfan/266/base 2025-07-24T03:47:27.5832179Z * [new branch] gh/xmfan/266/head -> origin/gh/xmfan/266/head 2025-07-24T03:47:27.5832648Z * [new branch] gh/xmfan/266/orig -> origin/gh/xmfan/266/orig 2025-07-24T03:47:27.5833133Z * [new branch] gh/xmfan/267/base -> origin/gh/xmfan/267/base 2025-07-24T03:47:27.5833605Z * [new branch] gh/xmfan/267/head -> origin/gh/xmfan/267/head 2025-07-24T03:47:27.5834093Z * [new branch] gh/xmfan/267/orig -> origin/gh/xmfan/267/orig 2025-07-24T03:47:27.5834581Z * [new branch] gh/xmfan/268/base -> origin/gh/xmfan/268/base 2025-07-24T03:47:27.5835054Z * [new branch] gh/xmfan/268/head -> origin/gh/xmfan/268/head 2025-07-24T03:47:27.5835594Z * [new branch] gh/xmfan/268/orig -> origin/gh/xmfan/268/orig 2025-07-24T03:47:27.5836113Z * [new branch] gh/xmfan/269/base -> origin/gh/xmfan/269/base 2025-07-24T03:47:27.5836593Z * [new branch] gh/xmfan/269/head -> origin/gh/xmfan/269/head 2025-07-24T03:47:27.5837075Z * [new branch] gh/xmfan/269/orig -> origin/gh/xmfan/269/orig 2025-07-24T03:47:27.5837608Z * [new branch] gh/xuanzhang816/12/base -> origin/gh/xuanzhang816/12/base 2025-07-24T03:47:27.5838162Z * [new branch] gh/xuanzhang816/12/head -> origin/gh/xuanzhang816/12/head 2025-07-24T03:47:27.5838832Z * [new branch] gh/xuanzhang816/12/orig -> origin/gh/xuanzhang816/12/orig 2025-07-24T03:47:27.5839467Z * [new branch] gh/xuanzhang816/14/base -> origin/gh/xuanzhang816/14/base 2025-07-24T03:47:27.5840017Z * [new branch] gh/xuanzhang816/14/head -> origin/gh/xuanzhang816/14/head 2025-07-24T03:47:27.6416697Z * [new branch] gh/xuanzhang816/14/orig -> origin/gh/xuanzhang816/14/orig 2025-07-24T03:47:27.6417276Z * [new branch] gh/xuanzhang816/17/base -> origin/gh/xuanzhang816/17/base 2025-07-24T03:47:27.6417884Z * [new branch] gh/xuanzhang816/17/head -> origin/gh/xuanzhang816/17/head 2025-07-24T03:47:27.6418538Z * [new branch] gh/xuanzhang816/17/orig -> origin/gh/xuanzhang816/17/orig 2025-07-24T03:47:27.6419081Z * [new branch] gh/xuanzhang816/18/base -> origin/gh/xuanzhang816/18/base 2025-07-24T03:47:27.6419629Z * [new branch] gh/xuanzhang816/18/head -> origin/gh/xuanzhang816/18/head 2025-07-24T03:47:27.6420177Z * [new branch] gh/xuanzhang816/18/orig -> origin/gh/xuanzhang816/18/orig 2025-07-24T03:47:27.6420727Z * [new branch] gh/xuanzhang816/19/base -> origin/gh/xuanzhang816/19/base 2025-07-24T03:47:27.6421265Z * [new branch] gh/xuanzhang816/19/head -> origin/gh/xuanzhang816/19/head 2025-07-24T03:47:27.6421805Z * [new branch] gh/xuanzhang816/19/orig -> origin/gh/xuanzhang816/19/orig 2025-07-24T03:47:27.6422337Z * [new branch] gh/xuanzhang816/20/base -> origin/gh/xuanzhang816/20/base 2025-07-24T03:47:27.6422883Z * [new branch] gh/xuanzhang816/20/head -> origin/gh/xuanzhang816/20/head 2025-07-24T03:47:27.6423427Z * [new branch] gh/xuanzhang816/20/orig -> origin/gh/xuanzhang816/20/orig 2025-07-24T03:47:27.6423960Z * [new branch] gh/xuanzhang816/21/base -> origin/gh/xuanzhang816/21/base 2025-07-24T03:47:27.6424502Z * [new branch] gh/xuanzhang816/21/head -> origin/gh/xuanzhang816/21/head 2025-07-24T03:47:27.6425095Z * [new branch] gh/xuanzhang816/21/orig -> origin/gh/xuanzhang816/21/orig 2025-07-24T03:47:27.6425685Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-07-24T03:47:27.6426257Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-07-24T03:47:27.6426759Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-07-24T03:47:27.6427267Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-07-24T03:47:27.6427770Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-07-24T03:47:27.6428271Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-07-24T03:47:27.6428777Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-07-24T03:47:27.6429277Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-07-24T03:47:27.6429794Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-07-24T03:47:27.6430292Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-07-24T03:47:27.6430809Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-07-24T03:47:27.6431302Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-07-24T03:47:27.6431813Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-07-24T03:47:27.6432342Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-07-24T03:47:27.6432843Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-07-24T03:47:27.6433514Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-07-24T03:47:27.6434125Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-07-24T03:47:27.6434636Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-07-24T03:47:27.6435158Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-07-24T03:47:27.6435662Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-07-24T03:47:27.6436178Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-07-24T03:47:27.6436681Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-07-24T03:47:27.6437198Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-07-24T03:47:27.6437709Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-07-24T03:47:27.6438211Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-07-24T03:47:27.6438723Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-07-24T03:47:27.6439220Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-07-24T03:47:27.6439721Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-07-24T03:47:27.6440223Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-07-24T03:47:27.6440720Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-07-24T03:47:27.6987715Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-07-24T03:47:27.6988282Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-07-24T03:47:27.6988842Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-07-24T03:47:27.6989356Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-07-24T03:47:27.6989871Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-07-24T03:47:27.6990378Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-07-24T03:47:27.6990876Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-07-24T03:47:27.6991390Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-07-24T03:47:27.6991899Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-07-24T03:47:27.6992394Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-07-24T03:47:27.6992897Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-07-24T03:47:27.6993401Z * [new branch] gh/yanbing-j/34/base -> origin/gh/yanbing-j/34/base 2025-07-24T03:47:27.6993919Z * [new branch] gh/yanbing-j/34/head -> origin/gh/yanbing-j/34/head 2025-07-24T03:47:27.6994422Z * [new branch] gh/yanbing-j/34/orig -> origin/gh/yanbing-j/34/orig 2025-07-24T03:47:27.6994918Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-07-24T03:47:27.6995426Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-07-24T03:47:27.6995942Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-07-24T03:47:27.6996450Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-07-24T03:47:27.6996957Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-07-24T03:47:27.6997454Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-07-24T03:47:27.6998146Z * [new branch] gh/yanbing-j/38/base -> origin/gh/yanbing-j/38/base 2025-07-24T03:47:27.6998752Z * [new branch] gh/yanbing-j/38/head -> origin/gh/yanbing-j/38/head 2025-07-24T03:47:27.6999339Z * [new branch] gh/yanbing-j/38/orig -> origin/gh/yanbing-j/38/orig 2025-07-24T03:47:27.6999902Z * [new branch] gh/yanbing-j/39/base -> origin/gh/yanbing-j/39/base 2025-07-24T03:47:27.7000404Z * [new branch] gh/yanbing-j/39/head -> origin/gh/yanbing-j/39/head 2025-07-24T03:47:27.7000915Z * [new branch] gh/yanbing-j/39/orig -> origin/gh/yanbing-j/39/orig 2025-07-24T03:47:27.7001412Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-07-24T03:47:27.7001904Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-07-24T03:47:27.7002451Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-07-24T03:47:27.7002934Z * [new branch] gh/ydwu4/246/base -> origin/gh/ydwu4/246/base 2025-07-24T03:47:27.7003418Z * [new branch] gh/ydwu4/246/head -> origin/gh/ydwu4/246/head 2025-07-24T03:47:27.7003895Z * [new branch] gh/ydwu4/246/orig -> origin/gh/ydwu4/246/orig 2025-07-24T03:47:27.7004379Z * [new branch] gh/ydwu4/247/base -> origin/gh/ydwu4/247/base 2025-07-24T03:47:27.7004851Z * [new branch] gh/ydwu4/247/head -> origin/gh/ydwu4/247/head 2025-07-24T03:47:27.7005330Z * [new branch] gh/ydwu4/247/orig -> origin/gh/ydwu4/247/orig 2025-07-24T03:47:27.7005813Z * [new branch] gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-07-24T03:47:27.7006284Z * [new branch] gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-07-24T03:47:27.7006763Z * [new branch] gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig 2025-07-24T03:47:27.7007236Z * [new branch] gh/ydwu4/255/base -> origin/gh/ydwu4/255/base 2025-07-24T03:47:27.7007714Z * [new branch] gh/ydwu4/255/head -> origin/gh/ydwu4/255/head 2025-07-24T03:47:27.7008201Z * [new branch] gh/ydwu4/255/orig -> origin/gh/ydwu4/255/orig 2025-07-24T03:47:27.7008671Z * [new branch] gh/ydwu4/259/base -> origin/gh/ydwu4/259/base 2025-07-24T03:47:27.7009154Z * [new branch] gh/ydwu4/259/head -> origin/gh/ydwu4/259/head 2025-07-24T03:47:27.7009626Z * [new branch] gh/ydwu4/259/orig -> origin/gh/ydwu4/259/orig 2025-07-24T03:47:27.7010109Z * [new branch] gh/ydwu4/261/base -> origin/gh/ydwu4/261/base 2025-07-24T03:47:27.7010589Z * [new branch] gh/ydwu4/261/head -> origin/gh/ydwu4/261/head 2025-07-24T03:47:27.7011079Z * [new branch] gh/ydwu4/261/orig -> origin/gh/ydwu4/261/orig 2025-07-24T03:47:27.7664225Z * [new branch] gh/ydwu4/262/base -> origin/gh/ydwu4/262/base 2025-07-24T03:47:27.7664799Z * [new branch] gh/ydwu4/262/head -> origin/gh/ydwu4/262/head 2025-07-24T03:47:27.7665288Z * [new branch] gh/ydwu4/262/orig -> origin/gh/ydwu4/262/orig 2025-07-24T03:47:27.7665789Z * [new branch] gh/ydwu4/263/base -> origin/gh/ydwu4/263/base 2025-07-24T03:47:27.7666260Z * [new branch] gh/ydwu4/263/head -> origin/gh/ydwu4/263/head 2025-07-24T03:47:27.7666736Z * [new branch] gh/ydwu4/263/orig -> origin/gh/ydwu4/263/orig 2025-07-24T03:47:27.7667215Z * [new branch] gh/ydwu4/264/base -> origin/gh/ydwu4/264/base 2025-07-24T03:47:27.7667695Z * [new branch] gh/ydwu4/264/head -> origin/gh/ydwu4/264/head 2025-07-24T03:47:27.7668452Z * [new branch] gh/ydwu4/264/orig -> origin/gh/ydwu4/264/orig 2025-07-24T03:47:27.7668928Z * [new branch] gh/ydwu4/265/base -> origin/gh/ydwu4/265/base 2025-07-24T03:47:27.7669575Z * [new branch] gh/ydwu4/265/head -> origin/gh/ydwu4/265/head 2025-07-24T03:47:27.7670048Z * [new branch] gh/ydwu4/265/orig -> origin/gh/ydwu4/265/orig 2025-07-24T03:47:27.7670525Z * [new branch] gh/ydwu4/266/base -> origin/gh/ydwu4/266/base 2025-07-24T03:47:27.7670994Z * [new branch] gh/ydwu4/266/head -> origin/gh/ydwu4/266/head 2025-07-24T03:47:27.7671487Z * [new branch] gh/ydwu4/266/orig -> origin/gh/ydwu4/266/orig 2025-07-24T03:47:27.7671963Z * [new branch] gh/ydwu4/267/base -> origin/gh/ydwu4/267/base 2025-07-24T03:47:27.7672436Z * [new branch] gh/ydwu4/267/head -> origin/gh/ydwu4/267/head 2025-07-24T03:47:27.7672915Z * [new branch] gh/ydwu4/267/orig -> origin/gh/ydwu4/267/orig 2025-07-24T03:47:27.7673383Z * [new branch] gh/ydwu4/268/base -> origin/gh/ydwu4/268/base 2025-07-24T03:47:27.7673869Z * [new branch] gh/ydwu4/268/head -> origin/gh/ydwu4/268/head 2025-07-24T03:47:27.7674344Z * [new branch] gh/ydwu4/268/orig -> origin/gh/ydwu4/268/orig 2025-07-24T03:47:27.7674871Z * [new branch] gh/ydwu4/269/base -> origin/gh/ydwu4/269/base 2025-07-24T03:47:27.7675399Z * [new branch] gh/ydwu4/269/head -> origin/gh/ydwu4/269/head 2025-07-24T03:47:27.7675874Z * [new branch] gh/ydwu4/269/orig -> origin/gh/ydwu4/269/orig 2025-07-24T03:47:27.7676346Z * [new branch] gh/ydwu4/270/base -> origin/gh/ydwu4/270/base 2025-07-24T03:47:27.7676828Z * [new branch] gh/ydwu4/270/head -> origin/gh/ydwu4/270/head 2025-07-24T03:47:27.7677301Z * [new branch] gh/ydwu4/270/orig -> origin/gh/ydwu4/270/orig 2025-07-24T03:47:27.7677801Z * [new branch] gh/ydwu4/271/base -> origin/gh/ydwu4/271/base 2025-07-24T03:47:27.7678276Z * [new branch] gh/ydwu4/271/head -> origin/gh/ydwu4/271/head 2025-07-24T03:47:27.7678751Z * [new branch] gh/ydwu4/271/orig -> origin/gh/ydwu4/271/orig 2025-07-24T03:47:27.7679221Z * [new branch] gh/ydwu4/272/base -> origin/gh/ydwu4/272/base 2025-07-24T03:47:27.7679697Z * [new branch] gh/ydwu4/272/head -> origin/gh/ydwu4/272/head 2025-07-24T03:47:27.7680172Z * [new branch] gh/ydwu4/272/orig -> origin/gh/ydwu4/272/orig 2025-07-24T03:47:27.7680642Z * [new branch] gh/ydwu4/273/base -> origin/gh/ydwu4/273/base 2025-07-24T03:47:27.7681171Z * [new branch] gh/ydwu4/273/head -> origin/gh/ydwu4/273/head 2025-07-24T03:47:27.7681653Z * [new branch] gh/ydwu4/273/orig -> origin/gh/ydwu4/273/orig 2025-07-24T03:47:27.7682189Z * [new branch] gh/ydwu4/274/base -> origin/gh/ydwu4/274/base 2025-07-24T03:47:27.7682759Z * [new branch] gh/ydwu4/274/head -> origin/gh/ydwu4/274/head 2025-07-24T03:47:27.7683229Z * [new branch] gh/ydwu4/274/orig -> origin/gh/ydwu4/274/orig 2025-07-24T03:47:27.7683714Z * [new branch] gh/ydwu4/275/base -> origin/gh/ydwu4/275/base 2025-07-24T03:47:27.7684182Z * [new branch] gh/ydwu4/275/head -> origin/gh/ydwu4/275/head 2025-07-24T03:47:27.7684669Z * [new branch] gh/ydwu4/275/orig -> origin/gh/ydwu4/275/orig 2025-07-24T03:47:27.7685137Z * [new branch] gh/ydwu4/276/base -> origin/gh/ydwu4/276/base 2025-07-24T03:47:27.7685616Z * [new branch] gh/ydwu4/276/head -> origin/gh/ydwu4/276/head 2025-07-24T03:47:27.7686232Z * [new branch] gh/ydwu4/276/orig -> origin/gh/ydwu4/276/orig 2025-07-24T03:47:27.7686809Z * [new branch] gh/ydwu4/277/base -> origin/gh/ydwu4/277/base 2025-07-24T03:47:27.7687349Z * [new branch] gh/ydwu4/277/head -> origin/gh/ydwu4/277/head 2025-07-24T03:47:27.7687822Z * [new branch] gh/ydwu4/277/orig -> origin/gh/ydwu4/277/orig 2025-07-24T03:47:27.8153242Z * [new branch] gh/ydwu4/278/base -> origin/gh/ydwu4/278/base 2025-07-24T03:47:27.8153754Z * [new branch] gh/ydwu4/278/head -> origin/gh/ydwu4/278/head 2025-07-24T03:47:27.8154243Z * [new branch] gh/ydwu4/278/orig -> origin/gh/ydwu4/278/orig 2025-07-24T03:47:27.8154723Z * [new branch] gh/ydwu4/279/base -> origin/gh/ydwu4/279/base 2025-07-24T03:47:27.8155224Z * [new branch] gh/ydwu4/279/head -> origin/gh/ydwu4/279/head 2025-07-24T03:47:27.8155707Z * [new branch] gh/ydwu4/279/orig -> origin/gh/ydwu4/279/orig 2025-07-24T03:47:27.8156202Z * [new branch] gh/ydwu4/280/base -> origin/gh/ydwu4/280/base 2025-07-24T03:47:27.8156672Z * [new branch] gh/ydwu4/280/head -> origin/gh/ydwu4/280/head 2025-07-24T03:47:27.8157151Z * [new branch] gh/ydwu4/280/orig -> origin/gh/ydwu4/280/orig 2025-07-24T03:47:27.8157644Z * [new branch] gh/ydwu4/281/base -> origin/gh/ydwu4/281/base 2025-07-24T03:47:27.8158109Z * [new branch] gh/ydwu4/281/head -> origin/gh/ydwu4/281/head 2025-07-24T03:47:27.8158588Z * [new branch] gh/ydwu4/281/orig -> origin/gh/ydwu4/281/orig 2025-07-24T03:47:27.8159056Z * [new branch] gh/ydwu4/282/base -> origin/gh/ydwu4/282/base 2025-07-24T03:47:27.8159540Z * [new branch] gh/ydwu4/282/head -> origin/gh/ydwu4/282/head 2025-07-24T03:47:27.8160006Z * [new branch] gh/ydwu4/282/orig -> origin/gh/ydwu4/282/orig 2025-07-24T03:47:27.8160497Z * [new branch] gh/ydwu4/283/base -> origin/gh/ydwu4/283/base 2025-07-24T03:47:27.8160981Z * [new branch] gh/ydwu4/283/head -> origin/gh/ydwu4/283/head 2025-07-24T03:47:27.8161448Z * [new branch] gh/ydwu4/283/orig -> origin/gh/ydwu4/283/orig 2025-07-24T03:47:27.8161926Z * [new branch] gh/ydwu4/284/base -> origin/gh/ydwu4/284/base 2025-07-24T03:47:27.8162480Z * [new branch] gh/ydwu4/284/head -> origin/gh/ydwu4/284/head 2025-07-24T03:47:27.8162959Z * [new branch] gh/ydwu4/284/orig -> origin/gh/ydwu4/284/orig 2025-07-24T03:47:27.8163435Z * [new branch] gh/ydwu4/285/base -> origin/gh/ydwu4/285/base 2025-07-24T03:47:27.8163915Z * [new branch] gh/ydwu4/285/head -> origin/gh/ydwu4/285/head 2025-07-24T03:47:27.8164393Z * [new branch] gh/ydwu4/285/orig -> origin/gh/ydwu4/285/orig 2025-07-24T03:47:27.8164867Z * [new branch] gh/ydwu4/286/base -> origin/gh/ydwu4/286/base 2025-07-24T03:47:27.8165340Z * [new branch] gh/ydwu4/286/head -> origin/gh/ydwu4/286/head 2025-07-24T03:47:27.8165805Z * [new branch] gh/ydwu4/286/orig -> origin/gh/ydwu4/286/orig 2025-07-24T03:47:27.8166283Z * [new branch] gh/ydwu4/287/base -> origin/gh/ydwu4/287/base 2025-07-24T03:47:27.8166759Z * [new branch] gh/ydwu4/287/head -> origin/gh/ydwu4/287/head 2025-07-24T03:47:27.8167231Z * [new branch] gh/ydwu4/287/orig -> origin/gh/ydwu4/287/orig 2025-07-24T03:47:27.8167707Z * [new branch] gh/ydwu4/288/base -> origin/gh/ydwu4/288/base 2025-07-24T03:47:27.8168359Z * [new branch] gh/ydwu4/288/head -> origin/gh/ydwu4/288/head 2025-07-24T03:47:27.8168845Z * [new branch] gh/ydwu4/288/orig -> origin/gh/ydwu4/288/orig 2025-07-24T03:47:27.8169427Z * [new branch] gh/ydwu4/289/base -> origin/gh/ydwu4/289/base 2025-07-24T03:47:27.8169906Z * [new branch] gh/ydwu4/289/head -> origin/gh/ydwu4/289/head 2025-07-24T03:47:27.8170393Z * [new branch] gh/ydwu4/289/orig -> origin/gh/ydwu4/289/orig 2025-07-24T03:47:27.8170873Z * [new branch] gh/ydwu4/290/base -> origin/gh/ydwu4/290/base 2025-07-24T03:47:27.8171361Z * [new branch] gh/ydwu4/290/head -> origin/gh/ydwu4/290/head 2025-07-24T03:47:27.8171849Z * [new branch] gh/ydwu4/290/orig -> origin/gh/ydwu4/290/orig 2025-07-24T03:47:27.8172319Z * [new branch] gh/ydwu4/291/base -> origin/gh/ydwu4/291/base 2025-07-24T03:47:27.8172803Z * [new branch] gh/ydwu4/291/head -> origin/gh/ydwu4/291/head 2025-07-24T03:47:27.8173270Z * [new branch] gh/ydwu4/291/orig -> origin/gh/ydwu4/291/orig 2025-07-24T03:47:27.8173755Z * [new branch] gh/ydwu4/292/base -> origin/gh/ydwu4/292/base 2025-07-24T03:47:27.8174232Z * [new branch] gh/ydwu4/292/head -> origin/gh/ydwu4/292/head 2025-07-24T03:47:27.8174708Z * [new branch] gh/ydwu4/292/orig -> origin/gh/ydwu4/292/orig 2025-07-24T03:47:27.8175190Z * [new branch] gh/ydwu4/293/base -> origin/gh/ydwu4/293/base 2025-07-24T03:47:27.8175658Z * [new branch] gh/ydwu4/293/head -> origin/gh/ydwu4/293/head 2025-07-24T03:47:27.8176141Z * [new branch] gh/ydwu4/293/orig -> origin/gh/ydwu4/293/orig 2025-07-24T03:47:27.8176630Z * [new branch] gh/ydwu4/294/base -> origin/gh/ydwu4/294/base 2025-07-24T03:47:27.8734991Z * [new branch] gh/ydwu4/294/head -> origin/gh/ydwu4/294/head 2025-07-24T03:47:27.8735597Z * [new branch] gh/ydwu4/294/orig -> origin/gh/ydwu4/294/orig 2025-07-24T03:47:27.8736113Z * [new branch] gh/ydwu4/295/base -> origin/gh/ydwu4/295/base 2025-07-24T03:47:27.8736600Z * [new branch] gh/ydwu4/295/head -> origin/gh/ydwu4/295/head 2025-07-24T03:47:27.8737078Z * [new branch] gh/ydwu4/295/orig -> origin/gh/ydwu4/295/orig 2025-07-24T03:47:27.8737549Z * [new branch] gh/ydwu4/296/base -> origin/gh/ydwu4/296/base 2025-07-24T03:47:27.8738021Z * [new branch] gh/ydwu4/296/head -> origin/gh/ydwu4/296/head 2025-07-24T03:47:27.8738489Z * [new branch] gh/ydwu4/296/orig -> origin/gh/ydwu4/296/orig 2025-07-24T03:47:27.8738960Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-07-24T03:47:27.8739448Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-07-24T03:47:27.8739916Z * [new branch] gh/yf225/171/base -> origin/gh/yf225/171/base 2025-07-24T03:47:27.8740392Z * [new branch] gh/yf225/171/head -> origin/gh/yf225/171/head 2025-07-24T03:47:27.8740854Z * [new branch] gh/yf225/171/orig -> origin/gh/yf225/171/orig 2025-07-24T03:47:27.8741326Z * [new branch] gh/yf225/172/base -> origin/gh/yf225/172/base 2025-07-24T03:47:27.8741784Z * [new branch] gh/yf225/172/head -> origin/gh/yf225/172/head 2025-07-24T03:47:27.8742258Z * [new branch] gh/yf225/172/orig -> origin/gh/yf225/172/orig 2025-07-24T03:47:27.8742736Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-07-24T03:47:27.8743196Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-07-24T03:47:27.8743870Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-07-24T03:47:27.8744491Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-07-24T03:47:27.8745007Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-07-24T03:47:27.8745520Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-07-24T03:47:27.8746030Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-07-24T03:47:27.8746538Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-07-24T03:47:27.8747044Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-07-24T03:47:27.8747550Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-07-24T03:47:27.8748063Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-07-24T03:47:27.8748566Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-07-24T03:47:27.8749091Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-07-24T03:47:27.8749599Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-07-24T03:47:27.8750116Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-07-24T03:47:27.8750617Z * [new branch] gh/ysiraichi/80/base -> origin/gh/ysiraichi/80/base 2025-07-24T03:47:27.8751129Z * [new branch] gh/ysiraichi/80/head -> origin/gh/ysiraichi/80/head 2025-07-24T03:47:27.8751643Z * [new branch] gh/ysiraichi/80/orig -> origin/gh/ysiraichi/80/orig 2025-07-24T03:47:27.8752152Z * [new branch] gh/ysiraichi/81/base -> origin/gh/ysiraichi/81/base 2025-07-24T03:47:27.8752676Z * [new branch] gh/ysiraichi/81/head -> origin/gh/ysiraichi/81/head 2025-07-24T03:47:27.8767331Z * [new branch] gh/ysiraichi/81/orig -> origin/gh/ysiraichi/81/orig 2025-07-24T03:47:27.8768041Z * [new branch] gh/ysiraichi/84/base -> origin/gh/ysiraichi/84/base 2025-07-24T03:47:27.8768567Z * [new branch] gh/ysiraichi/84/head -> origin/gh/ysiraichi/84/head 2025-07-24T03:47:27.8769089Z * [new branch] gh/ysiraichi/84/orig -> origin/gh/ysiraichi/84/orig 2025-07-24T03:47:27.8769591Z * [new branch] gh/ysiraichi/85/base -> origin/gh/ysiraichi/85/base 2025-07-24T03:47:27.8770107Z * [new branch] gh/ysiraichi/85/head -> origin/gh/ysiraichi/85/head 2025-07-24T03:47:27.8770620Z * [new branch] gh/ysiraichi/85/orig -> origin/gh/ysiraichi/85/orig 2025-07-24T03:47:27.8771134Z * [new branch] gh/ysiraichi/86/base -> origin/gh/ysiraichi/86/base 2025-07-24T03:47:27.8771657Z * [new branch] gh/ysiraichi/86/head -> origin/gh/ysiraichi/86/head 2025-07-24T03:47:27.8772164Z * [new branch] gh/ysiraichi/86/orig -> origin/gh/ysiraichi/86/orig 2025-07-24T03:47:27.8772682Z * [new branch] gh/ysiraichi/87/base -> origin/gh/ysiraichi/87/base 2025-07-24T03:47:27.9334297Z * [new branch] gh/ysiraichi/87/head -> origin/gh/ysiraichi/87/head 2025-07-24T03:47:27.9334929Z * [new branch] gh/ysiraichi/87/orig -> origin/gh/ysiraichi/87/orig 2025-07-24T03:47:27.9335524Z * [new branch] gh/ysiraichi/88/base -> origin/gh/ysiraichi/88/base 2025-07-24T03:47:27.9336060Z * [new branch] gh/ysiraichi/88/head -> origin/gh/ysiraichi/88/head 2025-07-24T03:47:27.9336573Z * [new branch] gh/ysiraichi/88/orig -> origin/gh/ysiraichi/88/orig 2025-07-24T03:47:27.9337081Z * [new branch] gh/yuguo68/1/base -> origin/gh/yuguo68/1/base 2025-07-24T03:47:27.9337777Z * [new branch] gh/yuguo68/1/head -> origin/gh/yuguo68/1/head 2025-07-24T03:47:27.9338405Z * [new branch] gh/yuguo68/1/orig -> origin/gh/yuguo68/1/orig 2025-07-24T03:47:27.9338904Z * [new branch] gh/yuguo68/2/base -> origin/gh/yuguo68/2/base 2025-07-24T03:47:27.9339376Z * [new branch] gh/yuguo68/2/head -> origin/gh/yuguo68/2/head 2025-07-24T03:47:27.9339874Z * [new branch] gh/yuguo68/2/orig -> origin/gh/yuguo68/2/orig 2025-07-24T03:47:27.9340373Z * [new branch] gh/zhuhaozhe/28/base -> origin/gh/zhuhaozhe/28/base 2025-07-24T03:47:27.9340956Z * [new branch] gh/zhuhaozhe/28/head -> origin/gh/zhuhaozhe/28/head 2025-07-24T03:47:27.9341532Z * [new branch] gh/zhuhaozhe/28/orig -> origin/gh/zhuhaozhe/28/orig 2025-07-24T03:47:27.9342049Z * [new branch] gh/zhuhaozhe/29/base -> origin/gh/zhuhaozhe/29/base 2025-07-24T03:47:27.9342567Z * [new branch] gh/zhuhaozhe/29/head -> origin/gh/zhuhaozhe/29/head 2025-07-24T03:47:27.9343078Z * [new branch] gh/zhuhaozhe/29/orig -> origin/gh/zhuhaozhe/29/orig 2025-07-24T03:47:27.9343593Z * [new branch] gh/zhuhaozhe/31/base -> origin/gh/zhuhaozhe/31/base 2025-07-24T03:47:27.9344098Z * [new branch] gh/zhuhaozhe/31/head -> origin/gh/zhuhaozhe/31/head 2025-07-24T03:47:27.9344603Z * [new branch] gh/zhuhaozhe/31/orig -> origin/gh/zhuhaozhe/31/orig 2025-07-24T03:47:27.9345118Z * [new branch] gh/zhuhaozhe/32/base -> origin/gh/zhuhaozhe/32/base 2025-07-24T03:47:27.9345622Z * [new branch] gh/zhuhaozhe/32/head -> origin/gh/zhuhaozhe/32/head 2025-07-24T03:47:27.9346133Z * [new branch] gh/zhuhaozhe/32/orig -> origin/gh/zhuhaozhe/32/orig 2025-07-24T03:47:27.9346688Z * [new branch] gh/zhuhaozhe/33/base -> origin/gh/zhuhaozhe/33/base 2025-07-24T03:47:27.9347243Z * [new branch] gh/zhuhaozhe/33/head -> origin/gh/zhuhaozhe/33/head 2025-07-24T03:47:27.9347777Z * [new branch] gh/zhuhaozhe/33/orig -> origin/gh/zhuhaozhe/33/orig 2025-07-24T03:47:27.9348280Z * [new branch] gh/zhxchen17/25/base -> origin/gh/zhxchen17/25/base 2025-07-24T03:47:27.9348788Z * [new branch] gh/zhxchen17/25/head -> origin/gh/zhxchen17/25/head 2025-07-24T03:47:27.9349287Z * [new branch] gh/zhxchen17/25/orig -> origin/gh/zhxchen17/25/orig 2025-07-24T03:47:27.9349792Z * [new branch] gh/zhxchen17/26/base -> origin/gh/zhxchen17/26/base 2025-07-24T03:47:27.9350304Z * [new branch] gh/zhxchen17/26/head -> origin/gh/zhxchen17/26/head 2025-07-24T03:47:27.9350806Z * [new branch] gh/zhxchen17/26/orig -> origin/gh/zhxchen17/26/orig 2025-07-24T03:47:27.9351317Z * [new branch] gh/zhxchen17/27/base -> origin/gh/zhxchen17/27/base 2025-07-24T03:47:27.9351823Z * [new branch] gh/zhxchen17/27/head -> origin/gh/zhxchen17/27/head 2025-07-24T03:47:27.9352327Z * [new branch] gh/zhxchen17/27/orig -> origin/gh/zhxchen17/27/orig 2025-07-24T03:47:27.9352877Z * [new branch] gh/zhxchen17/28/base -> origin/gh/zhxchen17/28/base 2025-07-24T03:47:27.9353437Z * [new branch] gh/zhxchen17/28/head -> origin/gh/zhxchen17/28/head 2025-07-24T03:47:27.9353945Z * [new branch] gh/zhxchen17/28/orig -> origin/gh/zhxchen17/28/orig 2025-07-24T03:47:27.9354439Z * [new branch] gh/zhxchen17/29/base -> origin/gh/zhxchen17/29/base 2025-07-24T03:47:27.9354948Z * [new branch] gh/zhxchen17/29/head -> origin/gh/zhxchen17/29/head 2025-07-24T03:47:27.9356323Z * [new branch] gh/zhxchen17/29/orig -> origin/gh/zhxchen17/29/orig 2025-07-24T03:47:27.9356840Z * [new branch] gh/zhxchen17/30/base -> origin/gh/zhxchen17/30/base 2025-07-24T03:47:27.9357453Z * [new branch] gh/zhxchen17/30/head -> origin/gh/zhxchen17/30/head 2025-07-24T03:47:27.9357963Z * [new branch] gh/zhxchen17/30/orig -> origin/gh/zhxchen17/30/orig 2025-07-24T03:47:27.9358485Z * [new branch] gh/zhxchen17/31/base -> origin/gh/zhxchen17/31/base 2025-07-24T03:47:27.9359063Z * [new branch] gh/zhxchen17/31/head -> origin/gh/zhxchen17/31/head 2025-07-24T03:47:27.9359628Z * [new branch] gh/zhxchen17/31/orig -> origin/gh/zhxchen17/31/orig 2025-07-24T03:47:27.9941390Z * [new branch] gh/zhxchen17/32/base -> origin/gh/zhxchen17/32/base 2025-07-24T03:47:27.9941968Z * [new branch] gh/zhxchen17/32/head -> origin/gh/zhxchen17/32/head 2025-07-24T03:47:27.9942529Z * [new branch] gh/zhxchen17/32/orig -> origin/gh/zhxchen17/32/orig 2025-07-24T03:47:27.9943057Z * [new branch] gh/zhxchen17/33/base -> origin/gh/zhxchen17/33/base 2025-07-24T03:47:27.9943577Z * [new branch] gh/zhxchen17/33/head -> origin/gh/zhxchen17/33/head 2025-07-24T03:47:27.9944088Z * [new branch] gh/zhxchen17/33/orig -> origin/gh/zhxchen17/33/orig 2025-07-24T03:47:27.9944592Z * [new branch] gh/zklaus/1/base -> origin/gh/zklaus/1/base 2025-07-24T03:47:27.9945094Z * [new branch] gh/zklaus/1/head -> origin/gh/zklaus/1/head 2025-07-24T03:47:27.9945587Z * [new branch] gh/zklaus/1/orig -> origin/gh/zklaus/1/orig 2025-07-24T03:47:27.9946090Z * [new branch] gh/zklaus/10/base -> origin/gh/zklaus/10/base 2025-07-24T03:47:27.9946648Z * [new branch] gh/zklaus/10/head -> origin/gh/zklaus/10/head 2025-07-24T03:47:27.9947182Z * [new branch] gh/zklaus/10/orig -> origin/gh/zklaus/10/orig 2025-07-24T03:47:27.9947732Z * [new branch] gh/zklaus/11/base -> origin/gh/zklaus/11/base 2025-07-24T03:47:27.9948221Z * [new branch] gh/zklaus/11/head -> origin/gh/zklaus/11/head 2025-07-24T03:47:27.9948711Z * [new branch] gh/zklaus/11/orig -> origin/gh/zklaus/11/orig 2025-07-24T03:47:27.9949202Z * [new branch] gh/zklaus/12/base -> origin/gh/zklaus/12/base 2025-07-24T03:47:27.9949681Z * [new branch] gh/zklaus/12/head -> origin/gh/zklaus/12/head 2025-07-24T03:47:27.9950170Z * [new branch] gh/zklaus/12/orig -> origin/gh/zklaus/12/orig 2025-07-24T03:47:27.9950654Z * [new branch] gh/zklaus/13/base -> origin/gh/zklaus/13/base 2025-07-24T03:47:27.9951135Z * [new branch] gh/zklaus/13/head -> origin/gh/zklaus/13/head 2025-07-24T03:47:27.9951627Z * [new branch] gh/zklaus/13/orig -> origin/gh/zklaus/13/orig 2025-07-24T03:47:27.9952104Z * [new branch] gh/zklaus/14/base -> origin/gh/zklaus/14/base 2025-07-24T03:47:27.9952592Z * [new branch] gh/zklaus/14/head -> origin/gh/zklaus/14/head 2025-07-24T03:47:27.9953098Z * [new branch] gh/zklaus/14/orig -> origin/gh/zklaus/14/orig 2025-07-24T03:47:27.9953607Z * [new branch] gh/zklaus/15/base -> origin/gh/zklaus/15/base 2025-07-24T03:47:27.9954162Z * [new branch] gh/zklaus/15/head -> origin/gh/zklaus/15/head 2025-07-24T03:47:27.9954670Z * [new branch] gh/zklaus/15/orig -> origin/gh/zklaus/15/orig 2025-07-24T03:47:27.9955152Z * [new branch] gh/zklaus/16/base -> origin/gh/zklaus/16/base 2025-07-24T03:47:27.9955632Z * [new branch] gh/zklaus/16/head -> origin/gh/zklaus/16/head 2025-07-24T03:47:27.9956323Z * [new branch] gh/zklaus/16/orig -> origin/gh/zklaus/16/orig 2025-07-24T03:47:27.9956937Z * [new branch] gh/zklaus/17/base -> origin/gh/zklaus/17/base 2025-07-24T03:47:27.9957432Z * [new branch] gh/zklaus/17/head -> origin/gh/zklaus/17/head 2025-07-24T03:47:27.9957934Z * [new branch] gh/zklaus/17/orig -> origin/gh/zklaus/17/orig 2025-07-24T03:47:27.9958416Z * [new branch] gh/zklaus/18/base -> origin/gh/zklaus/18/base 2025-07-24T03:47:27.9958902Z * [new branch] gh/zklaus/18/head -> origin/gh/zklaus/18/head 2025-07-24T03:47:27.9959376Z * [new branch] gh/zklaus/18/orig -> origin/gh/zklaus/18/orig 2025-07-24T03:47:27.9959924Z * [new branch] gh/zklaus/2/base -> origin/gh/zklaus/2/base 2025-07-24T03:47:27.9960443Z * [new branch] gh/zklaus/2/head -> origin/gh/zklaus/2/head 2025-07-24T03:47:27.9960976Z * [new branch] gh/zklaus/2/orig -> origin/gh/zklaus/2/orig 2025-07-24T03:47:27.9961465Z * [new branch] gh/zklaus/4/base -> origin/gh/zklaus/4/base 2025-07-24T03:47:27.9961954Z * [new branch] gh/zklaus/4/head -> origin/gh/zklaus/4/head 2025-07-24T03:47:27.9962531Z * [new branch] gh/zklaus/4/orig -> origin/gh/zklaus/4/orig 2025-07-24T03:47:27.9962998Z * [new branch] gh/zklaus/7/base -> origin/gh/zklaus/7/base 2025-07-24T03:47:27.9963481Z * [new branch] gh/zklaus/7/head -> origin/gh/zklaus/7/head 2025-07-24T03:47:27.9963948Z * [new branch] gh/zklaus/7/orig -> origin/gh/zklaus/7/orig 2025-07-24T03:47:27.9964422Z * [new branch] gh/zklaus/8/base -> origin/gh/zklaus/8/base 2025-07-24T03:47:27.9964887Z * [new branch] gh/zklaus/8/head -> origin/gh/zklaus/8/head 2025-07-24T03:47:27.9965368Z * [new branch] gh/zklaus/8/orig -> origin/gh/zklaus/8/orig 2025-07-24T03:47:28.0505579Z * [new branch] gh/zklaus/9/base -> origin/gh/zklaus/9/base 2025-07-24T03:47:28.0506126Z * [new branch] gh/zklaus/9/head -> origin/gh/zklaus/9/head 2025-07-24T03:47:28.0506668Z * [new branch] gh/zklaus/9/orig -> origin/gh/zklaus/9/orig 2025-07-24T03:47:28.0507326Z * [new branch] gh/zou3519/1162/base -> origin/gh/zou3519/1162/base 2025-07-24T03:47:28.0507831Z * [new branch] gh/zou3519/1162/head -> origin/gh/zou3519/1162/head 2025-07-24T03:47:28.0508338Z * [new branch] gh/zou3519/1162/orig -> origin/gh/zou3519/1162/orig 2025-07-24T03:47:28.0508832Z * [new branch] gh/zou3519/1175/base -> origin/gh/zou3519/1175/base 2025-07-24T03:47:28.0509321Z * [new branch] gh/zou3519/1175/head -> origin/gh/zou3519/1175/head 2025-07-24T03:47:28.0509829Z * [new branch] gh/zou3519/1175/orig -> origin/gh/zou3519/1175/orig 2025-07-24T03:47:28.0510327Z * [new branch] gh/zou3519/1177/base -> origin/gh/zou3519/1177/base 2025-07-24T03:47:28.0510825Z * [new branch] gh/zou3519/1177/head -> origin/gh/zou3519/1177/head 2025-07-24T03:47:28.0511314Z * [new branch] gh/zou3519/1177/orig -> origin/gh/zou3519/1177/orig 2025-07-24T03:47:28.0511812Z * [new branch] gh/zou3519/1178/base -> origin/gh/zou3519/1178/base 2025-07-24T03:47:28.0512304Z * [new branch] gh/zou3519/1178/head -> origin/gh/zou3519/1178/head 2025-07-24T03:47:28.0512792Z * [new branch] gh/zou3519/1178/orig -> origin/gh/zou3519/1178/orig 2025-07-24T03:47:28.0513338Z * [new branch] gh/zou3519/1179/base -> origin/gh/zou3519/1179/base 2025-07-24T03:47:28.0514089Z * [new branch] gh/zou3519/1179/head -> origin/gh/zou3519/1179/head 2025-07-24T03:47:28.0514637Z * [new branch] gh/zou3519/1179/orig -> origin/gh/zou3519/1179/orig 2025-07-24T03:47:28.0515938Z * [new branch] gh/zou3519/1180/base -> origin/gh/zou3519/1180/base 2025-07-24T03:47:28.0516471Z * [new branch] gh/zou3519/1180/head -> origin/gh/zou3519/1180/head 2025-07-24T03:47:28.0516978Z * [new branch] gh/zou3519/1180/orig -> origin/gh/zou3519/1180/orig 2025-07-24T03:47:28.0517468Z * [new branch] gh/zou3519/1181/base -> origin/gh/zou3519/1181/base 2025-07-24T03:47:28.0517962Z * [new branch] gh/zou3519/1181/head -> origin/gh/zou3519/1181/head 2025-07-24T03:47:28.0518448Z * [new branch] gh/zou3519/1181/orig -> origin/gh/zou3519/1181/orig 2025-07-24T03:47:28.0518948Z * [new branch] gh/zou3519/1182/base -> origin/gh/zou3519/1182/base 2025-07-24T03:47:28.0519455Z * [new branch] gh/zou3519/1182/head -> origin/gh/zou3519/1182/head 2025-07-24T03:47:28.0519944Z * [new branch] gh/zou3519/1182/orig -> origin/gh/zou3519/1182/orig 2025-07-24T03:47:28.0520440Z * [new branch] gh/zou3519/1183/base -> origin/gh/zou3519/1183/base 2025-07-24T03:47:28.0520926Z * [new branch] gh/zou3519/1183/head -> origin/gh/zou3519/1183/head 2025-07-24T03:47:28.0521427Z * [new branch] gh/zou3519/1183/orig -> origin/gh/zou3519/1183/orig 2025-07-24T03:47:28.0521922Z * [new branch] gh/zou3519/1184/base -> origin/gh/zou3519/1184/base 2025-07-24T03:47:28.0522522Z * [new branch] gh/zou3519/1184/head -> origin/gh/zou3519/1184/head 2025-07-24T03:47:28.0523020Z * [new branch] gh/zou3519/1184/orig -> origin/gh/zou3519/1184/orig 2025-07-24T03:47:28.0523514Z * [new branch] gh/zou3519/1185/base -> origin/gh/zou3519/1185/base 2025-07-24T03:47:28.0524029Z * [new branch] gh/zou3519/1185/head -> origin/gh/zou3519/1185/head 2025-07-24T03:47:28.0524548Z * [new branch] gh/zou3519/1185/orig -> origin/gh/zou3519/1185/orig 2025-07-24T03:47:28.0525043Z * [new branch] gh/zou3519/1186/base -> origin/gh/zou3519/1186/base 2025-07-24T03:47:28.0525541Z * [new branch] gh/zou3519/1186/head -> origin/gh/zou3519/1186/head 2025-07-24T03:47:28.0526033Z * [new branch] gh/zou3519/1186/orig -> origin/gh/zou3519/1186/orig 2025-07-24T03:47:28.0526531Z * [new branch] gh/zou3519/1187/base -> origin/gh/zou3519/1187/base 2025-07-24T03:47:28.0527022Z * [new branch] gh/zou3519/1187/head -> origin/gh/zou3519/1187/head 2025-07-24T03:47:28.0527529Z * [new branch] gh/zou3519/1187/orig -> origin/gh/zou3519/1187/orig 2025-07-24T03:47:28.0528032Z * [new branch] gh/zou3519/916/base -> origin/gh/zou3519/916/base 2025-07-24T03:47:28.0528523Z * [new branch] gh/zou3519/916/head -> origin/gh/zou3519/916/head 2025-07-24T03:47:28.0529024Z * [new branch] gh/zpcore/1/base -> origin/gh/zpcore/1/base 2025-07-24T03:47:28.0529510Z * [new branch] gh/zpcore/1/head -> origin/gh/zpcore/1/head 2025-07-24T03:47:28.0529999Z * [new branch] gh/zpcore/2/base -> origin/gh/zpcore/2/base 2025-07-24T03:47:28.1067792Z * [new branch] gh/zpcore/2/head -> origin/gh/zpcore/2/head 2025-07-24T03:47:28.1068342Z * [new branch] gh/zpcore/3/base -> origin/gh/zpcore/3/base 2025-07-24T03:47:28.1068850Z * [new branch] gh/zpcore/3/head -> origin/gh/zpcore/3/head 2025-07-24T03:47:28.1069329Z * [new branch] gh/zpcore/4/base -> origin/gh/zpcore/4/base 2025-07-24T03:47:28.1070044Z * [new branch] gh/zpcore/4/head -> origin/gh/zpcore/4/head 2025-07-24T03:47:28.1070542Z * [new branch] gh/zpcore/5/base -> origin/gh/zpcore/5/base 2025-07-24T03:47:28.1071159Z * [new branch] gh/zpcore/5/head -> origin/gh/zpcore/5/head 2025-07-24T03:47:28.1071647Z * [new branch] gh/zpcore/6/base -> origin/gh/zpcore/6/base 2025-07-24T03:47:28.1072118Z * [new branch] gh/zpcore/6/head -> origin/gh/zpcore/6/head 2025-07-24T03:47:28.1072626Z * [new branch] gh/zpcore/7/base -> origin/gh/zpcore/7/base 2025-07-24T03:47:28.1073103Z * [new branch] gh/zpcore/7/head -> origin/gh/zpcore/7/head 2025-07-24T03:47:28.1073574Z * [new branch] google-main -> origin/google-main 2025-07-24T03:47:28.1074097Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-07-24T03:47:28.1074649Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-07-24T03:47:28.1075163Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-07-24T03:47:28.1075638Z * [new branch] guard_system -> origin/guard_system 2025-07-24T03:47:28.1076279Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-07-24T03:47:28.1076980Z * [new branch] hameerabbasi/issue-114398 -> origin/hameerabbasi/issue-114398 2025-07-24T03:47:28.1077554Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-07-24T03:47:28.1078071Z * [new branch] hc_baseline -> origin/hc_baseline 2025-07-24T03:47:28.1078520Z * [new branch] hhh_decomp_mul -> origin/hhh_decomp_mul 2025-07-24T03:47:28.1078952Z * [new branch] hhh_rand -> origin/hhh_rand 2025-07-24T03:47:28.1079390Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-07-24T03:47:28.1079863Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-07-24T03:47:28.1080457Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-07-24T03:47:28.1081093Z * [new branch] hoy/triton-coalescing-min -> origin/hoy/triton-coalescing-min 2025-07-24T03:47:28.1081672Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-07-24T03:47:28.1082256Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-07-24T03:47:28.1082882Z * [new branch] inductordecompfix -> origin/inductordecompfix 2025-07-24T03:47:28.1083364Z * [new branch] inline -> origin/inline 2025-07-24T03:47:28.1083791Z * [new branch] inlining -> origin/inlining 2025-07-24T03:47:28.1084259Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-07-24T03:47:28.1084727Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-07-24T03:47:28.1085187Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-07-24T03:47:28.1085773Z * [new branch] issue#58739 -> origin/issue#58739 2025-07-24T03:47:28.1086261Z * [new branch] issue-154849 -> origin/issue-154849 2025-07-24T03:47:28.1086835Z * [new branch] ivanov/cherry-pick-ckpt-fixes -> origin/ivanov/cherry-pick-ckpt-fixes 2025-07-24T03:47:28.1087561Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-07-24T03:47:28.1088263Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-07-24T03:47:28.1089006Z * [new branch] jithunnair-amd-patch-1 -> origin/jithunnair-amd-patch-1 2025-07-24T03:47:28.1089588Z * [new branch] justinchu/attention-tests -> origin/justinchu/attention-tests 2025-07-24T03:47:28.1090277Z * [new branch] justinchu/native-qdq -> origin/justinchu/native-qdq 2025-07-24T03:47:28.1090830Z * [new branch] justinchuby/opset-20 -> origin/justinchuby/opset-20 2025-07-24T03:47:28.1091441Z * [new branch] leslie/enable_poc_reduction_fusion -> origin/leslie/enable_poc_reduction_fusion 2025-07-24T03:47:28.1092121Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-07-24T03:47:28.1092779Z * [new branch] lessw2020/fix_cutlass_cache_error -> origin/lessw2020/fix_cutlass_cache_error 2025-07-24T03:47:28.1523464Z * [new branch] liaoxuan/shm_all_reduce -> origin/liaoxuan/shm_all_reduce 2025-07-24T03:47:28.1524033Z * [new branch] liaoxuan/tags_issue -> origin/liaoxuan/tags_issue 2025-07-24T03:47:28.1524609Z * [new branch] liaoxuan/test_fa_disable_softmax -> origin/liaoxuan/test_fa_disable_softmax 2025-07-24T03:47:28.1525284Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-07-24T03:47:28.1525858Z * [new branch] lintbuilddocker -> origin/lintbuilddocker 2025-07-24T03:47:28.1526383Z * [new branch] local_map -> origin/local_map 2025-07-24T03:47:28.1526819Z * [new branch] logdetfix -> origin/logdetfix 2025-07-24T03:47:28.1527266Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-07-24T03:47:28.1527780Z * [new branch] lucaskabela/fix_157452 -> origin/lucaskabela/fix_157452 2025-07-24T03:47:28.1528412Z * [new branch] lucaskabela/fix_circular_import_158120 -> origin/lucaskabela/fix_circular_import_158120 2025-07-24T03:47:28.1529112Z * [new branch] lucaskabela/func_under_decomp -> origin/lucaskabela/func_under_decomp 2025-07-24T03:47:28.1529766Z * [new branch] lucaskabela/functional_in_dynamo -> origin/lucaskabela/functional_in_dynamo 2025-07-24T03:47:28.1530489Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-07-24T03:47:28.1531248Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-07-24T03:47:28.1532013Z * [new branch] lucaskabela/remove_aot_dispatcher_metadata -> origin/lucaskabela/remove_aot_dispatcher_metadata 2025-07-24T03:47:28.1532712Z * [new branch] lucaskabela/typing-misc -> origin/lucaskabela/typing-misc 2025-07-24T03:47:28.1533460Z * [new branch] lucaskabela/typing_bytecode_analysis_transform -> origin/lucaskabela/typing_bytecode_analysis_transform 2025-07-24T03:47:28.1534231Z * [new branch] lucaskabela/typing_cache_files -> origin/lucaskabela/typing_cache_files 2025-07-24T03:47:28.1534896Z * [new branch] lucaskabela/typing_debug_utils.py -> origin/lucaskabela/typing_debug_utils.py 2025-07-24T03:47:28.1535542Z * [new branch] lucaskabela/typing_decorators -> origin/lucaskabela/typing_decorators 2025-07-24T03:47:28.1536182Z * [new branch] lucaskabela/typing_eval_frame -> origin/lucaskabela/typing_eval_frame 2025-07-24T03:47:28.1536804Z * [new branch] lucaskabela/typing_for_codegen -> origin/lucaskabela/typing_for_codegen 2025-07-24T03:47:28.1537440Z * [new branch] lucaskabela/typing_side_effects -> origin/lucaskabela/typing_side_effects 2025-07-24T03:47:28.1538096Z * [new branch] lucaskabela/typing_source_guard -> origin/lucaskabela/typing_source_guard 2025-07-24T03:47:28.1538742Z * [new branch] lucaskabela/typing_trace_rules -> origin/lucaskabela/typing_trace_rules 2025-07-24T03:47:28.1539742Z * [new branch] m54qxk-codex/update-default-size_hint-fallback-value -> origin/m54qxk-codex/update-default-size_hint-fallback-value 2025-07-24T03:47:28.1540570Z * [new branch] main -> origin/main 2025-07-24T03:47:28.1541028Z * [new branch] malfet-patch-10 -> origin/malfet-patch-10 2025-07-24T03:47:28.1541526Z * [new branch] malfet-patch-11 -> origin/malfet-patch-11 2025-07-24T03:47:28.1542021Z * [new branch] malfet-patch-12 -> origin/malfet-patch-12 2025-07-24T03:47:28.1542505Z * [new branch] malfet-patch-13 -> origin/malfet-patch-13 2025-07-24T03:47:28.1542994Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-07-24T03:47:28.1543475Z * [new branch] malfet-patch-15 -> origin/malfet-patch-15 2025-07-24T03:47:28.1543967Z * [new branch] malfet-patch-16 -> origin/malfet-patch-16 2025-07-24T03:47:28.1544441Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-07-24T03:47:28.1544932Z * [new branch] malfet-patch-21 -> origin/malfet-patch-21 2025-07-24T03:47:28.1545422Z * [new branch] malfet-patch-23 -> origin/malfet-patch-23 2025-07-24T03:47:28.1545895Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-07-24T03:47:28.1546373Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-07-24T03:47:28.1546837Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-07-24T03:47:28.1547317Z * [new branch] malfet-patch-9 -> origin/malfet-patch-9 2025-07-24T03:47:28.1547860Z * [new branch] malfet/delete-upsteam-cuda -> origin/malfet/delete-upsteam-cuda 2025-07-24T03:47:28.1548472Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-07-24T03:47:28.2049733Z * [new branch] manuel/fix_multidim_boolean_indexing -> origin/manuel/fix_multidim_boolean_indexing 2025-07-24T03:47:28.2050401Z * [new branch] manuel/np_empty_ellipsis -> origin/manuel/np_empty_ellipsis 2025-07-24T03:47:28.2050962Z * [new branch] metascroy-patch-1 -> origin/metascroy-patch-1 2025-07-24T03:47:28.2051482Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-07-24T03:47:28.2051951Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-07-24T03:47:28.2052469Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-07-24T03:47:28.2053056Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-07-24T03:47:28.2053567Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-07-24T03:47:28.2054137Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-07-24T03:47:28.2054712Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-07-24T03:47:28.2055210Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-07-24T03:47:28.2055691Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-07-24T03:47:28.2056165Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-07-24T03:47:28.2056625Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-07-24T03:47:28.2057104Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-07-24T03:47:28.2057627Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-07-24T03:47:28.2058154Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-07-24T03:47:28.2058929Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-07-24T03:47:28.2059636Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-07-24T03:47:28.2060178Z * [new branch] mlazos/cutlass-topo-bug -> origin/mlazos/cutlass-topo-bug 2025-07-24T03:47:28.2060723Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-07-24T03:47:28.2061232Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-07-24T03:47:28.2061750Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-07-24T03:47:28.2062272Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-07-24T03:47:28.2062842Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-07-24T03:47:28.2063370Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-07-24T03:47:28.2063891Z * [new branch] mlazos/disabled-opt -> origin/mlazos/disabled-opt 2025-07-24T03:47:28.2064401Z * [new branch] mlazos/dyn-batch -> origin/mlazos/dyn-batch 2025-07-24T03:47:28.2064858Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-07-24T03:47:28.2065344Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-07-24T03:47:28.2065835Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-07-24T03:47:28.2066350Z * [new branch] mlazos/foreach-reds -> origin/mlazos/foreach-reds 2025-07-24T03:47:28.2066830Z * [new branch] mlazos/fp8 -> origin/mlazos/fp8 2025-07-24T03:47:28.2067280Z * [new branch] mlazos/fp8-bias -> origin/mlazos/fp8-bias 2025-07-24T03:47:28.2067789Z * [new branch] mlazos/fp8-bias-fusion -> origin/mlazos/fp8-bias-fusion 2025-07-24T03:47:28.2068302Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-07-24T03:47:28.2068803Z * [new branch] mlazos/gen-foreach -> origin/mlazos/gen-foreach 2025-07-24T03:47:28.2069282Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-07-24T03:47:28.2069745Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-07-24T03:47:28.2070201Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-07-24T03:47:28.2070657Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-07-24T03:47:28.2071131Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-07-24T03:47:28.2071598Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-07-24T03:47:28.2072079Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-07-24T03:47:28.2072545Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-07-24T03:47:28.2073004Z * [new branch] mlazos/hc-mut -> origin/mlazos/hc-mut 2025-07-24T03:47:28.2073449Z * [new branch] mlazos/hc10 -> origin/mlazos/hc10 2025-07-24T03:47:28.2073886Z * [new branch] mlazos/hc11 -> origin/mlazos/hc11 2025-07-24T03:47:28.2590244Z * [new branch] mlazos/hc12 -> origin/mlazos/hc12 2025-07-24T03:47:28.2590700Z * [new branch] mlazos/hc13 -> origin/mlazos/hc13 2025-07-24T03:47:28.2591130Z * [new branch] mlazos/hc14 -> origin/mlazos/hc14 2025-07-24T03:47:28.2591576Z * [new branch] mlazos/hc15 -> origin/mlazos/hc15 2025-07-24T03:47:28.2592019Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-07-24T03:47:28.2592656Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-07-24T03:47:28.2593206Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-07-24T03:47:28.2593661Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-07-24T03:47:28.2594143Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-07-24T03:47:28.2594575Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-07-24T03:47:28.2595007Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-07-24T03:47:28.2595470Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-07-24T03:47:28.2595978Z * [new branch] mlazos/hop-modes -> origin/mlazos/hop-modes 2025-07-24T03:47:28.2596493Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-07-24T03:47:28.2597029Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-07-24T03:47:28.2597545Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-07-24T03:47:28.2598075Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-07-24T03:47:28.2598578Z * [new branch] mlazos/main -> origin/mlazos/main 2025-07-24T03:47:28.2599102Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-07-24T03:47:28.2599625Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-07-24T03:47:28.2600076Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-07-24T03:47:28.2600519Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-07-24T03:47:28.2600990Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-07-24T03:47:28.2601500Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-07-24T03:47:28.2602077Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-07-24T03:47:28.2602792Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-07-24T03:47:28.2603340Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-07-24T03:47:28.2603819Z * [new branch] mlazos/mode-fix -> origin/mlazos/mode-fix 2025-07-24T03:47:28.2604322Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-07-24T03:47:28.2604817Z * [new branch] mlazos/nested-dc -> origin/mlazos/nested-dc 2025-07-24T03:47:28.2605300Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-07-24T03:47:28.2605845Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-07-24T03:47:28.2606455Z * [new branch] mlazos/op-investigation -> origin/mlazos/op-investigation 2025-07-24T03:47:28.2607006Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-07-24T03:47:28.2607537Z * [new branch] mlazos/opt-bench3 -> origin/mlazos/opt-bench3 2025-07-24T03:47:28.2608021Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-07-24T03:47:28.2608510Z * [new branch] mlazos/opt-slowdown -> origin/mlazos/opt-slowdown 2025-07-24T03:47:28.2609027Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-07-24T03:47:28.2609521Z * [new branch] mlazos/proxy-opt -> origin/mlazos/proxy-opt 2025-07-24T03:47:28.2610035Z * [new branch] mlazos/rm-buf-names -> origin/mlazos/rm-buf-names 2025-07-24T03:47:28.2610650Z * [new branch] mlazos/rm-spam -> origin/mlazos/rm-spam 2025-07-24T03:47:28.2611112Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-07-24T03:47:28.2611684Z * [new branch] mlazos/sdpa-driss -> origin/mlazos/sdpa-driss 2025-07-24T03:47:28.2612200Z * [new branch] mlazos/static-idx-dbg -> origin/mlazos/static-idx-dbg 2025-07-24T03:47:28.2612774Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-07-24T03:47:28.2613334Z * [new branch] mlazos/sub-param-fix -> origin/mlazos/sub-param-fix 2025-07-24T03:47:28.2613829Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-07-24T03:47:28.2614346Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-07-24T03:47:28.2614844Z * [new branch] mlazos/test -> origin/mlazos/test 2025-07-24T03:47:28.3037087Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-07-24T03:47:28.3037621Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-07-24T03:47:28.3038171Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-07-24T03:47:28.3038716Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-07-24T03:47:28.3039245Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-07-24T03:47:28.3039768Z * [new branch] mlazos/topo-fix -> origin/mlazos/topo-fix 2025-07-24T03:47:28.3040287Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-07-24T03:47:28.3040803Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-07-24T03:47:28.3041319Z * [new branch] mlazos/tuple-fixes -> origin/mlazos/tuple-fixes 2025-07-24T03:47:28.3041832Z * [new branch] mlazos/tuple-fixes2 -> origin/mlazos/tuple-fixes2 2025-07-24T03:47:28.3042433Z * [new branch] mlazos/tuple-handling -> origin/mlazos/tuple-handling 2025-07-24T03:47:28.3042957Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-07-24T03:47:28.3043446Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-07-24T03:47:28.3043950Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-07-24T03:47:28.3044464Z * [new branch] move-theme-out-docker -> origin/move-theme-out-docker 2025-07-24T03:47:28.3044976Z * [new branch] mps-linear-1d -> origin/mps-linear-1d 2025-07-24T03:47:28.3045432Z * [new branch] msaroufim/acc -> origin/msaroufim/acc 2025-07-24T03:47:28.3045897Z * [new branch] msaroufim/be1 -> origin/msaroufim/be1 2025-07-24T03:47:28.3046393Z * [new branch] msaroufim/ck_custom_op -> origin/msaroufim/ck_custom_op 2025-07-24T03:47:28.3046934Z * [new branch] msaroufim/cn_path -> origin/msaroufim/cn_path 2025-07-24T03:47:28.3047462Z * [new branch] msaroufim/compile_kernel -> origin/msaroufim/compile_kernel 2025-07-24T03:47:28.3048064Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-07-24T03:47:28.3048607Z * [new branch] msaroufim/gencode -> origin/msaroufim/gencode 2025-07-24T03:47:28.3049103Z * [new branch] msaroufim/reduce -> origin/msaroufim/reduce 2025-07-24T03:47:28.3049698Z * [new branch] msaroufim/simplify_nvrtc_discovery -> origin/msaroufim/simplify_nvrtc_discovery 2025-07-24T03:47:28.3050305Z * [new branch] mtia/basic-cmake -> origin/mtia/basic-cmake 2025-07-24T03:47:28.3050917Z * [new branch] mul_op -> origin/mul_op 2025-07-24T03:47:28.3051366Z * [new branch] ngimel/cat_perf -> origin/ngimel/cat_perf 2025-07-24T03:47:28.3051984Z * [new branch] ngimel/cudamoduleload -> origin/ngimel/cudamoduleload 2025-07-24T03:47:28.3052575Z * [new branch] ngimel/deterministic_scatter -> origin/ngimel/deterministic_scatter 2025-07-24T03:47:28.3053143Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-07-24T03:47:28.3053627Z * [new branch] ngimel/index_None -> origin/ngimel/index_None 2025-07-24T03:47:28.3054163Z * [new branch] ngimel/mempool_emptycache -> origin/ngimel/mempool_emptycache 2025-07-24T03:47:28.3054674Z * [new branch] nightly -> origin/nightly 2025-07-24T03:47:28.3055146Z * [new branch] nmacchioni-patch-1 -> origin/nmacchioni-patch-1 2025-07-24T03:47:28.3055688Z * [new branch] nmacchioni-patch-10 -> origin/nmacchioni-patch-10 2025-07-24T03:47:28.3056404Z * [new branch] nmacchioni-patch-6 -> origin/nmacchioni-patch-6 2025-07-24T03:47:28.3056935Z * [new branch] nmacchioni-patch-7 -> origin/nmacchioni-patch-7 2025-07-24T03:47:28.3057456Z * [new branch] nmacchioni-patch-8 -> origin/nmacchioni-patch-8 2025-07-24T03:47:28.3057970Z * [new branch] nmacchioni-patch-9 -> origin/nmacchioni-patch-9 2025-07-24T03:47:28.3058478Z * [new branch] np_indexing_fix -> origin/np_indexing_fix 2025-07-24T03:47:28.3058973Z * [new branch] nullplay_fuse_matmul -> origin/nullplay_fuse_matmul 2025-07-24T03:47:28.3059645Z * [new branch] nweidia/enable-B200-inductor-nightly-ci -> origin/nweidia/enable-B200-inductor-nightly-ci 2025-07-24T03:47:28.3060292Z * [new branch] openblas_gemv -> origin/openblas_gemv 2025-07-24T03:47:28.3060768Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-07-24T03:47:28.3061265Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-07-24T03:47:28.3061751Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-07-24T03:47:28.3534127Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-07-24T03:47:28.3534624Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-07-24T03:47:28.3535098Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-07-24T03:47:28.3535571Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-07-24T03:47:28.3536060Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-07-24T03:47:28.3536533Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-07-24T03:47:28.3537020Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-07-24T03:47:28.3537495Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-07-24T03:47:28.3537974Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-07-24T03:47:28.3538450Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-07-24T03:47:28.3538917Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-07-24T03:47:28.3539399Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-07-24T03:47:28.3539858Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-07-24T03:47:28.3540339Z * [new branch] orig/release/2.8 -> origin/orig/release/2.8 2025-07-24T03:47:28.3540815Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-07-24T03:47:28.3541453Z * [new branch] padded-tensor -> origin/padded-tensor 2025-07-24T03:47:28.3541918Z * [new branch] parallel_cat -> origin/parallel_cat 2025-07-24T03:47:28.3542485Z * [new branch] parallel_reduce -> origin/parallel_reduce 2025-07-24T03:47:28.3542934Z * [new branch] pca2 -> origin/pca2 2025-07-24T03:47:28.3543385Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-07-24T03:47:28.3543996Z * [new branch] pianpwk/backed_size_oblivious_export -> origin/pianpwk/backed_size_oblivious_export 2025-07-24T03:47:28.3544643Z * [new branch] pianpwk/dde_repeat_cat -> origin/pianpwk/dde_repeat_cat 2025-07-24T03:47:28.3545240Z * [new branch] pianpwk/draft_export_normalize -> origin/pianpwk/draft_export_normalize 2025-07-24T03:47:28.3545857Z * [new branch] pianpwk/dynamic_source_dim -> origin/pianpwk/dynamic_source_dim 2025-07-24T03:47:28.3546428Z * [new branch] pianpwk/int_in_pgo_state -> origin/pianpwk/int_in_pgo_state 2025-07-24T03:47:28.3547017Z * [new branch] pianpwk/invalidate_fake_memo -> origin/pianpwk/invalidate_fake_memo 2025-07-24T03:47:28.3547628Z * [new branch] pianpwk/lru_cache_bound_sympy -> origin/pianpwk/lru_cache_bound_sympy 2025-07-24T03:47:28.3548254Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-07-24T03:47:28.3548846Z * [new branch] pianpwk/nonzero_memo -> origin/pianpwk/nonzero_memo 2025-07-24T03:47:28.3549479Z * [new branch] pianpwk/obl_scatter_gather_index -> origin/pianpwk/obl_scatter_gather_index 2025-07-24T03:47:28.3550114Z * [new branch] pianpwk/oblivious_infer_size -> origin/pianpwk/oblivious_infer_size 2025-07-24T03:47:28.3550731Z * [new branch] pianpwk/oblivious_meta_select -> origin/pianpwk/oblivious_meta_select 2025-07-24T03:47:28.3551391Z * [new branch] pianpwk/oblivious_reshape_view_bad -> origin/pianpwk/oblivious_reshape_view_bad 2025-07-24T03:47:28.3552122Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-07-24T03:47:28.3552806Z * [new branch] pianpwk/oblivious_should_swap -> origin/pianpwk/oblivious_should_swap 2025-07-24T03:47:28.3553453Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-07-24T03:47:28.3554075Z * [new branch] pianpwk/oblivious_where -> origin/pianpwk/oblivious_where 2025-07-24T03:47:28.3554633Z * [new branch] pianpwk/pad_nd_oblivious -> origin/pianpwk/pad_nd_oblivious 2025-07-24T03:47:28.3555196Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-07-24T03:47:28.3555786Z * [new branch] pianpwk/remove_guard_fail_break -> origin/pianpwk/remove_guard_fail_break 2025-07-24T03:47:28.3556373Z * [new branch] pianpwk/single_slice -> origin/pianpwk/single_slice 2025-07-24T03:47:28.3556945Z * [new branch] pianpwk/slice_fresh_symbols -> origin/pianpwk/slice_fresh_symbols 2025-07-24T03:47:28.3557531Z * [new branch] pianpwk/test_slice_fake_impl -> origin/pianpwk/test_slice_fake_impl 2025-07-24T03:47:28.3558160Z * [new branch] pianpwk/unbacked_channels_last -> origin/pianpwk/unbacked_channels_last 2025-07-24T03:47:28.3558773Z * [new branch] pianpwk/unbacked_safe_conv1d -> origin/pianpwk/unbacked_safe_conv1d 2025-07-24T03:47:28.4084793Z * [new branch] pianpwk/unbacked_sdpa_flash -> origin/pianpwk/unbacked_sdpa_flash 2025-07-24T03:47:28.4085462Z * [new branch] pianpwk/unbacked_should_swap -> origin/pianpwk/unbacked_should_swap 2025-07-24T03:47:28.4086094Z * [new branch] pianpwk/unbacked_slice_binding -> origin/pianpwk/unbacked_slice_binding 2025-07-24T03:47:28.4086953Z * [new branch] pianpwk/unbacked_slice_forward -> origin/pianpwk/unbacked_slice_forward 2025-07-24T03:47:28.4087728Z * [new branch] pianpwk/verbose_tensor_guards -> origin/pianpwk/verbose_tensor_guards 2025-07-24T03:47:28.4088318Z * [new branch] pianpwk/wan21_reshape -> origin/pianpwk/wan21_reshape 2025-07-24T03:47:28.4088894Z * [new branch] pianpwk/whitelist_optimizer -> origin/pianpwk/whitelist_optimizer 2025-07-24T03:47:28.4089666Z * [new branch] pick-torch-standalone-rename-to-release-2.8 -> origin/pick-torch-standalone-rename-to-release-2.8 2025-07-24T03:47:28.4090407Z * [new branch] pin-theme-version -> origin/pin-theme-version 2025-07-24T03:47:28.4090890Z * [new branch] pin-torchao -> origin/pin-torchao 2025-07-24T03:47:28.4091395Z * [new branch] piz/clean_strategy_0627 -> origin/piz/clean_strategy_0627 2025-07-24T03:47:28.4091947Z * [new branch] piz/dtensor_op_coverage -> origin/piz/dtensor_op_coverage 2025-07-24T03:47:28.4092491Z * [new branch] piz/fall_back_missing_0705 -> origin/piz/fall_back_missing_0705 2025-07-24T03:47:28.4093043Z * [new branch] piz/fall_back_missing_0716 -> origin/piz/fall_back_missing_0716 2025-07-24T03:47:28.4093572Z * [new branch] piz/fill_dist_cost_0702 -> origin/piz/fill_dist_cost_0702 2025-07-24T03:47:28.4094108Z * [new branch] piz/fill_dist_cost_0702-2 -> origin/piz/fill_dist_cost_0702-2 2025-07-24T03:47:28.4094652Z * [new branch] piz/fill_dist_cost_0702-3 -> origin/piz/fill_dist_cost_0702-3 2025-07-24T03:47:28.4095145Z * [new branch] piz/fix_einsum -> origin/piz/fix_einsum 2025-07-24T03:47:28.4095639Z * [new branch] piz/fix_index_put_0706 -> origin/piz/fix_index_put_0706 2025-07-24T03:47:28.4096121Z * [new branch] piz/fix_slice -> origin/piz/fix_slice 2025-07-24T03:47:28.4096608Z * [new branch] piz/remove_assert_0709 -> origin/piz/remove_assert_0709 2025-07-24T03:47:28.4097118Z * [new branch] pool-separate -> origin/pool-separate 2025-07-24T03:47:28.4097557Z * [new branch] pr-156087 -> origin/pr-156087 2025-07-24T03:47:28.4097987Z * [new branch] pr/131860 -> origin/pr/131860 2025-07-24T03:47:28.4098405Z * [new branch] pr150241 -> origin/pr150241 2025-07-24T03:47:28.4098850Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-07-24T03:47:28.4099347Z * [new branch] pull-latest-theme -> origin/pull-latest-theme 2025-07-24T03:47:28.4099872Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-07-24T03:47:28.4100431Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-07-24T03:47:28.4100915Z * [new branch] randdcefix -> origin/randdcefix 2025-07-24T03:47:28.4101367Z * [new branch] release/1.10 -> origin/release/1.10 2025-07-24T03:47:28.4101806Z * [new branch] release/1.11 -> origin/release/1.11 2025-07-24T03:47:28.4102247Z * [new branch] release/1.12 -> origin/release/1.12 2025-07-24T03:47:28.4102689Z * [new branch] release/1.13 -> origin/release/1.13 2025-07-24T03:47:28.4103121Z * [new branch] release/1.4 -> origin/release/1.4 2025-07-24T03:47:28.4103563Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-07-24T03:47:28.4103997Z * [new branch] release/1.5 -> origin/release/1.5 2025-07-24T03:47:28.4104517Z * [new branch] release/1.6 -> origin/release/1.6 2025-07-24T03:47:28.4105141Z * [new branch] release/1.7 -> origin/release/1.7 2025-07-24T03:47:28.4105672Z * [new branch] release/1.8 -> origin/release/1.8 2025-07-24T03:47:28.4106112Z * [new branch] release/1.9 -> origin/release/1.9 2025-07-24T03:47:28.4106547Z * [new branch] release/2.0 -> origin/release/2.0 2025-07-24T03:47:28.4106985Z * [new branch] release/2.1 -> origin/release/2.1 2025-07-24T03:47:28.4107415Z * [new branch] release/2.2 -> origin/release/2.2 2025-07-24T03:47:28.4107850Z * [new branch] release/2.3 -> origin/release/2.3 2025-07-24T03:47:28.4108290Z * [new branch] release/2.4 -> origin/release/2.4 2025-07-24T03:47:28.4108713Z * [new branch] release/2.5 -> origin/release/2.5 2025-07-24T03:47:28.4614336Z * [new branch] release/2.6 -> origin/release/2.6 2025-07-24T03:47:28.4614831Z * [new branch] release/2.7 -> origin/release/2.7 2025-07-24T03:47:28.4615305Z * [new branch] release/2.8 -> origin/release/2.8 2025-07-24T03:47:28.4615768Z * [new branch] release_notes -> origin/release_notes 2025-07-24T03:47:28.4616294Z * [new branch] remove-actionable-label -> origin/remove-actionable-label 2025-07-24T03:47:28.4616817Z * [new branch] remove_ts_docs -> origin/remove_ts_docs 2025-07-24T03:47:28.4617439Z * [new branch] rephrase-export-remove-torchscript -> origin/rephrase-export-remove-torchscript 2025-07-24T03:47:28.4618239Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-07-24T03:47:28.4619010Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-07-24T03:47:28.4619712Z * [new branch] revert-156870-gh/skarjala/3/head -> origin/revert-156870-gh/skarjala/3/head 2025-07-24T03:47:28.4620385Z * [new branch] revert-156890-triton_34_update -> origin/revert-156890-triton_34_update 2025-07-24T03:47:28.4621223Z * [new branch] revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ -> origin/revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ 2025-07-24T03:47:28.4621983Z * [new branch] rithesh/fsdp_cpu -> origin/rithesh/fsdp_cpu 2025-07-24T03:47:28.4622485Z * [new branch] rocm-monitoring -> origin/rocm-monitoring 2025-07-24T03:47:28.4623195Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-07-24T03:47:28.4623950Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-07-24T03:47:28.4624518Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-07-24T03:47:28.4624995Z * [new branch] rzou/njt -> origin/rzou/njt 2025-07-24T03:47:28.4625452Z * [new branch] rzou/operator -> origin/rzou/operator 2025-07-24T03:47:28.4625889Z * [new branch] rzou/pca -> origin/rzou/pca 2025-07-24T03:47:28.4626337Z * [new branch] rzou/pipe_split -> origin/rzou/pipe_split 2025-07-24T03:47:28.4626821Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-07-24T03:47:28.4627294Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-07-24T03:47:28.4627942Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-07-24T03:47:28.4628840Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-07-24T03:47:28.4629854Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-07-24T03:47:28.4630492Z * [new branch] save -> origin/save 2025-07-24T03:47:28.4630916Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-07-24T03:47:28.4631409Z * [new branch] seemethere-patch-1 -> origin/seemethere-patch-1 2025-07-24T03:47:28.4631919Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-07-24T03:47:28.4632440Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-07-24T03:47:28.4632983Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-07-24T03:47:28.4633519Z * [new branch] shoumikhin-patch-12 -> origin/shoumikhin-patch-12 2025-07-24T03:47:28.4634089Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-07-24T03:47:28.4634625Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-07-24T03:47:28.4635141Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-07-24T03:47:28.4635641Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-07-24T03:47:28.4636207Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-07-24T03:47:28.4636753Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-07-24T03:47:28.4637297Z * [new branch] stablize-compilation-time -> origin/stablize-compilation-time 2025-07-24T03:47:28.4637902Z * [new branch] standalone_package_weights -> origin/standalone_package_weights 2025-07-24T03:47:28.4638449Z * [new branch] starterTaskUpdate -> origin/starterTaskUpdate 2025-07-24T03:47:28.4638963Z * [new branch] step2vllmsetup -> origin/step2vllmsetup 2025-07-24T03:47:28.4639452Z * [new branch] subgraph_fuse -> origin/subgraph_fuse 2025-07-24T03:47:28.4639944Z * [new branch] support-b200-runners -> origin/support-b200-runners 2025-07-24T03:47:28.5081319Z * [new branch] support-uv-in-collect_env -> origin/support-uv-in-collect_env 2025-07-24T03:47:28.5081929Z * [new branch] support_gqa_cpu -> origin/support_gqa_cpu 2025-07-24T03:47:28.5082525Z * [new branch] suryasub/fix-nccl-hang -> origin/suryasub/fix-nccl-hang 2025-07-24T03:47:28.5083080Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-07-24T03:47:28.5083573Z * [new branch] svekars-patch-2 -> origin/svekars-patch-2 2025-07-24T03:47:28.5084045Z * [new branch] switch-bn -> origin/switch-bn 2025-07-24T03:47:28.5084543Z * [new branch] syed-ahmed-patch-1 -> origin/syed-ahmed-patch-1 2025-07-24T03:47:28.5085109Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-07-24T03:47:28.5085640Z * [new branch] teja/add_logs -> origin/teja/add_logs 2025-07-24T03:47:28.5086136Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-07-24T03:47:28.5086667Z * [new branch] test-internal-et -> origin/test-internal-et 2025-07-24T03:47:28.5087185Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-07-24T03:47:28.5087794Z * [new branch] test-myst-markdown-docstring -> origin/test-myst-markdown-docstring 2025-07-24T03:47:28.5088362Z * [new branch] test/bmm_heur -> origin/test/bmm_heur 2025-07-24T03:47:28.5089022Z * [new branch] test/inductor -> origin/test/inductor 2025-07-24T03:47:28.5089522Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-07-24T03:47:28.5090131Z * [new branch] torchtitan_ep -> origin/torchtitan_ep 2025-07-24T03:47:28.5090588Z * [new branch] tp_changes -> origin/tp_changes 2025-07-24T03:47:28.5091078Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-07-24T03:47:28.5091650Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-07-24T03:47:28.5092176Z * [new branch] trackMonitor -> origin/trackMonitor 2025-07-24T03:47:28.5092644Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-07-24T03:47:28.5093117Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-07-24T03:47:28.5093572Z * [new branch] triton-update -> origin/triton-update 2025-07-24T03:47:28.5094027Z * [new branch] triton_kernel -> origin/triton_kernel 2025-07-24T03:47:28.5094577Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-07-24T03:47:28.5095115Z * [new branch] try-runllm -> origin/try-runllm 2025-07-24T03:47:28.5095556Z * [new branch] type_dec -> origin/type_dec 2025-07-24T03:47:28.5096067Z * [new branch] udate-sphinx-dependancies -> origin/udate-sphinx-dependancies 2025-07-24T03:47:28.5096795Z * [new branch] update-audio-commit-hash/15890021967-1637-1 -> origin/update-audio-commit-hash/15890021967-1637-1 2025-07-24T03:47:28.5097640Z * [new branch] update-audio-commit-hash/16157311175-1652-1 -> origin/update-audio-commit-hash/16157311175-1652-1 2025-07-24T03:47:28.5098477Z * [new branch] update-audio-commit-hash/16307312222-1661-1 -> origin/update-audio-commit-hash/16307312222-1661-1 2025-07-24T03:47:28.5099313Z * [new branch] update-audio-commit-hash/16431348808-1673-1 -> origin/update-audio-commit-hash/16431348808-1673-1 2025-07-24T03:47:28.5100202Z * [new branch] update-executorch-commit-hash/15694981040-1626-1 -> origin/update-executorch-commit-hash/15694981040-1626-1 2025-07-24T03:47:28.5101099Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-07-24T03:47:28.5101950Z * [new branch] update-vision-commit-hash/15336342773-1607-1 -> origin/update-vision-commit-hash/15336342773-1607-1 2025-07-24T03:47:28.5102770Z * [new branch] update-vllm-commit-hash/16431348808-1673-1 -> origin/update-vllm-commit-hash/16431348808-1673-1 2025-07-24T03:47:28.5103576Z * [new branch] update-vllm-commit-hash/16484773233-1682-1 -> origin/update-vllm-commit-hash/16484773233-1682-1 2025-07-24T03:47:28.5104373Z * [new branch] update-xla-commit-hash/15818245712-191-1 -> origin/update-xla-commit-hash/15818245712-191-1 2025-07-24T03:47:28.5105151Z * [new branch] update-xla-commit-hash/16260974441-194-1 -> origin/update-xla-commit-hash/16260974441-194-1 2025-07-24T03:47:28.5105938Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-07-24T03:47:28.5106609Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-07-24T03:47:28.5631597Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-07-24T03:47:28.5632216Z * [new branch] update_slow_tests_1749454889 -> origin/update_slow_tests_1749454889 2025-07-24T03:47:28.5632791Z * [new branch] update_slow_tests_1751874113 -> origin/update_slow_tests_1751874113 2025-07-24T03:47:28.5633566Z * [new branch] update_slow_tests_1752478971 -> origin/update_slow_tests_1752478971 2025-07-24T03:47:28.5634150Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-07-24T03:47:28.5634835Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-07-24T03:47:28.5635315Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-07-24T03:47:28.5635758Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-07-24T03:47:28.5636233Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-07-24T03:47:28.5636636Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-07-24T03:47:28.5637114Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-07-24T03:47:28.5637524Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-07-24T03:47:28.5637921Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-07-24T03:47:28.5638354Z * [new branch] validate_fn -> origin/validate_fn 2025-07-24T03:47:28.5638815Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-07-24T03:47:28.5639299Z * [new branch] viable/strict -> origin/viable/strict 2025-07-24T03:47:28.5639756Z * [new branch] vkuzo-patch-1 -> origin/vkuzo-patch-1 2025-07-24T03:47:28.5640207Z * [new branch] vllmpin -> origin/vllmpin 2025-07-24T03:47:28.5640641Z * [new branch] vllmpintest -> origin/vllmpintest 2025-07-24T03:47:28.5657043Z * [new branch] wdvr-patch-1 -> origin/wdvr-patch-1 2025-07-24T03:47:28.5657537Z * [new branch] wdvr-patch-2 -> origin/wdvr-patch-2 2025-07-24T03:47:28.5658059Z * [new branch] wdvr/conda_devcontainer -> origin/wdvr/conda_devcontainer 2025-07-24T03:47:28.5658621Z * [new branch] wdvr/fix_logging_test -> origin/wdvr/fix_logging_test 2025-07-24T03:47:28.5659143Z * [new branch] wdvr/iss145259_alt -> origin/wdvr/iss145259_alt 2025-07-24T03:47:28.5659642Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-07-24T03:47:28.5660125Z * [new branch] weight_sharing_cpp -> origin/weight_sharing_cpp 2025-07-24T03:47:28.5660678Z * [new branch] whc/flight -> origin/whc/flight 2025-07-24T03:47:28.5661125Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-07-24T03:47:28.5661640Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-07-24T03:47:28.5662088Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-07-24T03:47:28.5662540Z * [new branch] whc/flight_full -> origin/whc/flight_full 2025-07-24T03:47:28.5663023Z * [new branch] whc/p2phang -> origin/whc/p2phang 2025-07-24T03:47:28.5663460Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-07-24T03:47:28.5663904Z * [new branch] whc/uneven -> origin/whc/uneven 2025-07-24T03:47:28.5664392Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-07-24T03:47:28.5664855Z * [new branch] win_warnings -> origin/win_warnings 2025-07-24T03:47:28.5665300Z * [new branch] xmfan/ca_0516 -> origin/xmfan/ca_0516 2025-07-24T03:47:28.5665768Z * [new branch] xmfan/ca_1051b93192 -> origin/xmfan/ca_1051b93192 2025-07-24T03:47:28.5666488Z * [new branch] xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 -> origin/xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 2025-07-24T03:47:28.5667294Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-07-24T03:47:28.5668552Z * [new branch] xmfan/ca_9d59b516e9 -> origin/xmfan/ca_9d59b516e9 2025-07-24T03:47:28.5669145Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-07-24T03:47:28.5669610Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-07-24T03:47:28.5670074Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-07-24T03:47:28.5670557Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-07-24T03:47:28.5671051Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-07-24T03:47:28.5671533Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-07-24T03:47:28.5672023Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-07-24T03:47:28.5672553Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-07-24T03:47:28.6097484Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-07-24T03:47:28.6098008Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-07-24T03:47:28.6098483Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-07-24T03:47:28.6098963Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-07-24T03:47:28.6099437Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-07-24T03:47:28.6099932Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-07-24T03:47:28.6100503Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-07-24T03:47:28.6101069Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-07-24T03:47:28.6101680Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-07-24T03:47:28.6102229Z * [new branch] xmfan/ca_nested -> origin/xmfan/ca_nested 2025-07-24T03:47:28.6102772Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-07-24T03:47:28.6103347Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-07-24T03:47:28.6103929Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-07-24T03:47:28.6104492Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-07-24T03:47:28.6105059Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-07-24T03:47:28.6105654Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-07-24T03:47:28.6106201Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-07-24T03:47:28.6106746Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-07-24T03:47:28.6107266Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-07-24T03:47:28.6107744Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-07-24T03:47:28.6108238Z * [new branch] xmfan/circular_dep -> origin/xmfan/circular_dep 2025-07-24T03:47:28.6108802Z * [new branch] xmfan/compiled_autograd_feb_29 -> origin/xmfan/compiled_autograd_feb_29 2025-07-24T03:47:28.6109487Z * [new branch] xmfan/compiled_autograd_graph_breaks -> origin/xmfan/compiled_autograd_graph_breaks 2025-07-24T03:47:28.6110279Z * [new branch] xmfan/compiled_autograd_hypothetical_perf -> origin/xmfan/compiled_autograd_hypothetical_perf 2025-07-24T03:47:28.6111052Z * [new branch] xmfan/compiled_autograd_perf_no_reuse -> origin/xmfan/compiled_autograd_perf_no_reuse 2025-07-24T03:47:28.6111904Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-07-24T03:47:28.6112501Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-07-24T03:47:28.6113325Z * [new branch] xmfan/feb_10_compiled_autograd -> origin/xmfan/feb_10_compiled_autograd 2025-07-24T03:47:28.6114048Z * [new branch] xmfan/feb_10_compiled_autograd_cudagraph -> origin/xmfan/feb_10_compiled_autograd_cudagraph 2025-07-24T03:47:28.6114689Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-07-24T03:47:28.6115428Z * [new branch] xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 2025-07-24T03:47:28.6116371Z * [new branch] xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 2025-07-24T03:47:28.6117113Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-07-24T03:47:28.6117640Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-07-24T03:47:28.6118137Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-07-24T03:47:28.6118607Z * [new branch] xmfan/test -> origin/xmfan/test 2025-07-24T03:47:28.6119207Z * [new branch] y-do-we-have-7-build-systems -> origin/y-do-we-have-7-build-systems 2025-07-24T03:47:28.6119874Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-07-24T03:47:28.6120440Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-07-24T03:47:28.6121015Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-07-24T03:47:28.6121586Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-07-24T03:47:28.6122104Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-07-24T03:47:28.6122712Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-07-24T03:47:28.6123282Z * [new branch] zainr/cleanup-gh-runners -> origin/zainr/cleanup-gh-runners 2025-07-24T03:47:28.6567361Z * [new branch] zainr/docs-claude -> origin/zainr/docs-claude 2025-07-24T03:47:28.6567929Z * [new branch] zainr/fixlint -> origin/zainr/fixlint 2025-07-24T03:47:28.6568406Z * [new branch] zainr/lint-py3.9 -> origin/zainr/lint-py3.9 2025-07-24T03:47:28.6568928Z * [new branch] zainr/mypy15-claude -> origin/zainr/mypy15-claude 2025-07-24T03:47:28.6569467Z * [new branch] zainr/pre-push-hooks -> origin/zainr/pre-push-hooks 2025-07-24T03:47:28.6570011Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-07-24T03:47:28.6570590Z * [new branch] zainr/test-workflow -> origin/zainr/test-workflow 2025-07-24T03:47:28.6571070Z * [new branch] zainr/test2 -> origin/zainr/test2 2025-07-24T03:47:28.6571546Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-07-24T03:47:28.6572027Z * [new branch] zainr/uv-pip-fix -> origin/zainr/uv-pip-fix 2025-07-24T03:47:28.6572540Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-07-24T03:47:28.6573009Z * [new branch] zb2p -> origin/zb2p 2025-07-24T03:47:28.6573458Z * [new branch] zdevito-patch-1 -> origin/zdevito-patch-1 2025-07-24T03:47:28.6574013Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-07-24T03:47:28.6574573Z * [new branch] zhxchen17/nativert/0 -> origin/zhxchen17/nativert/0 2025-07-24T03:47:28.6575294Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-07-24T03:47:28.6576542Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-07-24T03:47:28.6577047Z * [new branch] zxiiro/bazel -> origin/zxiiro/bazel 2025-07-24T03:47:28.6577509Z * [new branch] zxiiro/docs -> origin/zxiiro/docs 2025-07-24T03:47:28.6578004Z * [new branch] zxiiro/get-hardware -> origin/zxiiro/get-hardware 2025-07-24T03:47:28.6578522Z * [new branch] zxiiro/linux-build -> origin/zxiiro/linux-build 2025-07-24T03:47:28.6579031Z * [new branch] zxiiro/linux-test -> origin/zxiiro/linux-test 2025-07-24T03:47:28.6579499Z * [new branch] zxiiro/main -> origin/zxiiro/main 2025-07-24T03:47:28.6579942Z * [new branch] zxiiro/test -> origin/zxiiro/test 2025-07-24T03:47:28.6580410Z * [new branch] zxiiro/windows -> origin/zxiiro/windows 2025-07-24T03:47:28.6581174Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-07-24T03:47:28.6581902Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-07-24T03:47:28.6582339Z * [new tag] ciflow/android/149601 -> ciflow/android/149601 2025-07-24T03:47:28.6582793Z * [new tag] ciflow/binaries/143959 -> ciflow/binaries/143959 2025-07-24T03:47:28.6583236Z * [new tag] ciflow/binaries/156049 -> ciflow/binaries/156049 2025-07-24T03:47:28.6583688Z * [new tag] ciflow/binaries/157432 -> ciflow/binaries/157432 2025-07-24T03:47:28.6584125Z * [new tag] ciflow/binaries/157685 -> ciflow/binaries/157685 2025-07-24T03:47:28.6584569Z * [new tag] ciflow/binaries/157689 -> ciflow/binaries/157689 2025-07-24T03:47:28.6585020Z * [new tag] ciflow/binaries/158104 -> ciflow/binaries/158104 2025-07-24T03:47:28.6585471Z * [new tag] ciflow/binaries/158623 -> ciflow/binaries/158623 2025-07-24T03:47:28.6585978Z * [new tag] ciflow/binaries_libtorch/143959 -> ciflow/binaries_libtorch/143959 2025-07-24T03:47:28.6586539Z * [new tag] ciflow/binaries_libtorch/156049 -> ciflow/binaries_libtorch/156049 2025-07-24T03:47:28.6587096Z * [new tag] ciflow/binaries_libtorch/157432 -> ciflow/binaries_libtorch/157432 2025-07-24T03:47:28.6587623Z * [new tag] ciflow/binaries_wheel/143959 -> ciflow/binaries_wheel/143959 2025-07-24T03:47:28.6588141Z * [new tag] ciflow/binaries_wheel/155731 -> ciflow/binaries_wheel/155731 2025-07-24T03:47:28.6588647Z * [new tag] ciflow/binaries_wheel/156049 -> ciflow/binaries_wheel/156049 2025-07-24T03:47:28.6589143Z * [new tag] ciflow/binaries_wheel/157432 -> ciflow/binaries_wheel/157432 2025-07-24T03:47:28.6589637Z * [new tag] ciflow/binaries_wheel/158733 -> ciflow/binaries_wheel/158733 2025-07-24T03:47:28.6590156Z * [new tag] ciflow/h100-distributed/144552 -> ciflow/h100-distributed/144552 2025-07-24T03:47:28.6590697Z * [new tag] ciflow/h100-distributed/150312 -> ciflow/h100-distributed/150312 2025-07-24T03:47:28.6591244Z * [new tag] ciflow/h100-distributed/156703 -> ciflow/h100-distributed/156703 2025-07-24T03:47:28.6591768Z * [new tag] ciflow/h100-distributed/156881 -> ciflow/h100-distributed/156881 2025-07-24T03:47:28.6936731Z * [new tag] ciflow/h100-symm-mem/151845 -> ciflow/h100-symm-mem/151845 2025-07-24T03:47:28.6937309Z * [new tag] ciflow/h100-symm-mem/156881 -> ciflow/h100-symm-mem/156881 2025-07-24T03:47:28.6937892Z * [new tag] ciflow/h100-symm-mem/157026 -> ciflow/h100-symm-mem/157026 2025-07-24T03:47:28.6938584Z * [new tag] ciflow/h100-symm-mem/157029 -> ciflow/h100-symm-mem/157029 2025-07-24T03:47:28.6939197Z * [new tag] ciflow/h100-symm-mem/158515 -> ciflow/h100-symm-mem/158515 2025-07-24T03:47:28.6939690Z * [new tag] ciflow/h100-symm-mem/158676 -> ciflow/h100-symm-mem/158676 2025-07-24T03:47:28.6940170Z * [new tag] ciflow/h100-symm-mem/158718 -> ciflow/h100-symm-mem/158718 2025-07-24T03:47:28.6940867Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151845 -> ciflow/inductor-perf-test-nightly-rocm/151845 2025-07-24T03:47:28.6941734Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/156592 -> ciflow/inductor-perf-test-nightly-rocm/156592 2025-07-24T03:47:28.6942580Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/158887 -> ciflow/inductor-perf-test-nightly-rocm/158887 2025-07-24T03:47:28.6943480Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/159001 -> ciflow/inductor-perf-test-nightly-rocm/159001 2025-07-24T03:47:28.6944322Z * [new tag] ciflow/inductor-perf-test-nightly/156592 -> ciflow/inductor-perf-test-nightly/156592 2025-07-24T03:47:28.6944995Z * [new tag] ciflow/inductor-periodic/158887 -> ciflow/inductor-periodic/158887 2025-07-24T03:47:28.6945583Z * [new tag] ciflow/inductor-periodic/159001 -> ciflow/inductor-periodic/159001 2025-07-24T03:47:28.6946117Z * [new tag] ciflow/inductor-rocm/151845 -> ciflow/inductor-rocm/151845 2025-07-24T03:47:28.6946618Z * [new tag] ciflow/inductor-rocm/158074 -> ciflow/inductor-rocm/158074 2025-07-24T03:47:28.6947119Z * [new tag] ciflow/inductor-rocm/158747 -> ciflow/inductor-rocm/158747 2025-07-24T03:47:28.6947621Z * [new tag] ciflow/inductor-rocm/158887 -> ciflow/inductor-rocm/158887 2025-07-24T03:47:28.6948128Z * [new tag] ciflow/inductor-rocm/159001 -> ciflow/inductor-rocm/159001 2025-07-24T03:47:28.6948603Z * [new tag] ciflow/inductor/137400 -> ciflow/inductor/137400 2025-07-24T03:47:28.6949065Z * [new tag] ciflow/inductor/139561 -> ciflow/inductor/139561 2025-07-24T03:47:28.6949566Z * [new tag] ciflow/inductor/144556 -> ciflow/inductor/144556 2025-07-24T03:47:28.6950017Z * [new tag] ciflow/inductor/148180 -> ciflow/inductor/148180 2025-07-24T03:47:28.6950519Z * [new tag] ciflow/inductor/148328 -> ciflow/inductor/148328 2025-07-24T03:47:28.6950974Z * [new tag] ciflow/inductor/148408 -> ciflow/inductor/148408 2025-07-24T03:47:28.6951422Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-07-24T03:47:28.6951864Z * [new tag] ciflow/inductor/149961 -> ciflow/inductor/149961 2025-07-24T03:47:28.6952318Z * [new tag] ciflow/inductor/150569 -> ciflow/inductor/150569 2025-07-24T03:47:28.6952767Z * [new tag] ciflow/inductor/151845 -> ciflow/inductor/151845 2025-07-24T03:47:28.6953209Z * [new tag] ciflow/inductor/152361 -> ciflow/inductor/152361 2025-07-24T03:47:28.6953653Z * [new tag] ciflow/inductor/152622 -> ciflow/inductor/152622 2025-07-24T03:47:28.6954090Z * [new tag] ciflow/inductor/152624 -> ciflow/inductor/152624 2025-07-24T03:47:28.6954536Z * [new tag] ciflow/inductor/154193 -> ciflow/inductor/154193 2025-07-24T03:47:28.6954982Z * [new tag] ciflow/inductor/154650 -> ciflow/inductor/154650 2025-07-24T03:47:28.6955421Z * [new tag] ciflow/inductor/154667 -> ciflow/inductor/154667 2025-07-24T03:47:28.6955923Z * [new tag] ciflow/inductor/154694 -> ciflow/inductor/154694 2025-07-24T03:47:28.6956531Z * [new tag] ciflow/inductor/155452 -> ciflow/inductor/155452 2025-07-24T03:47:28.6956999Z * [new tag] ciflow/inductor/155877 -> ciflow/inductor/155877 2025-07-24T03:47:28.6957531Z * [new tag] ciflow/inductor/155958 -> ciflow/inductor/155958 2025-07-24T03:47:28.6957992Z * [new tag] ciflow/inductor/155962 -> ciflow/inductor/155962 2025-07-24T03:47:28.6958453Z * [new tag] ciflow/inductor/155970 -> ciflow/inductor/155970 2025-07-24T03:47:28.6958902Z * [new tag] ciflow/inductor/156049 -> ciflow/inductor/156049 2025-07-24T03:47:28.6959356Z * [new tag] ciflow/inductor/156141 -> ciflow/inductor/156141 2025-07-24T03:47:28.6959796Z * [new tag] ciflow/inductor/156175 -> ciflow/inductor/156175 2025-07-24T03:47:28.6960241Z * [new tag] ciflow/inductor/156371 -> ciflow/inductor/156371 2025-07-24T03:47:28.6960692Z * [new tag] ciflow/inductor/156416 -> ciflow/inductor/156416 2025-07-24T03:47:28.7318510Z * [new tag] ciflow/inductor/156460 -> ciflow/inductor/156460 2025-07-24T03:47:28.7319049Z * [new tag] ciflow/inductor/156592 -> ciflow/inductor/156592 2025-07-24T03:47:28.7319507Z * [new tag] ciflow/inductor/156599 -> ciflow/inductor/156599 2025-07-24T03:47:28.7319959Z * [new tag] ciflow/inductor/156652 -> ciflow/inductor/156652 2025-07-24T03:47:28.7320406Z * [new tag] ciflow/inductor/156851 -> ciflow/inductor/156851 2025-07-24T03:47:28.7320843Z * [new tag] ciflow/inductor/157572 -> ciflow/inductor/157572 2025-07-24T03:47:28.7321283Z * [new tag] ciflow/inductor/157635 -> ciflow/inductor/157635 2025-07-24T03:47:28.7321724Z * [new tag] ciflow/inductor/157685 -> ciflow/inductor/157685 2025-07-24T03:47:28.7322205Z * [new tag] ciflow/inductor/157686 -> ciflow/inductor/157686 2025-07-24T03:47:28.7322753Z * [new tag] ciflow/inductor/157689 -> ciflow/inductor/157689 2025-07-24T03:47:28.7323199Z * [new tag] ciflow/inductor/157699 -> ciflow/inductor/157699 2025-07-24T03:47:28.7323653Z * [new tag] ciflow/inductor/157743 -> ciflow/inductor/157743 2025-07-24T03:47:28.7324095Z * [new tag] ciflow/inductor/157748 -> ciflow/inductor/157748 2025-07-24T03:47:28.7324548Z * [new tag] ciflow/inductor/157944 -> ciflow/inductor/157944 2025-07-24T03:47:28.7325002Z * [new tag] ciflow/inductor/157979 -> ciflow/inductor/157979 2025-07-24T03:47:28.7325442Z * [new tag] ciflow/inductor/157994 -> ciflow/inductor/157994 2025-07-24T03:47:28.7325885Z * [new tag] ciflow/inductor/158015 -> ciflow/inductor/158015 2025-07-24T03:47:28.7326321Z * [new tag] ciflow/inductor/158049 -> ciflow/inductor/158049 2025-07-24T03:47:28.7326770Z * [new tag] ciflow/inductor/158072 -> ciflow/inductor/158072 2025-07-24T03:47:28.7327228Z * [new tag] ciflow/inductor/158074 -> ciflow/inductor/158074 2025-07-24T03:47:28.7327674Z * [new tag] ciflow/inductor/158084 -> ciflow/inductor/158084 2025-07-24T03:47:28.7328120Z * [new tag] ciflow/inductor/158091 -> ciflow/inductor/158091 2025-07-24T03:47:28.7328556Z * [new tag] ciflow/inductor/158097 -> ciflow/inductor/158097 2025-07-24T03:47:28.7329001Z * [new tag] ciflow/inductor/158098 -> ciflow/inductor/158098 2025-07-24T03:47:28.7329434Z * [new tag] ciflow/inductor/158104 -> ciflow/inductor/158104 2025-07-24T03:47:28.7329885Z * [new tag] ciflow/inductor/158174 -> ciflow/inductor/158174 2025-07-24T03:47:28.7330328Z * [new tag] ciflow/inductor/158193 -> ciflow/inductor/158193 2025-07-24T03:47:28.7330959Z * [new tag] ciflow/inductor/158211 -> ciflow/inductor/158211 2025-07-24T03:47:28.7331518Z * [new tag] ciflow/inductor/158223 -> ciflow/inductor/158223 2025-07-24T03:47:28.7331966Z * [new tag] ciflow/inductor/158289 -> ciflow/inductor/158289 2025-07-24T03:47:28.7332419Z * [new tag] ciflow/inductor/158321 -> ciflow/inductor/158321 2025-07-24T03:47:28.7332875Z * [new tag] ciflow/inductor/158397 -> ciflow/inductor/158397 2025-07-24T03:47:28.7333315Z * [new tag] ciflow/inductor/158410 -> ciflow/inductor/158410 2025-07-24T03:47:28.7333763Z * [new tag] ciflow/inductor/158427 -> ciflow/inductor/158427 2025-07-24T03:47:28.7334202Z * [new tag] ciflow/inductor/158462 -> ciflow/inductor/158462 2025-07-24T03:47:28.7334647Z * [new tag] ciflow/inductor/158501 -> ciflow/inductor/158501 2025-07-24T03:47:28.7335092Z * [new tag] ciflow/inductor/158525 -> ciflow/inductor/158525 2025-07-24T03:47:28.7335533Z * [new tag] ciflow/inductor/158526 -> ciflow/inductor/158526 2025-07-24T03:47:28.7335989Z * [new tag] ciflow/inductor/158527 -> ciflow/inductor/158527 2025-07-24T03:47:28.7336426Z * [new tag] ciflow/inductor/158559 -> ciflow/inductor/158559 2025-07-24T03:47:28.7336871Z * [new tag] ciflow/inductor/158560 -> ciflow/inductor/158560 2025-07-24T03:47:28.7337306Z * [new tag] ciflow/inductor/158567 -> ciflow/inductor/158567 2025-07-24T03:47:28.7337748Z * [new tag] ciflow/inductor/158575 -> ciflow/inductor/158575 2025-07-24T03:47:28.7338192Z * [new tag] ciflow/inductor/158579 -> ciflow/inductor/158579 2025-07-24T03:47:28.7338632Z * [new tag] ciflow/inductor/158586 -> ciflow/inductor/158586 2025-07-24T03:47:28.7339082Z * [new tag] ciflow/inductor/158604 -> ciflow/inductor/158604 2025-07-24T03:47:28.7339521Z * [new tag] ciflow/inductor/158609 -> ciflow/inductor/158609 2025-07-24T03:47:28.7339968Z * [new tag] ciflow/inductor/158613 -> ciflow/inductor/158613 2025-07-24T03:47:28.7340408Z * [new tag] ciflow/inductor/158615 -> ciflow/inductor/158615 2025-07-24T03:47:28.7662989Z * [new tag] ciflow/inductor/158617 -> ciflow/inductor/158617 2025-07-24T03:47:28.7663503Z * [new tag] ciflow/inductor/158624 -> ciflow/inductor/158624 2025-07-24T03:47:28.7663957Z * [new tag] ciflow/inductor/158628 -> ciflow/inductor/158628 2025-07-24T03:47:28.7664408Z * [new tag] ciflow/inductor/158647 -> ciflow/inductor/158647 2025-07-24T03:47:28.7664858Z * [new tag] ciflow/inductor/158656 -> ciflow/inductor/158656 2025-07-24T03:47:28.7665317Z * [new tag] ciflow/inductor/158662 -> ciflow/inductor/158662 2025-07-24T03:47:28.7665764Z * [new tag] ciflow/inductor/158663 -> ciflow/inductor/158663 2025-07-24T03:47:28.7666210Z * [new tag] ciflow/inductor/158692 -> ciflow/inductor/158692 2025-07-24T03:47:28.7666661Z * [new tag] ciflow/inductor/158708 -> ciflow/inductor/158708 2025-07-24T03:47:28.7667106Z * [new tag] ciflow/inductor/158715 -> ciflow/inductor/158715 2025-07-24T03:47:28.7667543Z * [new tag] ciflow/inductor/158734 -> ciflow/inductor/158734 2025-07-24T03:47:28.7667989Z * [new tag] ciflow/inductor/158747 -> ciflow/inductor/158747 2025-07-24T03:47:28.7668425Z * [new tag] ciflow/inductor/158750 -> ciflow/inductor/158750 2025-07-24T03:47:28.7668868Z * [new tag] ciflow/inductor/158758 -> ciflow/inductor/158758 2025-07-24T03:47:28.7669492Z * [new tag] ciflow/inductor/158769 -> ciflow/inductor/158769 2025-07-24T03:47:28.7669955Z * [new tag] ciflow/inductor/158774 -> ciflow/inductor/158774 2025-07-24T03:47:28.7670515Z * [new tag] ciflow/inductor/158776 -> ciflow/inductor/158776 2025-07-24T03:47:28.7670956Z * [new tag] ciflow/inductor/158777 -> ciflow/inductor/158777 2025-07-24T03:47:28.7671415Z * [new tag] ciflow/inductor/158789 -> ciflow/inductor/158789 2025-07-24T03:47:28.7671856Z * [new tag] ciflow/inductor/158797 -> ciflow/inductor/158797 2025-07-24T03:47:28.7672311Z * [new tag] ciflow/inductor/158799 -> ciflow/inductor/158799 2025-07-24T03:47:28.7672775Z * [new tag] ciflow/inductor/158800 -> ciflow/inductor/158800 2025-07-24T03:47:28.7673217Z * [new tag] ciflow/inductor/158803 -> ciflow/inductor/158803 2025-07-24T03:47:28.7673673Z * [new tag] ciflow/inductor/158805 -> ciflow/inductor/158805 2025-07-24T03:47:28.7674111Z * [new tag] ciflow/inductor/158810 -> ciflow/inductor/158810 2025-07-24T03:47:28.7674564Z * [new tag] ciflow/inductor/158811 -> ciflow/inductor/158811 2025-07-24T03:47:28.7675009Z * [new tag] ciflow/inductor/158812 -> ciflow/inductor/158812 2025-07-24T03:47:28.7675446Z * [new tag] ciflow/inductor/158814 -> ciflow/inductor/158814 2025-07-24T03:47:28.7675896Z * [new tag] ciflow/inductor/158815 -> ciflow/inductor/158815 2025-07-24T03:47:28.7676343Z * [new tag] ciflow/inductor/158821 -> ciflow/inductor/158821 2025-07-24T03:47:28.7676807Z * [new tag] ciflow/inductor/158839 -> ciflow/inductor/158839 2025-07-24T03:47:28.7677261Z * [new tag] ciflow/inductor/158847 -> ciflow/inductor/158847 2025-07-24T03:47:28.7677705Z * [new tag] ciflow/inductor/158869 -> ciflow/inductor/158869 2025-07-24T03:47:28.7678157Z * [new tag] ciflow/inductor/158872 -> ciflow/inductor/158872 2025-07-24T03:47:28.7678607Z * [new tag] ciflow/inductor/158877 -> ciflow/inductor/158877 2025-07-24T03:47:28.7679053Z * [new tag] ciflow/inductor/158887 -> ciflow/inductor/158887 2025-07-24T03:47:28.7679496Z * [new tag] ciflow/inductor/158894 -> ciflow/inductor/158894 2025-07-24T03:47:28.7679941Z * [new tag] ciflow/inductor/158897 -> ciflow/inductor/158897 2025-07-24T03:47:28.7680392Z * [new tag] ciflow/inductor/158898 -> ciflow/inductor/158898 2025-07-24T03:47:28.7680831Z * [new tag] ciflow/inductor/158914 -> ciflow/inductor/158914 2025-07-24T03:47:28.7681283Z * [new tag] ciflow/inductor/158924 -> ciflow/inductor/158924 2025-07-24T03:47:28.7681734Z * [new tag] ciflow/inductor/158926 -> ciflow/inductor/158926 2025-07-24T03:47:28.7682190Z * [new tag] ciflow/inductor/158929 -> ciflow/inductor/158929 2025-07-24T03:47:28.7682739Z * [new tag] ciflow/inductor/158931 -> ciflow/inductor/158931 2025-07-24T03:47:28.7683198Z * [new tag] ciflow/inductor/158932 -> ciflow/inductor/158932 2025-07-24T03:47:28.7683653Z * [new tag] ciflow/inductor/158933 -> ciflow/inductor/158933 2025-07-24T03:47:28.7684103Z * [new tag] ciflow/inductor/158947 -> ciflow/inductor/158947 2025-07-24T03:47:28.7684560Z * [new tag] ciflow/inductor/158950 -> ciflow/inductor/158950 2025-07-24T03:47:28.7685008Z * [new tag] ciflow/inductor/158954 -> ciflow/inductor/158954 2025-07-24T03:47:28.8077268Z * [new tag] ciflow/inductor/158960 -> ciflow/inductor/158960 2025-07-24T03:47:28.8077979Z * [new tag] ciflow/inductor/158974 -> ciflow/inductor/158974 2025-07-24T03:47:28.8078461Z * [new tag] ciflow/inductor/158976 -> ciflow/inductor/158976 2025-07-24T03:47:28.8079031Z * [new tag] ciflow/inductor/158979 -> ciflow/inductor/158979 2025-07-24T03:47:28.8079474Z * [new tag] ciflow/inductor/158983 -> ciflow/inductor/158983 2025-07-24T03:47:28.8079929Z * [new tag] ciflow/inductor/158987 -> ciflow/inductor/158987 2025-07-24T03:47:28.8080375Z * [new tag] ciflow/inductor/158991 -> ciflow/inductor/158991 2025-07-24T03:47:28.8080807Z * [new tag] ciflow/inductor/158995 -> ciflow/inductor/158995 2025-07-24T03:47:28.8081255Z * [new tag] ciflow/inductor/158997 -> ciflow/inductor/158997 2025-07-24T03:47:28.8081701Z * [new tag] ciflow/inductor/158998 -> ciflow/inductor/158998 2025-07-24T03:47:28.8082152Z * [new tag] ciflow/inductor/159001 -> ciflow/inductor/159001 2025-07-24T03:47:28.8082673Z * [new tag] ciflow/inductor/159002 -> ciflow/inductor/159002 2025-07-24T03:47:28.8083126Z * [new tag] ciflow/inductor/159003 -> ciflow/inductor/159003 2025-07-24T03:47:28.8083572Z * [new tag] ciflow/inductor/159005 -> ciflow/inductor/159005 2025-07-24T03:47:28.8084006Z * [new tag] ciflow/inductor/159009 -> ciflow/inductor/159009 2025-07-24T03:47:28.8084449Z * [new tag] ciflow/inductor/159010 -> ciflow/inductor/159010 2025-07-24T03:47:28.8084887Z * [new tag] ciflow/inductor/159011 -> ciflow/inductor/159011 2025-07-24T03:47:28.8085339Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-07-24T03:47:28.8085812Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-07-24T03:47:28.8086264Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-07-24T03:47:28.8086750Z * [new tag] ciflow/linux-aarch64/145260 -> ciflow/linux-aarch64/145260 2025-07-24T03:47:28.8087240Z * [new tag] ciflow/linux-aarch64/152361 -> ciflow/linux-aarch64/152361 2025-07-24T03:47:28.8087732Z * [new tag] ciflow/linux-aarch64/157994 -> ciflow/linux-aarch64/157994 2025-07-24T03:47:28.8088191Z * [new tag] ciflow/mps/148408 -> ciflow/mps/148408 2025-07-24T03:47:28.8088596Z * [new tag] ciflow/mps/150569 -> ciflow/mps/150569 2025-07-24T03:47:28.8089002Z * [new tag] ciflow/mps/150721 -> ciflow/mps/150721 2025-07-24T03:47:28.8089398Z * [new tag] ciflow/mps/152932 -> ciflow/mps/152932 2025-07-24T03:47:28.8089801Z * [new tag] ciflow/mps/155200 -> ciflow/mps/155200 2025-07-24T03:47:28.8090202Z * [new tag] ciflow/mps/157553 -> ciflow/mps/157553 2025-07-24T03:47:28.8090606Z * [new tag] ciflow/mps/157876 -> ciflow/mps/157876 2025-07-24T03:47:28.8091013Z * [new tag] ciflow/mps/158877 -> ciflow/mps/158877 2025-07-24T03:47:28.8091408Z * [new tag] ciflow/mps/158990 -> ciflow/mps/158990 2025-07-24T03:47:28.8091836Z * [new tag] ciflow/nightly/156049 -> ciflow/nightly/156049 2025-07-24T03:47:28.8092271Z * [new tag] ciflow/nightly/158104 -> ciflow/nightly/158104 2025-07-24T03:47:28.8092803Z * [new tag] ciflow/periodic-rocm-mi300/158887 -> ciflow/periodic-rocm-mi300/158887 2025-07-24T03:47:28.8093410Z * [new tag] ciflow/periodic-rocm-mi300/159001 -> ciflow/periodic-rocm-mi300/159001 2025-07-24T03:47:28.8093952Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-07-24T03:47:28.8094558Z * [new tag] ciflow/periodic/143959 -> ciflow/periodic/143959 2025-07-24T03:47:28.8095009Z * [new tag] ciflow/periodic/156900 -> ciflow/periodic/156900 2025-07-24T03:47:28.8095562Z * [new tag] ciflow/periodic/157748 -> ciflow/periodic/157748 2025-07-24T03:47:28.8096015Z * [new tag] ciflow/periodic/158674 -> ciflow/periodic/158674 2025-07-24T03:47:28.8096472Z * [new tag] ciflow/periodic/158887 -> ciflow/periodic/158887 2025-07-24T03:47:28.8096924Z * [new tag] ciflow/periodic/159001 -> ciflow/periodic/159001 2025-07-24T03:47:28.8097377Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-07-24T03:47:28.8097850Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-07-24T03:47:28.8098295Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-07-24T03:47:28.8098754Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-07-24T03:47:28.8099244Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-07-24T03:47:28.8099780Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-07-24T03:47:28.8507867Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-07-24T03:47:28.8508503Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-07-24T03:47:28.8509095Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-07-24T03:47:28.8509640Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-07-24T03:47:28.8510167Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-07-24T03:47:28.8510645Z * [new tag] ciflow/pull/158948 -> ciflow/pull/158948 2025-07-24T03:47:28.8511076Z * [new tag] ciflow/pull/158977 -> ciflow/pull/158977 2025-07-24T03:47:28.8511523Z * [new tag] ciflow/rocm-mi300/158747 -> ciflow/rocm-mi300/158747 2025-07-24T03:47:28.8511989Z * [new tag] ciflow/rocm-mi300/158847 -> ciflow/rocm-mi300/158847 2025-07-24T03:47:28.8512439Z * [new tag] ciflow/rocm-mi300/158887 -> ciflow/rocm-mi300/158887 2025-07-24T03:47:28.8512893Z * [new tag] ciflow/rocm-mi300/159001 -> ciflow/rocm-mi300/159001 2025-07-24T03:47:28.8513321Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-07-24T03:47:28.8513735Z * [new tag] ciflow/rocm/149601 -> ciflow/rocm/149601 2025-07-24T03:47:28.8514133Z * [new tag] ciflow/rocm/150312 -> ciflow/rocm/150312 2025-07-24T03:47:28.8514538Z * [new tag] ciflow/rocm/151360 -> ciflow/rocm/151360 2025-07-24T03:47:28.8514971Z * [new tag] ciflow/rocm/151845 -> ciflow/rocm/151845 2025-07-24T03:47:28.8515367Z * [new tag] ciflow/rocm/152932 -> ciflow/rocm/152932 2025-07-24T03:47:28.8515787Z * [new tag] ciflow/rocm/155200 -> ciflow/rocm/155200 2025-07-24T03:47:28.8516198Z * [new tag] ciflow/rocm/155877 -> ciflow/rocm/155877 2025-07-24T03:47:28.8516594Z * [new tag] ciflow/rocm/156165 -> ciflow/rocm/156165 2025-07-24T03:47:28.8517004Z * [new tag] ciflow/rocm/156592 -> ciflow/rocm/156592 2025-07-24T03:47:28.8517404Z * [new tag] ciflow/rocm/158037 -> ciflow/rocm/158037 2025-07-24T03:47:28.8517817Z * [new tag] ciflow/rocm/158074 -> ciflow/rocm/158074 2025-07-24T03:47:28.8518232Z * [new tag] ciflow/rocm/158219 -> ciflow/rocm/158219 2025-07-24T03:47:28.8518634Z * [new tag] ciflow/rocm/158220 -> ciflow/rocm/158220 2025-07-24T03:47:28.8519255Z * [new tag] ciflow/rocm/158224 -> ciflow/rocm/158224 2025-07-24T03:47:28.8519840Z * [new tag] ciflow/rocm/158560 -> ciflow/rocm/158560 2025-07-24T03:47:28.8520319Z * [new tag] ciflow/rocm/158747 -> ciflow/rocm/158747 2025-07-24T03:47:28.8520775Z * [new tag] ciflow/rocm/158868 -> ciflow/rocm/158868 2025-07-24T03:47:28.8521193Z * [new tag] ciflow/rocm/158886 -> ciflow/rocm/158886 2025-07-24T03:47:28.8521618Z * [new tag] ciflow/rocm/158887 -> ciflow/rocm/158887 2025-07-24T03:47:28.8522022Z * [new tag] ciflow/rocm/158951 -> ciflow/rocm/158951 2025-07-24T03:47:28.8522429Z * [new tag] ciflow/rocm/159001 -> ciflow/rocm/159001 2025-07-24T03:47:28.8522917Z * [new tag] ciflow/s390/143959 -> ciflow/s390/143959 2025-07-24T03:47:28.8523342Z * [new tag] ciflow/s390/158634 -> ciflow/s390/158634 2025-07-24T03:47:28.8523747Z * [new tag] ciflow/s390/158636 -> ciflow/s390/158636 2025-07-24T03:47:28.8524163Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-07-24T03:47:28.8524593Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-07-24T03:47:28.8525361Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-07-24T03:47:28.8526139Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-07-24T03:47:28.8526548Z * [new tag] ciflow/slow/157748 -> ciflow/slow/157748 2025-07-24T03:47:28.8526958Z * [new tag] ciflow/slow/158222 -> ciflow/slow/158222 2025-07-24T03:47:28.8527381Z * [new tag] ciflow/slow/158805 -> ciflow/slow/158805 2025-07-24T03:47:28.8527796Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-07-24T03:47:28.8528212Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-07-24T03:47:28.8528637Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-07-24T03:47:28.8529205Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-07-24T03:47:28.8529622Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-07-24T03:47:28.8530035Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-07-24T03:47:28.8530448Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-07-24T03:47:28.8936009Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-07-24T03:47:28.8936797Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-07-24T03:47:28.8937546Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-07-24T03:47:28.8937987Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-07-24T03:47:28.8938421Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-07-24T03:47:28.8938842Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-07-24T03:47:28.8939255Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-07-24T03:47:28.8940014Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-07-24T03:47:28.8940762Z * [new tag] ciflow/trunk/137400 -> ciflow/trunk/137400 2025-07-24T03:47:28.8941181Z * [new tag] ciflow/trunk/138222 -> ciflow/trunk/138222 2025-07-24T03:47:28.8941786Z * [new tag] ciflow/trunk/144557 -> ciflow/trunk/144557 2025-07-24T03:47:28.8942203Z * [new tag] ciflow/trunk/145260 -> ciflow/trunk/145260 2025-07-24T03:47:28.8942735Z * [new tag] ciflow/trunk/147470 -> ciflow/trunk/147470 2025-07-24T03:47:28.8943173Z * [new tag] ciflow/trunk/147501 -> ciflow/trunk/147501 2025-07-24T03:47:28.8943596Z * [new tag] ciflow/trunk/148180 -> ciflow/trunk/148180 2025-07-24T03:47:28.8944014Z * [new tag] ciflow/trunk/148328 -> ciflow/trunk/148328 2025-07-24T03:47:28.8944423Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-07-24T03:47:28.8944835Z * [new tag] ciflow/trunk/149334 -> ciflow/trunk/149334 2025-07-24T03:47:28.8945237Z * [new tag] ciflow/trunk/149601 -> ciflow/trunk/149601 2025-07-24T03:47:28.8945655Z * [new tag] ciflow/trunk/149961 -> ciflow/trunk/149961 2025-07-24T03:47:28.8946066Z * [new tag] ciflow/trunk/150312 -> ciflow/trunk/150312 2025-07-24T03:47:28.8946472Z * [new tag] ciflow/trunk/151845 -> ciflow/trunk/151845 2025-07-24T03:47:28.8946886Z * [new tag] ciflow/trunk/152624 -> ciflow/trunk/152624 2025-07-24T03:47:28.8947299Z * [new tag] ciflow/trunk/152932 -> ciflow/trunk/152932 2025-07-24T03:47:28.8947712Z * [new tag] ciflow/trunk/153097 -> ciflow/trunk/153097 2025-07-24T03:47:28.8948115Z * [new tag] ciflow/trunk/153835 -> ciflow/trunk/153835 2025-07-24T03:47:28.8948531Z * [new tag] ciflow/trunk/154193 -> ciflow/trunk/154193 2025-07-24T03:47:28.8948942Z * [new tag] ciflow/trunk/154667 -> ciflow/trunk/154667 2025-07-24T03:47:28.8949355Z * [new tag] ciflow/trunk/154694 -> ciflow/trunk/154694 2025-07-24T03:47:28.8949770Z * [new tag] ciflow/trunk/155731 -> ciflow/trunk/155731 2025-07-24T03:47:28.8950181Z * [new tag] ciflow/trunk/155958 -> ciflow/trunk/155958 2025-07-24T03:47:28.8950598Z * [new tag] ciflow/trunk/156049 -> ciflow/trunk/156049 2025-07-24T03:47:28.8951015Z * [new tag] ciflow/trunk/156141 -> ciflow/trunk/156141 2025-07-24T03:47:28.8951427Z * [new tag] ciflow/trunk/156165 -> ciflow/trunk/156165 2025-07-24T03:47:28.8951848Z * [new tag] ciflow/trunk/156175 -> ciflow/trunk/156175 2025-07-24T03:47:28.8952252Z * [new tag] ciflow/trunk/156652 -> ciflow/trunk/156652 2025-07-24T03:47:28.8952671Z * [new tag] ciflow/trunk/156881 -> ciflow/trunk/156881 2025-07-24T03:47:28.8953088Z * [new tag] ciflow/trunk/157026 -> ciflow/trunk/157026 2025-07-24T03:47:28.8953503Z * [new tag] ciflow/trunk/157029 -> ciflow/trunk/157029 2025-07-24T03:47:28.8953918Z * [new tag] ciflow/trunk/157050 -> ciflow/trunk/157050 2025-07-24T03:47:28.8954329Z * [new tag] ciflow/trunk/157432 -> ciflow/trunk/157432 2025-07-24T03:47:28.8954745Z * [new tag] ciflow/trunk/157685 -> ciflow/trunk/157685 2025-07-24T03:47:28.8955150Z * [new tag] ciflow/trunk/157689 -> ciflow/trunk/157689 2025-07-24T03:47:28.8955668Z * [new tag] ciflow/trunk/157699 -> ciflow/trunk/157699 2025-07-24T03:47:28.8956153Z * [new tag] ciflow/trunk/157748 -> ciflow/trunk/157748 2025-07-24T03:47:28.8956562Z * [new tag] ciflow/trunk/157892 -> ciflow/trunk/157892 2025-07-24T03:47:28.8956981Z * [new tag] ciflow/trunk/157908 -> ciflow/trunk/157908 2025-07-24T03:47:28.8957513Z * [new tag] ciflow/trunk/157994 -> ciflow/trunk/157994 2025-07-24T03:47:28.8957936Z * [new tag] ciflow/trunk/158015 -> ciflow/trunk/158015 2025-07-24T03:47:28.8958458Z * [new tag] ciflow/trunk/158037 -> ciflow/trunk/158037 2025-07-24T03:47:28.9294541Z * [new tag] ciflow/trunk/158072 -> ciflow/trunk/158072 2025-07-24T03:47:28.9295044Z * [new tag] ciflow/trunk/158091 -> ciflow/trunk/158091 2025-07-24T03:47:28.9295462Z * [new tag] ciflow/trunk/158104 -> ciflow/trunk/158104 2025-07-24T03:47:28.9295889Z * [new tag] ciflow/trunk/158219 -> ciflow/trunk/158219 2025-07-24T03:47:28.9296309Z * [new tag] ciflow/trunk/158220 -> ciflow/trunk/158220 2025-07-24T03:47:28.9296719Z * [new tag] ciflow/trunk/158222 -> ciflow/trunk/158222 2025-07-24T03:47:28.9297129Z * [new tag] ciflow/trunk/158223 -> ciflow/trunk/158223 2025-07-24T03:47:28.9297558Z * [new tag] ciflow/trunk/158224 -> ciflow/trunk/158224 2025-07-24T03:47:28.9297978Z * [new tag] ciflow/trunk/158289 -> ciflow/trunk/158289 2025-07-24T03:47:28.9298393Z * [new tag] ciflow/trunk/158309 -> ciflow/trunk/158309 2025-07-24T03:47:28.9298800Z * [new tag] ciflow/trunk/158323 -> ciflow/trunk/158323 2025-07-24T03:47:28.9299216Z * [new tag] ciflow/trunk/158397 -> ciflow/trunk/158397 2025-07-24T03:47:28.9299634Z * [new tag] ciflow/trunk/158427 -> ciflow/trunk/158427 2025-07-24T03:47:28.9300059Z * [new tag] ciflow/trunk/158441 -> ciflow/trunk/158441 2025-07-24T03:47:28.9300462Z * [new tag] ciflow/trunk/158488 -> ciflow/trunk/158488 2025-07-24T03:47:28.9300874Z * [new tag] ciflow/trunk/158508 -> ciflow/trunk/158508 2025-07-24T03:47:28.9301291Z * [new tag] ciflow/trunk/158527 -> ciflow/trunk/158527 2025-07-24T03:47:28.9301699Z * [new tag] ciflow/trunk/158529 -> ciflow/trunk/158529 2025-07-24T03:47:28.9302123Z * [new tag] ciflow/trunk/158532 -> ciflow/trunk/158532 2025-07-24T03:47:28.9302532Z * [new tag] ciflow/trunk/158541 -> ciflow/trunk/158541 2025-07-24T03:47:28.9302941Z * [new tag] ciflow/trunk/158560 -> ciflow/trunk/158560 2025-07-24T03:47:28.9303350Z * [new tag] ciflow/trunk/158580 -> ciflow/trunk/158580 2025-07-24T03:47:28.9303761Z * [new tag] ciflow/trunk/158586 -> ciflow/trunk/158586 2025-07-24T03:47:28.9304176Z * [new tag] ciflow/trunk/158603 -> ciflow/trunk/158603 2025-07-24T03:47:28.9304579Z * [new tag] ciflow/trunk/158604 -> ciflow/trunk/158604 2025-07-24T03:47:28.9305001Z * [new tag] ciflow/trunk/158613 -> ciflow/trunk/158613 2025-07-24T03:47:28.9305405Z * [new tag] ciflow/trunk/158624 -> ciflow/trunk/158624 2025-07-24T03:47:28.9305821Z * [new tag] ciflow/trunk/158628 -> ciflow/trunk/158628 2025-07-24T03:47:28.9306238Z * [new tag] ciflow/trunk/158647 -> ciflow/trunk/158647 2025-07-24T03:47:28.9306654Z * [new tag] ciflow/trunk/158670 -> ciflow/trunk/158670 2025-07-24T03:47:28.9307064Z * [new tag] ciflow/trunk/158674 -> ciflow/trunk/158674 2025-07-24T03:47:28.9307467Z * [new tag] ciflow/trunk/158682 -> ciflow/trunk/158682 2025-07-24T03:47:28.9307882Z * [new tag] ciflow/trunk/158708 -> ciflow/trunk/158708 2025-07-24T03:47:28.9308295Z * [new tag] ciflow/trunk/158717 -> ciflow/trunk/158717 2025-07-24T03:47:28.9308696Z * [new tag] ciflow/trunk/158720 -> ciflow/trunk/158720 2025-07-24T03:47:28.9309327Z * [new tag] ciflow/trunk/158747 -> ciflow/trunk/158747 2025-07-24T03:47:28.9309850Z * [new tag] ciflow/trunk/158750 -> ciflow/trunk/158750 2025-07-24T03:47:28.9310267Z * [new tag] ciflow/trunk/158789 -> ciflow/trunk/158789 2025-07-24T03:47:28.9310691Z * [new tag] ciflow/trunk/158803 -> ciflow/trunk/158803 2025-07-24T03:47:28.9311096Z * [new tag] ciflow/trunk/158805 -> ciflow/trunk/158805 2025-07-24T03:47:28.9311514Z * [new tag] ciflow/trunk/158815 -> ciflow/trunk/158815 2025-07-24T03:47:28.9311920Z * [new tag] ciflow/trunk/158818 -> ciflow/trunk/158818 2025-07-24T03:47:28.9312333Z * [new tag] ciflow/trunk/158847 -> ciflow/trunk/158847 2025-07-24T03:47:28.9312751Z * [new tag] ciflow/trunk/158896 -> ciflow/trunk/158896 2025-07-24T03:47:28.9313174Z * [new tag] ciflow/trunk/158898 -> ciflow/trunk/158898 2025-07-24T03:47:28.9313583Z * [new tag] ciflow/trunk/158924 -> ciflow/trunk/158924 2025-07-24T03:47:28.9313995Z * [new tag] ciflow/trunk/158926 -> ciflow/trunk/158926 2025-07-24T03:47:28.9314408Z * [new tag] ciflow/trunk/158929 -> ciflow/trunk/158929 2025-07-24T03:47:28.9314809Z * [new tag] ciflow/trunk/158938 -> ciflow/trunk/158938 2025-07-24T03:47:28.9315230Z * [new tag] ciflow/trunk/158940 -> ciflow/trunk/158940 2025-07-24T03:47:28.9315651Z * [new tag] ciflow/trunk/158942 -> ciflow/trunk/158942 2025-07-24T03:47:28.9720515Z * [new tag] ciflow/trunk/158944 -> ciflow/trunk/158944 2025-07-24T03:47:28.9721002Z * [new tag] ciflow/trunk/158947 -> ciflow/trunk/158947 2025-07-24T03:47:28.9721444Z * [new tag] ciflow/trunk/158960 -> ciflow/trunk/158960 2025-07-24T03:47:28.9721870Z * [new tag] ciflow/trunk/158980 -> ciflow/trunk/158980 2025-07-24T03:47:28.9722301Z * [new tag] ciflow/trunk/158987 -> ciflow/trunk/158987 2025-07-24T03:47:28.9722804Z * [new tag] ciflow/trunk/158989 -> ciflow/trunk/158989 2025-07-24T03:47:28.9723232Z * [new tag] ciflow/trunk/158995 -> ciflow/trunk/158995 2025-07-24T03:47:28.9723642Z * [new tag] ciflow/trunk/158997 -> ciflow/trunk/158997 2025-07-24T03:47:28.9724052Z * [new tag] ciflow/trunk/158999 -> ciflow/trunk/158999 2025-07-24T03:47:28.9724472Z * [new tag] ciflow/trunk/159002 -> ciflow/trunk/159002 2025-07-24T03:47:28.9724882Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-07-24T03:47:28.9725311Z * [new tag] ciflow/xpu/138222 -> ciflow/xpu/138222 2025-07-24T03:47:28.9725709Z * [new tag] ciflow/xpu/152932 -> ciflow/xpu/152932 2025-07-24T03:47:28.9726120Z * [new tag] ciflow/xpu/155200 -> ciflow/xpu/155200 2025-07-24T03:47:28.9726518Z * [new tag] ciflow/xpu/156812 -> ciflow/xpu/156812 2025-07-24T03:47:28.9726915Z * [new tag] ciflow/xpu/157699 -> ciflow/xpu/157699 2025-07-24T03:47:28.9727314Z * [new tag] ciflow/xpu/157769 -> ciflow/xpu/157769 2025-07-24T03:47:28.9727706Z * [new tag] ciflow/xpu/157994 -> ciflow/xpu/157994 2025-07-24T03:47:28.9728112Z * [new tag] ciflow/xpu/158015 -> ciflow/xpu/158015 2025-07-24T03:47:28.9728510Z * [new tag] ciflow/xpu/158336 -> ciflow/xpu/158336 2025-07-24T03:47:28.9728912Z * [new tag] ciflow/xpu/158337 -> ciflow/xpu/158337 2025-07-24T03:47:28.9729538Z * [new tag] ciflow/xpu/158533 -> ciflow/xpu/158533 2025-07-24T03:47:28.9729935Z * [new tag] ciflow/xpu/158733 -> ciflow/xpu/158733 2025-07-24T03:47:28.9730447Z * [new tag] cslpull75 -> cslpull75 2025-07-24T03:47:28.9730827Z * [new tag] cslpull76 -> cslpull76 2025-07-24T03:47:28.9731198Z * [new tag] cslpull77 -> cslpull77 2025-07-24T03:47:28.9731574Z * [new tag] cslpull78 -> cslpull78 2025-07-24T03:47:28.9731934Z * [new tag] cslpull79 -> cslpull79 2025-07-24T03:47:28.9732307Z * [new tag] cslpull80 -> cslpull80 2025-07-24T03:47:28.9732660Z * [new tag] cslpull81 -> cslpull81 2025-07-24T03:47:28.9733030Z * [new tag] cslpull82 -> cslpull82 2025-07-24T03:47:28.9733393Z * [new tag] cslpull83 -> cslpull83 2025-07-24T03:47:28.9733755Z * [new tag] cslpull84 -> cslpull84 2025-07-24T03:47:28.9734122Z * [new tag] cslpull85 -> cslpull85 2025-07-24T03:47:28.9734478Z * [new tag] cslpull86 -> cslpull86 2025-07-24T03:47:28.9734839Z * [new tag] cslpull87 -> cslpull87 2025-07-24T03:47:28.9735196Z * [new tag] cslpull88 -> cslpull88 2025-07-24T03:47:28.9735565Z * [new tag] cslpull89 -> cslpull89 2025-07-24T03:47:28.9735917Z * [new tag] cslpull90 -> cslpull90 2025-07-24T03:47:28.9736277Z * [new tag] cslpull91 -> cslpull91 2025-07-24T03:47:28.9736645Z * [new tag] cslpull92 -> cslpull92 2025-07-24T03:47:28.9737014Z * [new tag] flight_5 -> flight_5 2025-07-24T03:47:28.9737388Z * [new tag] flight_5.1 -> flight_5.1 2025-07-24T03:47:28.9737753Z * [new tag] flight_5.2 -> flight_5.2 2025-07-24T03:47:28.9738117Z * [new tag] flight_5.3 -> flight_5.3 2025-07-24T03:47:28.9738474Z * [new tag] forpull1 -> forpull1 2025-07-24T03:47:28.9738866Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-07-24T03:47:28.9739296Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-07-24T03:47:28.9739713Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-07-24T03:47:28.9740130Z * [new tag] nightly-binary -> nightly-binary 2025-07-24T03:47:28.9740547Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-07-24T03:47:28.9740981Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-07-24T03:47:28.9741642Z * [new tag] trunk/00da8e63ebb3bea5cf4382ea37ad1ae5598ac90d -> trunk/00da8e63ebb3bea5cf4382ea37ad1ae5598ac90d 2025-07-24T03:47:28.9957741Z * [new tag] trunk/0118931e273594996e3bbca10507f8240518041f -> trunk/0118931e273594996e3bbca10507f8240518041f 2025-07-24T03:47:28.9958588Z * [new tag] trunk/0142d5f4e26b1644de58bb8741e4baa04803d67e -> trunk/0142d5f4e26b1644de58bb8741e4baa04803d67e 2025-07-24T03:47:28.9959414Z * [new tag] trunk/0204099762f9f6118b1c95939a9319fda5201393 -> trunk/0204099762f9f6118b1c95939a9319fda5201393 2025-07-24T03:47:28.9960281Z * [new tag] trunk/036eb1f65dc6ed5e1e4b88a94e20afe6e3f356fe -> trunk/036eb1f65dc6ed5e1e4b88a94e20afe6e3f356fe 2025-07-24T03:47:28.9961135Z * [new tag] trunk/04349f9ee541c7d07cc057bbe739f46bd4c30dcc -> trunk/04349f9ee541c7d07cc057bbe739f46bd4c30dcc 2025-07-24T03:47:28.9962160Z * [new tag] trunk/04a393507b7e3fea0ef98024ebc14061173369f0 -> trunk/04a393507b7e3fea0ef98024ebc14061173369f0 2025-07-24T03:47:28.9963225Z * [new tag] trunk/04ac258cf6a60423a01d30cbe0886e741f5ea97d -> trunk/04ac258cf6a60423a01d30cbe0886e741f5ea97d 2025-07-24T03:47:28.9964076Z * [new tag] trunk/07c4c2a792dc4503b32fa2679d436e4aa77352de -> trunk/07c4c2a792dc4503b32fa2679d436e4aa77352de 2025-07-24T03:47:28.9964907Z * [new tag] trunk/07df6ba7f5597488a93b3855d52d2ead55675125 -> trunk/07df6ba7f5597488a93b3855d52d2ead55675125 2025-07-24T03:47:28.9965748Z * [new tag] trunk/08540b13c6a97908b7f4d77e504cc572db9e78f3 -> trunk/08540b13c6a97908b7f4d77e504cc572db9e78f3 2025-07-24T03:47:28.9966579Z * [new tag] trunk/0971637c115d2a41aff08d75deca02751a24f709 -> trunk/0971637c115d2a41aff08d75deca02751a24f709 2025-07-24T03:47:28.9967393Z * [new tag] trunk/09db3a22e8783c4841697317688ba9467c7cc457 -> trunk/09db3a22e8783c4841697317688ba9467c7cc457 2025-07-24T03:47:28.9968246Z * [new tag] trunk/0c0fcb53ff5ee1eb5f0d1f535ed3726d01f8abb5 -> trunk/0c0fcb53ff5ee1eb5f0d1f535ed3726d01f8abb5 2025-07-24T03:47:28.9969098Z * [new tag] trunk/0e46f542861832153ae37d04da23e9fe8593a312 -> trunk/0e46f542861832153ae37d04da23e9fe8593a312 2025-07-24T03:47:28.9969950Z * [new tag] trunk/0eae6b68f424c0fade1e3db0ba179ae8c9f5ad25 -> trunk/0eae6b68f424c0fade1e3db0ba179ae8c9f5ad25 2025-07-24T03:47:28.9970819Z * [new tag] trunk/0ecfb93a0bfad553b98047ed79fb2b9a54052bb8 -> trunk/0ecfb93a0bfad553b98047ed79fb2b9a54052bb8 2025-07-24T03:47:28.9971655Z * [new tag] trunk/1227ed6674100f6efb3f7b0e359c51383397c354 -> trunk/1227ed6674100f6efb3f7b0e359c51383397c354 2025-07-24T03:47:28.9972486Z * [new tag] trunk/15a50dcf1c9492354819179da4bc994014537ab9 -> trunk/15a50dcf1c9492354819179da4bc994014537ab9 2025-07-24T03:47:28.9973328Z * [new tag] trunk/15ef4f28df0a14e9f0d55a57a4e2db415a303be7 -> trunk/15ef4f28df0a14e9f0d55a57a4e2db415a303be7 2025-07-24T03:47:28.9974166Z * [new tag] trunk/16b21fa8b288140e5067d63e46f670aca495b4cd -> trunk/16b21fa8b288140e5067d63e46f670aca495b4cd 2025-07-24T03:47:28.9975006Z * [new tag] trunk/1839e8d04b81ee6eda0cff6fbfc218a7a600f6f7 -> trunk/1839e8d04b81ee6eda0cff6fbfc218a7a600f6f7 2025-07-24T03:47:28.9975844Z * [new tag] trunk/187c2deb408275f980a8a5a73a522767ddb9bd30 -> trunk/187c2deb408275f980a8a5a73a522767ddb9bd30 2025-07-24T03:47:28.9976680Z * [new tag] trunk/193b29ee0c9db3573775ccfd226a4ac55d3ad80e -> trunk/193b29ee0c9db3573775ccfd226a4ac55d3ad80e 2025-07-24T03:47:28.9977526Z * [new tag] trunk/1a6b21c59f08e3c7ae2e22a866828e2fff21db68 -> trunk/1a6b21c59f08e3c7ae2e22a866828e2fff21db68 2025-07-24T03:47:28.9978365Z * [new tag] trunk/1ab1ab38a04e8ee852ff27eb8ae4989662511965 -> trunk/1ab1ab38a04e8ee852ff27eb8ae4989662511965 2025-07-24T03:47:28.9979213Z * [new tag] trunk/1b456c580d8d2b85e5eeb3e8ca92d5284e0e9156 -> trunk/1b456c580d8d2b85e5eeb3e8ca92d5284e0e9156 2025-07-24T03:47:28.9980046Z * [new tag] trunk/1b5fdb23b95f48526212da66b85572450a97355f -> trunk/1b5fdb23b95f48526212da66b85572450a97355f 2025-07-24T03:47:28.9980891Z * [new tag] trunk/1b772de3974ee24f7d3ebcb2b35278d6e3356096 -> trunk/1b772de3974ee24f7d3ebcb2b35278d6e3356096 2025-07-24T03:47:28.9981763Z * [new tag] trunk/1b88da1cac30dec473cbdca4d9efb9b117cb8cdb -> trunk/1b88da1cac30dec473cbdca4d9efb9b117cb8cdb 2025-07-24T03:47:28.9982613Z * [new tag] trunk/1b91954b9ffc2416532fe4d41ed8a97fd974a253 -> trunk/1b91954b9ffc2416532fe4d41ed8a97fd974a253 2025-07-24T03:47:28.9983442Z * [new tag] trunk/1c6328a588d53fe7f779942e3d8c03ee45a79e80 -> trunk/1c6328a588d53fe7f779942e3d8c03ee45a79e80 2025-07-24T03:47:28.9984383Z * [new tag] trunk/1d302eaee80e15d6d011749f70b3f18c2218ae84 -> trunk/1d302eaee80e15d6d011749f70b3f18c2218ae84 2025-07-24T03:47:28.9985345Z * [new tag] trunk/1e86fa2e5bed964fcbc1d9d7c43279ce29eb4def -> trunk/1e86fa2e5bed964fcbc1d9d7c43279ce29eb4def 2025-07-24T03:47:29.0195407Z * [new tag] trunk/1eb6b2089fbc1a01e38448222ef0e6daa7504924 -> trunk/1eb6b2089fbc1a01e38448222ef0e6daa7504924 2025-07-24T03:47:29.0196305Z * [new tag] trunk/216ba6e5f235bbfa0b025303ad4aa5ee473c5a8b -> trunk/216ba6e5f235bbfa0b025303ad4aa5ee473c5a8b 2025-07-24T03:47:29.0197185Z * [new tag] trunk/21c97bd565be29ebdea6c690caf2be22f458698f -> trunk/21c97bd565be29ebdea6c690caf2be22f458698f 2025-07-24T03:47:29.0198030Z * [new tag] trunk/22920c9138fb7a09db325038b70c8cf636b50653 -> trunk/22920c9138fb7a09db325038b70c8cf636b50653 2025-07-24T03:47:29.0198858Z * [new tag] trunk/22d82222c6e2a2ef4badc6b816d233a4cec924c3 -> trunk/22d82222c6e2a2ef4badc6b816d233a4cec924c3 2025-07-24T03:47:29.0199727Z * [new tag] trunk/23550ab735eee1b9cc90609788dc64ccfb242af2 -> trunk/23550ab735eee1b9cc90609788dc64ccfb242af2 2025-07-24T03:47:29.0200591Z * [new tag] trunk/24b49b98810bb77f3cfa4c15baa9a15c9be3db61 -> trunk/24b49b98810bb77f3cfa4c15baa9a15c9be3db61 2025-07-24T03:47:29.0201421Z * [new tag] trunk/255a04baf11f2a999386632271f13ae4e7d3836d -> trunk/255a04baf11f2a999386632271f13ae4e7d3836d 2025-07-24T03:47:29.0202259Z * [new tag] trunk/255c0545e7eac2ec6d00a41a3fc9d6d8201f8f39 -> trunk/255c0545e7eac2ec6d00a41a3fc9d6d8201f8f39 2025-07-24T03:47:29.0203184Z * [new tag] trunk/25f4d7e48271eb4d2f1dbdb4a6380b2c00339b5e -> trunk/25f4d7e48271eb4d2f1dbdb4a6380b2c00339b5e 2025-07-24T03:47:29.0204019Z * [new tag] trunk/25fbf09d5fc14b49a37eba9452db76985c8b4e38 -> trunk/25fbf09d5fc14b49a37eba9452db76985c8b4e38 2025-07-24T03:47:29.0204866Z * [new tag] trunk/27af877f8459988496d47b6e22d80d98c1e80581 -> trunk/27af877f8459988496d47b6e22d80d98c1e80581 2025-07-24T03:47:29.0205695Z * [new tag] trunk/288bf54a23a49dd3b765b4e1c7313c706b46a08a -> trunk/288bf54a23a49dd3b765b4e1c7313c706b46a08a 2025-07-24T03:47:29.0206539Z * [new tag] trunk/2955acaed6a0f93f1f0913df3f840912392bc2ff -> trunk/2955acaed6a0f93f1f0913df3f840912392bc2ff 2025-07-24T03:47:29.0207373Z * [new tag] trunk/2a249f1967d29626fe6ac6a07f28440348d1cc93 -> trunk/2a249f1967d29626fe6ac6a07f28440348d1cc93 2025-07-24T03:47:29.0208199Z * [new tag] trunk/2a60b8fc97cf4fbb408221b5e8cb0ad683f78b04 -> trunk/2a60b8fc97cf4fbb408221b5e8cb0ad683f78b04 2025-07-24T03:47:29.0209054Z * [new tag] trunk/2bb684304d26804ab87103ada05b6ba63e309b59 -> trunk/2bb684304d26804ab87103ada05b6ba63e309b59 2025-07-24T03:47:29.0209885Z * [new tag] trunk/2c16eb9f3db0ba68520e5832d8bb6d3d875bdaeb -> trunk/2c16eb9f3db0ba68520e5832d8bb6d3d875bdaeb 2025-07-24T03:47:29.0210741Z * [new tag] trunk/2c37acfd891298bd3e1f60fe5c50d3ef8146292d -> trunk/2c37acfd891298bd3e1f60fe5c50d3ef8146292d 2025-07-24T03:47:29.0211598Z * [new tag] trunk/2cdafab0bd1510e4bd286f33fd94807c59c7e691 -> trunk/2cdafab0bd1510e4bd286f33fd94807c59c7e691 2025-07-24T03:47:29.0212458Z * [new tag] trunk/2dccff7dcf56b0d168ebfd7ca08bdeca37273c56 -> trunk/2dccff7dcf56b0d168ebfd7ca08bdeca37273c56 2025-07-24T03:47:29.0213314Z * [new tag] trunk/2df2e3bb511eb3d72742334b116e97656539570d -> trunk/2df2e3bb511eb3d72742334b116e97656539570d 2025-07-24T03:47:29.0214141Z * [new tag] trunk/2e038793ef90567cc46e10ff2ca25c4a379428ab -> trunk/2e038793ef90567cc46e10ff2ca25c4a379428ab 2025-07-24T03:47:29.0214970Z * [new tag] trunk/2ecf083b7247f265a03ec296ba9d7b795f035118 -> trunk/2ecf083b7247f265a03ec296ba9d7b795f035118 2025-07-24T03:47:29.0215812Z * [new tag] trunk/30b0ad5c683ec0a391ae8b6e12de9fdfced67ddb -> trunk/30b0ad5c683ec0a391ae8b6e12de9fdfced67ddb 2025-07-24T03:47:29.0217749Z * [new tag] trunk/32aade9d8d39d58c33215f50afe5382458d70821 -> trunk/32aade9d8d39d58c33215f50afe5382458d70821 2025-07-24T03:47:29.0218738Z * [new tag] trunk/33c9b414aaa59ab03b7969599afc0de915353519 -> trunk/33c9b414aaa59ab03b7969599afc0de915353519 2025-07-24T03:47:29.0219579Z * [new tag] trunk/350d6af52c76481d0f386208b6b86be93b7ff22d -> trunk/350d6af52c76481d0f386208b6b86be93b7ff22d 2025-07-24T03:47:29.0220420Z * [new tag] trunk/35df895d0564cc53dfcad829732fc6b3a9b7eb86 -> trunk/35df895d0564cc53dfcad829732fc6b3a9b7eb86 2025-07-24T03:47:29.0221274Z * [new tag] trunk/35f1b4ad9ef022ce59a1084fe237ceb35c7aab99 -> trunk/35f1b4ad9ef022ce59a1084fe237ceb35c7aab99 2025-07-24T03:47:29.0238406Z * [new tag] trunk/3639d29ea178c7c0e8be7ac55d4753772f428bc3 -> trunk/3639d29ea178c7c0e8be7ac55d4753772f428bc3 2025-07-24T03:47:29.0239325Z * [new tag] trunk/3703dabe42493af642104945d27a1ef6c3a6cea6 -> trunk/3703dabe42493af642104945d27a1ef6c3a6cea6 2025-07-24T03:47:29.0440598Z * [new tag] trunk/371ffaf415baf6251b9d98466c8ee970b3556282 -> trunk/371ffaf415baf6251b9d98466c8ee970b3556282 2025-07-24T03:47:29.0441467Z * [new tag] trunk/37ded2ac906c2a15f5613e134d7eeb8a8f953bb7 -> trunk/37ded2ac906c2a15f5613e134d7eeb8a8f953bb7 2025-07-24T03:47:29.0442423Z * [new tag] trunk/38c04415a9440d9e5348be34f7bd71a12ed58af8 -> trunk/38c04415a9440d9e5348be34f7bd71a12ed58af8 2025-07-24T03:47:29.0443328Z * [new tag] trunk/392fa75411a1f293e891395f005615b257c03eda -> trunk/392fa75411a1f293e891395f005615b257c03eda 2025-07-24T03:47:29.0444160Z * [new tag] trunk/393377d2156cf4dfb0a7d53c79a85a8b24055ae0 -> trunk/393377d2156cf4dfb0a7d53c79a85a8b24055ae0 2025-07-24T03:47:29.0445004Z * [new tag] trunk/393fecb2cc43c03b54ade0c11078dd4e353d8b2f -> trunk/393fecb2cc43c03b54ade0c11078dd4e353d8b2f 2025-07-24T03:47:29.0445852Z * [new tag] trunk/39ac189808c61588f3594dbc2fc1d69bb6194c47 -> trunk/39ac189808c61588f3594dbc2fc1d69bb6194c47 2025-07-24T03:47:29.0446696Z * [new tag] trunk/39b54b78d73884c0f2daa2826f3d63c352cb5e39 -> trunk/39b54b78d73884c0f2daa2826f3d63c352cb5e39 2025-07-24T03:47:29.0447525Z * [new tag] trunk/3a67bf9c620e8958a1677e68779be08eb34dafa3 -> trunk/3a67bf9c620e8958a1677e68779be08eb34dafa3 2025-07-24T03:47:29.0448470Z * [new tag] trunk/3bb729df97ed632e4629b706eb18a30dffebc310 -> trunk/3bb729df97ed632e4629b706eb18a30dffebc310 2025-07-24T03:47:29.0449294Z * [new tag] trunk/4060f3004264dc4414239cdc3145b7e46fa3729f -> trunk/4060f3004264dc4414239cdc3145b7e46fa3729f 2025-07-24T03:47:29.0450156Z * [new tag] trunk/415dfabe9b569b71098a2f874f3fc67ad2a4fc2e -> trunk/415dfabe9b569b71098a2f874f3fc67ad2a4fc2e 2025-07-24T03:47:29.0451002Z * [new tag] trunk/41b2c4d1196311ac619d6a025f0181e3977bbe8c -> trunk/41b2c4d1196311ac619d6a025f0181e3977bbe8c 2025-07-24T03:47:29.0451828Z * [new tag] trunk/41b6cdaf76180a3d1308c898c094736305c7ceec -> trunk/41b6cdaf76180a3d1308c898c094736305c7ceec 2025-07-24T03:47:29.0452675Z * [new tag] trunk/42a69f7c2b11cc4c6a28424c6e0ea3ca8e9a0b5f -> trunk/42a69f7c2b11cc4c6a28424c6e0ea3ca8e9a0b5f 2025-07-24T03:47:29.0453539Z * [new tag] trunk/4366610f5a18ffe72e947fab9adb5ee072d74b91 -> trunk/4366610f5a18ffe72e947fab9adb5ee072d74b91 2025-07-24T03:47:29.0454417Z * [new tag] trunk/4869f7117009fb99a57482fce56b00c6163fbce6 -> trunk/4869f7117009fb99a57482fce56b00c6163fbce6 2025-07-24T03:47:29.0455307Z * [new tag] trunk/4b02bd76d3e9a74609d6fcf7a749801ad253916d -> trunk/4b02bd76d3e9a74609d6fcf7a749801ad253916d 2025-07-24T03:47:29.0456155Z * [new tag] trunk/4d055982e38f59fdb2a4c9d8855e58548bc42c12 -> trunk/4d055982e38f59fdb2a4c9d8855e58548bc42c12 2025-07-24T03:47:29.0457201Z * [new tag] trunk/4d3ecefda5a41df678fd68b020c521db95e9fbde -> trunk/4d3ecefda5a41df678fd68b020c521db95e9fbde 2025-07-24T03:47:29.0458200Z * [new tag] trunk/4d5d56a30edf3b524f907ae07b7985d6698a2c4b -> trunk/4d5d56a30edf3b524f907ae07b7985d6698a2c4b 2025-07-24T03:47:29.0459029Z * [new tag] trunk/4d5d627e5ff3310318f9df80348ee419324228df -> trunk/4d5d627e5ff3310318f9df80348ee419324228df 2025-07-24T03:47:29.0459865Z * [new tag] trunk/4d9d884c3f5adc89b59d25d5a080498b76f9bb39 -> trunk/4d9d884c3f5adc89b59d25d5a080498b76f9bb39 2025-07-24T03:47:29.0460834Z * [new tag] trunk/4da98351b9e231bbbe83b5c590cf7d2ea382333a -> trunk/4da98351b9e231bbbe83b5c590cf7d2ea382333a 2025-07-24T03:47:29.0461681Z * [new tag] trunk/4dce5b71a0751aa4287c3a80adf07afc773ec4db -> trunk/4dce5b71a0751aa4287c3a80adf07afc773ec4db 2025-07-24T03:47:29.0462538Z * [new tag] trunk/4e13eca713c60ca63c1116823b99d2461a7422ef -> trunk/4e13eca713c60ca63c1116823b99d2461a7422ef 2025-07-24T03:47:29.0463349Z * [new tag] trunk/4e19477196547eb2e8157d6d132689373ffcf0fa -> trunk/4e19477196547eb2e8157d6d132689373ffcf0fa 2025-07-24T03:47:29.0464170Z * [new tag] trunk/4e8dd11be17a974e0ee5503b3061d4d47467844f -> trunk/4e8dd11be17a974e0ee5503b3061d4d47467844f 2025-07-24T03:47:29.0465010Z * [new tag] trunk/4ebd2690654ffe487c43941ebaea41b99914d8b7 -> trunk/4ebd2690654ffe487c43941ebaea41b99914d8b7 2025-07-24T03:47:29.0465853Z * [new tag] trunk/4ed1b03f7275075b1783d1deab946ced4ceba4d6 -> trunk/4ed1b03f7275075b1783d1deab946ced4ceba4d6 2025-07-24T03:47:29.0466791Z * [new tag] trunk/4ee4863232b9e07728d85254768bcba3aadc9b9a -> trunk/4ee4863232b9e07728d85254768bcba3aadc9b9a 2025-07-24T03:47:29.0467637Z * [new tag] trunk/4f36743f5eef2d9c40357eb5d8d8b1aeeacfbb2a -> trunk/4f36743f5eef2d9c40357eb5d8d8b1aeeacfbb2a 2025-07-24T03:47:29.0468480Z * [new tag] trunk/4f5b34427b57e8b876d12e6ce551f04a7c31cacf -> trunk/4f5b34427b57e8b876d12e6ce551f04a7c31cacf 2025-07-24T03:47:29.0731715Z * [new tag] trunk/4f5be5661240427fbbfbe1d137dce53ca32846b5 -> trunk/4f5be5661240427fbbfbe1d137dce53ca32846b5 2025-07-24T03:47:29.0732610Z * [new tag] trunk/4f70fbbd16d1f0d62af082246a95e56cffccc860 -> trunk/4f70fbbd16d1f0d62af082246a95e56cffccc860 2025-07-24T03:47:29.0733479Z * [new tag] trunk/4ff0e033c16aae064f05ee9300053cd304891673 -> trunk/4ff0e033c16aae064f05ee9300053cd304891673 2025-07-24T03:47:29.0734342Z * [new tag] trunk/4ff9b7fa3116b1c429e577830ac6e816734ad029 -> trunk/4ff9b7fa3116b1c429e577830ac6e816734ad029 2025-07-24T03:47:29.0735167Z * [new tag] trunk/502486d9466e81cda76c91d33eb869235480bee9 -> trunk/502486d9466e81cda76c91d33eb869235480bee9 2025-07-24T03:47:29.0735985Z * [new tag] trunk/503362d019b3782581492af7767945dbd75ca1c9 -> trunk/503362d019b3782581492af7767945dbd75ca1c9 2025-07-24T03:47:29.0736838Z * [new tag] trunk/508cdc4fc9f7a91b5fd3f20de38d673daebf1af3 -> trunk/508cdc4fc9f7a91b5fd3f20de38d673daebf1af3 2025-07-24T03:47:29.0737669Z * [new tag] trunk/50940270ae179134cd4f9072f04ffdd55daf808e -> trunk/50940270ae179134cd4f9072f04ffdd55daf808e 2025-07-24T03:47:29.0738494Z * [new tag] trunk/50b2069b61942e923528c94ccbbc8ab5e92c381e -> trunk/50b2069b61942e923528c94ccbbc8ab5e92c381e 2025-07-24T03:47:29.0739327Z * [new tag] trunk/50d8168c8b62990fda86398c9dee1dc8cbd6908d -> trunk/50d8168c8b62990fda86398c9dee1dc8cbd6908d 2025-07-24T03:47:29.0740142Z * [new tag] trunk/510c398a4f1dff9217938159d605290149358332 -> trunk/510c398a4f1dff9217938159d605290149358332 2025-07-24T03:47:29.0740966Z * [new tag] trunk/5116293f7eb587ada6076f3c3ea1711a0ec7ab4a -> trunk/5116293f7eb587ada6076f3c3ea1711a0ec7ab4a 2025-07-24T03:47:29.0741982Z * [new tag] trunk/5118a8f8a5a7906e26bcbd35370de3416b5cdab0 -> trunk/5118a8f8a5a7906e26bcbd35370de3416b5cdab0 2025-07-24T03:47:29.0743692Z * [new tag] trunk/51560797ce70aea353585d8381ee88c2e6c81075 -> trunk/51560797ce70aea353585d8381ee88c2e6c81075 2025-07-24T03:47:29.0744569Z * [new tag] trunk/517d2995e09603017f07f065c1ae5b8d25962cd2 -> trunk/517d2995e09603017f07f065c1ae5b8d25962cd2 2025-07-24T03:47:29.0745392Z * [new tag] trunk/51853b358e698f6a42c1eef045ab8fa766129ee1 -> trunk/51853b358e698f6a42c1eef045ab8fa766129ee1 2025-07-24T03:47:29.0746238Z * [new tag] trunk/51a708ffc679b13f99e4c7cf19bc00082a3266a6 -> trunk/51a708ffc679b13f99e4c7cf19bc00082a3266a6 2025-07-24T03:47:29.0747075Z * [new tag] trunk/51eb8e8f84bb9aa901cff17dd649e18b17a8908c -> trunk/51eb8e8f84bb9aa901cff17dd649e18b17a8908c 2025-07-24T03:47:29.0747930Z * [new tag] trunk/52214485747ceb0ea47ce5a09babb0b82b3282b8 -> trunk/52214485747ceb0ea47ce5a09babb0b82b3282b8 2025-07-24T03:47:29.0748785Z * [new tag] trunk/522a18bd6c094c766c0de9ef539682d1a3f04a15 -> trunk/522a18bd6c094c766c0de9ef539682d1a3f04a15 2025-07-24T03:47:29.0749620Z * [new tag] trunk/523b637cbeb69665072a2cf489ec1c5313b57670 -> trunk/523b637cbeb69665072a2cf489ec1c5313b57670 2025-07-24T03:47:29.0750451Z * [new tag] trunk/524e8270955788c53473497fd2cc16c5aa0e4c67 -> trunk/524e8270955788c53473497fd2cc16c5aa0e4c67 2025-07-24T03:47:29.0751275Z * [new tag] trunk/5264f8cd8d08272003298cdefe6bd60b1b8c80b4 -> trunk/5264f8cd8d08272003298cdefe6bd60b1b8c80b4 2025-07-24T03:47:29.0752088Z * [new tag] trunk/52772765e034622d1a86476e4bb19c28e3945f74 -> trunk/52772765e034622d1a86476e4bb19c28e3945f74 2025-07-24T03:47:29.0752910Z * [new tag] trunk/5285d1024376396a00fe750fe3d628c65dc26254 -> trunk/5285d1024376396a00fe750fe3d628c65dc26254 2025-07-24T03:47:29.0753729Z * [new tag] trunk/529e0357c6c4e74f8cd32c29198c5f1c9f6e329d -> trunk/529e0357c6c4e74f8cd32c29198c5f1c9f6e329d 2025-07-24T03:47:29.0754559Z * [new tag] trunk/52c294008ee764d1931d4f0c1aece984431e4596 -> trunk/52c294008ee764d1931d4f0c1aece984431e4596 2025-07-24T03:47:29.0755402Z * [new tag] trunk/52e4e41cbc36a5cf44395ff84ca2d069263560de -> trunk/52e4e41cbc36a5cf44395ff84ca2d069263560de 2025-07-24T03:47:29.0756263Z * [new tag] trunk/52edfb2cbcdded865645cc82bb1bb501fdcbdb52 -> trunk/52edfb2cbcdded865645cc82bb1bb501fdcbdb52 2025-07-24T03:47:29.0757128Z * [new tag] trunk/52f873adc23e7069ce95933d97ee514022cfbf7d -> trunk/52f873adc23e7069ce95933d97ee514022cfbf7d 2025-07-24T03:47:29.0757958Z * [new tag] trunk/53057fc16af2d381a61fe891b52ac8731ee9dfae -> trunk/53057fc16af2d381a61fe891b52ac8731ee9dfae 2025-07-24T03:47:29.0758803Z * [new tag] trunk/534c454e77ac0eefd52d63c60d42911e7f9617ea -> trunk/534c454e77ac0eefd52d63c60d42911e7f9617ea 2025-07-24T03:47:29.0963479Z * [new tag] trunk/53ab73090eb66d96e45ec134e41cf67266208954 -> trunk/53ab73090eb66d96e45ec134e41cf67266208954 2025-07-24T03:47:29.0964426Z * [new tag] trunk/53cd18f6b31bc2ea62985fda87e96aa17cd11bc1 -> trunk/53cd18f6b31bc2ea62985fda87e96aa17cd11bc1 2025-07-24T03:47:29.0965291Z * [new tag] trunk/53d06e18d9b165cb8aa0a5a3cbb6837ac3000c59 -> trunk/53d06e18d9b165cb8aa0a5a3cbb6837ac3000c59 2025-07-24T03:47:29.0966150Z * [new tag] trunk/53e0b9c3936176521ed8d71c00abd5b7499057c2 -> trunk/53e0b9c3936176521ed8d71c00abd5b7499057c2 2025-07-24T03:47:29.0966998Z * [new tag] trunk/541297daae63f74a90bac52c5db3540bf84bc971 -> trunk/541297daae63f74a90bac52c5db3540bf84bc971 2025-07-24T03:47:29.0967833Z * [new tag] trunk/5430990bd7d050f249b1cdf1f7d1016c4b17488d -> trunk/5430990bd7d050f249b1cdf1f7d1016c4b17488d 2025-07-24T03:47:29.0968865Z * [new tag] trunk/5435e7539930be7bd038683ce096038b30c5bb5f -> trunk/5435e7539930be7bd038683ce096038b30c5bb5f 2025-07-24T03:47:29.0969817Z * [new tag] trunk/545fbd58dc8b4f688f6b259cb671b3ec16a46810 -> trunk/545fbd58dc8b4f688f6b259cb671b3ec16a46810 2025-07-24T03:47:29.0970673Z * [new tag] trunk/54701a0c943245402fceeab0e55d7aa394303c20 -> trunk/54701a0c943245402fceeab0e55d7aa394303c20 2025-07-24T03:47:29.0971506Z * [new tag] trunk/5484890539823d9867c74209588abe095c9232a1 -> trunk/5484890539823d9867c74209588abe095c9232a1 2025-07-24T03:47:29.0972314Z * [new tag] trunk/548c9d8281d9b3d6d12e90c40b3387faf0e24c61 -> trunk/548c9d8281d9b3d6d12e90c40b3387faf0e24c61 2025-07-24T03:47:29.0973171Z * [new tag] trunk/54976bca103fcf2b5037cc0cd1b37c4639fcf779 -> trunk/54976bca103fcf2b5037cc0cd1b37c4639fcf779 2025-07-24T03:47:29.0974014Z * [new tag] trunk/54998c2daaf5b8919cf82367492dd3c5177ab935 -> trunk/54998c2daaf5b8919cf82367492dd3c5177ab935 2025-07-24T03:47:29.0974837Z * [new tag] trunk/54a4d34d100f4ebe45f486451967daba896e839c -> trunk/54a4d34d100f4ebe45f486451967daba896e839c 2025-07-24T03:47:29.0975676Z * [new tag] trunk/54a7e5b5983d237b324b50703bcb0919a6c4c296 -> trunk/54a7e5b5983d237b324b50703bcb0919a6c4c296 2025-07-24T03:47:29.0976495Z * [new tag] trunk/54b8087f638de57c1c93c4624d03f2f2c512b90e -> trunk/54b8087f638de57c1c93c4624d03f2f2c512b90e 2025-07-24T03:47:29.0977320Z * [new tag] trunk/55108074c0795be3b617d3b13b06794f63e1f8ca -> trunk/55108074c0795be3b617d3b13b06794f63e1f8ca 2025-07-24T03:47:29.0978135Z * [new tag] trunk/554b5680405e6197a985040ffe88157beb637450 -> trunk/554b5680405e6197a985040ffe88157beb637450 2025-07-24T03:47:29.0978932Z * [new tag] trunk/555f3562541992b66a550eca8e8740884b1247f8 -> trunk/555f3562541992b66a550eca8e8740884b1247f8 2025-07-24T03:47:29.0979757Z * [new tag] trunk/5596cefba623fcc0739f1e9568131a85973cf1f9 -> trunk/5596cefba623fcc0739f1e9568131a85973cf1f9 2025-07-24T03:47:29.0980583Z * [new tag] trunk/55d888a616be3c94d8e4073b4d1580541692997d -> trunk/55d888a616be3c94d8e4073b4d1580541692997d 2025-07-24T03:47:29.0981427Z * [new tag] trunk/55dae0bf7a4b501be91d0e022e675337dfe288ff -> trunk/55dae0bf7a4b501be91d0e022e675337dfe288ff 2025-07-24T03:47:29.0982281Z * [new tag] trunk/55ef7b15e0b2de903bfc26adfb0788ecfbcb4ed4 -> trunk/55ef7b15e0b2de903bfc26adfb0788ecfbcb4ed4 2025-07-24T03:47:29.0983148Z * [new tag] trunk/55ff4f85e9f31a3fced069ad526ced16e543cef3 -> trunk/55ff4f85e9f31a3fced069ad526ced16e543cef3 2025-07-24T03:47:29.0983997Z * [new tag] trunk/5606c516fd87e5c3594177e4ca64c3cac7fdafd5 -> trunk/5606c516fd87e5c3594177e4ca64c3cac7fdafd5 2025-07-24T03:47:29.0984826Z * [new tag] trunk/5619bf997112447a66cf6c1e4f4c4186813afad5 -> trunk/5619bf997112447a66cf6c1e4f4c4186813afad5 2025-07-24T03:47:29.0985646Z * [new tag] trunk/5633283574c458bd6a3cbb6a0a890f0cb9c8b2b5 -> trunk/5633283574c458bd6a3cbb6a0a890f0cb9c8b2b5 2025-07-24T03:47:29.0986490Z * [new tag] trunk/563fd95563c5edd732ae260b3bd3d0c38822ab57 -> trunk/563fd95563c5edd732ae260b3bd3d0c38822ab57 2025-07-24T03:47:29.0987338Z * [new tag] trunk/565fd079099d33a81c11d7b36581f09441ba6efa -> trunk/565fd079099d33a81c11d7b36581f09441ba6efa 2025-07-24T03:47:29.0988177Z * [new tag] trunk/568ca89bac9a80a66d664593a26ae69ac604796e -> trunk/568ca89bac9a80a66d664593a26ae69ac604796e 2025-07-24T03:47:29.0989021Z * [new tag] trunk/5692cbb818f1af9fcce9234e202d232afa5f3fa3 -> trunk/5692cbb818f1af9fcce9234e202d232afa5f3fa3 2025-07-24T03:47:29.0989876Z * [new tag] trunk/56b03df6ac5b4185a2b7b92f253565500a5b51ca -> trunk/56b03df6ac5b4185a2b7b92f253565500a5b51ca 2025-07-24T03:47:29.0990716Z * [new tag] trunk/56b3bf0c74f5837fd4fa6293bc515d353cb10295 -> trunk/56b3bf0c74f5837fd4fa6293bc515d353cb10295 2025-07-24T03:47:29.1665826Z * [new tag] trunk/56c69bedcc7e2211e5a3d6249e51b1674be5d10e -> trunk/56c69bedcc7e2211e5a3d6249e51b1674be5d10e 2025-07-24T03:47:29.1666958Z * [new tag] trunk/56d07d0bde5507cbd0b1298a372ba2e0d7b969d2 -> trunk/56d07d0bde5507cbd0b1298a372ba2e0d7b969d2 2025-07-24T03:47:29.1667824Z * [new tag] trunk/56df025d5156a84c846a4e469c922c0f08fb3265 -> trunk/56df025d5156a84c846a4e469c922c0f08fb3265 2025-07-24T03:47:29.1668646Z * [new tag] trunk/57024913c409764f129d6a7792625f5b05462e31 -> trunk/57024913c409764f129d6a7792625f5b05462e31 2025-07-24T03:47:29.1669456Z * [new tag] trunk/576253c47603baff6709353631e92e8da7d8d7dd -> trunk/576253c47603baff6709353631e92e8da7d8d7dd 2025-07-24T03:47:29.1670281Z * [new tag] trunk/5763ec5f8d11df5eea962bedc74563394c0e273f -> trunk/5763ec5f8d11df5eea962bedc74563394c0e273f 2025-07-24T03:47:29.1671150Z * [new tag] trunk/577baa411675ed241c7d5cf79f25c13e29dac583 -> trunk/577baa411675ed241c7d5cf79f25c13e29dac583 2025-07-24T03:47:29.1672009Z * [new tag] trunk/57e4d7b5ccb8e35b434b62cc1f9aafb7d4d82b55 -> trunk/57e4d7b5ccb8e35b434b62cc1f9aafb7d4d82b55 2025-07-24T03:47:29.1672850Z * [new tag] trunk/583138d170ff8b60a321211cce8d2e5be6c9ae0b -> trunk/583138d170ff8b60a321211cce8d2e5be6c9ae0b 2025-07-24T03:47:29.1673679Z * [new tag] trunk/584a0510b30b2472e54197d6b67b6f5f5e8ac807 -> trunk/584a0510b30b2472e54197d6b67b6f5f5e8ac807 2025-07-24T03:47:29.1674500Z * [new tag] trunk/588b5fb94bc6d2195ba5a4287b7feebe736da7db -> trunk/588b5fb94bc6d2195ba5a4287b7feebe736da7db 2025-07-24T03:47:29.1675346Z * [new tag] trunk/58c7cf9ede6311da5533dbcaf238a912176a6a85 -> trunk/58c7cf9ede6311da5533dbcaf238a912176a6a85 2025-07-24T03:47:29.1676196Z * [new tag] trunk/58e5d20c57e6baafd82b3b49c0e52931f5ae5d51 -> trunk/58e5d20c57e6baafd82b3b49c0e52931f5ae5d51 2025-07-24T03:47:29.1677022Z * [new tag] trunk/590607c5992d200b86361c5b68d53c93d8099193 -> trunk/590607c5992d200b86361c5b68d53c93d8099193 2025-07-24T03:47:29.1677855Z * [new tag] trunk/590fe4d2d7565f2045ef1ad4f4aad1f3b3de7aa3 -> trunk/590fe4d2d7565f2045ef1ad4f4aad1f3b3de7aa3 2025-07-24T03:47:29.1678698Z * [new tag] trunk/5951fcd50acc51bb91beae8488758f35219da849 -> trunk/5951fcd50acc51bb91beae8488758f35219da849 2025-07-24T03:47:29.1679514Z * [new tag] trunk/596b418391aa5d520e69310250c1f86c6c0a1107 -> trunk/596b418391aa5d520e69310250c1f86c6c0a1107 2025-07-24T03:47:29.1680346Z * [new tag] trunk/5998cd4eaaf50d5a427f0b0ec14f2135e4a46723 -> trunk/5998cd4eaaf50d5a427f0b0ec14f2135e4a46723 2025-07-24T03:47:29.1681175Z * [new tag] trunk/599f94e7b9ffd7481cc51a37093a2d17a5116889 -> trunk/599f94e7b9ffd7481cc51a37093a2d17a5116889 2025-07-24T03:47:29.1682026Z * [new tag] trunk/59c3cac4547aafd2f718b7c64053098cc5886878 -> trunk/59c3cac4547aafd2f718b7c64053098cc5886878 2025-07-24T03:47:29.1682976Z * [new tag] trunk/59eb61b2d1e4b64debbefa036acd0d8c7d55f0a3 -> trunk/59eb61b2d1e4b64debbefa036acd0d8c7d55f0a3 2025-07-24T03:47:29.1683821Z * [new tag] trunk/59f9b25f3cfc635053843372ea29ff4bf754da3f -> trunk/59f9b25f3cfc635053843372ea29ff4bf754da3f 2025-07-24T03:47:29.1684661Z * [new tag] trunk/5a2db5152d23f76dbb45d20008d9af68e761e8d1 -> trunk/5a2db5152d23f76dbb45d20008d9af68e761e8d1 2025-07-24T03:47:29.1685507Z * [new tag] trunk/5a533f74a160f6a570c2b9770ffdd89874ba59e2 -> trunk/5a533f74a160f6a570c2b9770ffdd89874ba59e2 2025-07-24T03:47:29.1686343Z * [new tag] trunk/5a54db14e3843cfa87fd8d27487dbf2f2dfb6c47 -> trunk/5a54db14e3843cfa87fd8d27487dbf2f2dfb6c47 2025-07-24T03:47:29.1687192Z * [new tag] trunk/5a56e6a72b8d805a665e67a23b0ca2decf4d8cc2 -> trunk/5a56e6a72b8d805a665e67a23b0ca2decf4d8cc2 2025-07-24T03:47:29.1688165Z * [new tag] trunk/5a5a05a6a3be376130848e235df73b752eef0230 -> trunk/5a5a05a6a3be376130848e235df73b752eef0230 2025-07-24T03:47:29.1689106Z * [new tag] trunk/5ab257c74c8e3ffe99380790de2134ba8013555e -> trunk/5ab257c74c8e3ffe99380790de2134ba8013555e 2025-07-24T03:47:29.1689961Z * [new tag] trunk/5ab6a3fb6fd37c542060c606edd4b95c7e3cae82 -> trunk/5ab6a3fb6fd37c542060c606edd4b95c7e3cae82 2025-07-24T03:47:29.1690815Z * [new tag] trunk/5ad2bee2c8a7defd2580bb138145a49c37146fcc -> trunk/5ad2bee2c8a7defd2580bb138145a49c37146fcc 2025-07-24T03:47:29.1691689Z * [new tag] trunk/5aee022d8b2bc9d31ddaf877315ffb8ad9d62985 -> trunk/5aee022d8b2bc9d31ddaf877315ffb8ad9d62985 2025-07-24T03:47:29.1692553Z * [new tag] trunk/5b10b0a96f9abf8c2751db324f0773aa433ec783 -> trunk/5b10b0a96f9abf8c2751db324f0773aa433ec783 2025-07-24T03:47:29.1895838Z * [new tag] trunk/5b40f6581eac8a2e92af8dd986df7c22ad4584ce -> trunk/5b40f6581eac8a2e92af8dd986df7c22ad4584ce 2025-07-24T03:47:29.1896790Z * [new tag] trunk/5b4e0255d7ed756c312fb74ffcf17fe62c903bd7 -> trunk/5b4e0255d7ed756c312fb74ffcf17fe62c903bd7 2025-07-24T03:47:29.1897628Z * [new tag] trunk/5b656289064311e8bb08e1148db7d9b41f9d7ac8 -> trunk/5b656289064311e8bb08e1148db7d9b41f9d7ac8 2025-07-24T03:47:29.1898467Z * [new tag] trunk/5b9db4335e61c1c903cb0769282cbea588e49036 -> trunk/5b9db4335e61c1c903cb0769282cbea588e49036 2025-07-24T03:47:29.1899306Z * [new tag] trunk/5bd7804be2186f1756fba75ecc900d3b19016ad5 -> trunk/5bd7804be2186f1756fba75ecc900d3b19016ad5 2025-07-24T03:47:29.1900145Z * [new tag] trunk/5c79a55e7e58c6382c7ce02da1cd07d358239d94 -> trunk/5c79a55e7e58c6382c7ce02da1cd07d358239d94 2025-07-24T03:47:29.1900988Z * [new tag] trunk/5c7e1d39ab81647300d60e7cc22b24acf2641457 -> trunk/5c7e1d39ab81647300d60e7cc22b24acf2641457 2025-07-24T03:47:29.1901931Z * [new tag] trunk/5cc4e856fda4accb2e9291527693a91dc2a18d89 -> trunk/5cc4e856fda4accb2e9291527693a91dc2a18d89 2025-07-24T03:47:29.1902846Z * [new tag] trunk/5cdb3d896e153265da9ac7e320a19c4a9205b425 -> trunk/5cdb3d896e153265da9ac7e320a19c4a9205b425 2025-07-24T03:47:29.1903698Z * [new tag] trunk/5cde34473c33ed7f8df07489783a2b86058ebb3f -> trunk/5cde34473c33ed7f8df07489783a2b86058ebb3f 2025-07-24T03:47:29.1904558Z * [new tag] trunk/5cfe4377d6f3b5845ba1f67122e5fbda8d642ecd -> trunk/5cfe4377d6f3b5845ba1f67122e5fbda8d642ecd 2025-07-24T03:47:29.1905397Z * [new tag] trunk/5d5a5b3501dfb0759ed36d0a88b65cdcd87c1e27 -> trunk/5d5a5b3501dfb0759ed36d0a88b65cdcd87c1e27 2025-07-24T03:47:29.1906234Z * [new tag] trunk/5d8d126249f83a9581f6b086f0891753bbb7175e -> trunk/5d8d126249f83a9581f6b086f0891753bbb7175e 2025-07-24T03:47:29.1907057Z * [new tag] trunk/5db9a2b54ae69917753be5b2eef0e15ad3cfd19b -> trunk/5db9a2b54ae69917753be5b2eef0e15ad3cfd19b 2025-07-24T03:47:29.1907973Z * [new tag] trunk/5dc75f72d4ede12067ddca459e02c8ee8a95e02c -> trunk/5dc75f72d4ede12067ddca459e02c8ee8a95e02c 2025-07-24T03:47:29.1908881Z * [new tag] trunk/5dd07c70e53a86b73f49711b8186d86dc4f1b32a -> trunk/5dd07c70e53a86b73f49711b8186d86dc4f1b32a 2025-07-24T03:47:29.1909702Z * [new tag] trunk/5dd9652389ed7959a842323e4ce063f553710e47 -> trunk/5dd9652389ed7959a842323e4ce063f553710e47 2025-07-24T03:47:29.1910541Z * [new tag] trunk/5df3bf13ec4e436abefe9d3822230727c04c2ab7 -> trunk/5df3bf13ec4e436abefe9d3822230727c04c2ab7 2025-07-24T03:47:29.1911388Z * [new tag] trunk/5dfd8a9c7a464bb42e81b8594eefd2fa865e5423 -> trunk/5dfd8a9c7a464bb42e81b8594eefd2fa865e5423 2025-07-24T03:47:29.1912240Z * [new tag] trunk/5dfe1787b5ed372fe1e9f0d73fab4e53a61bd17a -> trunk/5dfe1787b5ed372fe1e9f0d73fab4e53a61bd17a 2025-07-24T03:47:29.1913299Z * [new tag] trunk/5e1232871b641762aa1fdd84ba441a8fc9e34043 -> trunk/5e1232871b641762aa1fdd84ba441a8fc9e34043 2025-07-24T03:47:29.1914310Z * [new tag] trunk/5e149a64822fb3fdb2f1e28b947a056a64d306c5 -> trunk/5e149a64822fb3fdb2f1e28b947a056a64d306c5 2025-07-24T03:47:29.1915217Z * [new tag] trunk/5e17932c226b79d8510fb8c76babbf898a68ae33 -> trunk/5e17932c226b79d8510fb8c76babbf898a68ae33 2025-07-24T03:47:29.1916067Z * [new tag] trunk/5e18bc333144473f1f10bc8a5ba05dba7950fb8a -> trunk/5e18bc333144473f1f10bc8a5ba05dba7950fb8a 2025-07-24T03:47:29.1916908Z * [new tag] trunk/5e386eec9426f174eea130c0c012d9f65ebe65fb -> trunk/5e386eec9426f174eea130c0c012d9f65ebe65fb 2025-07-24T03:47:29.1917768Z * [new tag] trunk/5e636d664ae0ccfdc1f0c5b060eb50fabf56e91b -> trunk/5e636d664ae0ccfdc1f0c5b060eb50fabf56e91b 2025-07-24T03:47:29.1918611Z * [new tag] trunk/5e93abe3c0106cf6fc694a38433909f20ee6a92c -> trunk/5e93abe3c0106cf6fc694a38433909f20ee6a92c 2025-07-24T03:47:29.1919460Z * [new tag] trunk/5eb5c3700bf51015e6a46f9f20c0e0e20cf55ab6 -> trunk/5eb5c3700bf51015e6a46f9f20c0e0e20cf55ab6 2025-07-24T03:47:29.1920353Z * [new tag] trunk/5f1225ef487a4c3954499a8ae5b5a55751e3ef2b -> trunk/5f1225ef487a4c3954499a8ae5b5a55751e3ef2b 2025-07-24T03:47:29.1921239Z * [new tag] trunk/5fb07acbc32874a932cd26087cf752b2f4cc72df -> trunk/5fb07acbc32874a932cd26087cf752b2f4cc72df 2025-07-24T03:47:29.1922083Z * [new tag] trunk/5fbaa041e75af11c7ff892e544707820232bd750 -> trunk/5fbaa041e75af11c7ff892e544707820232bd750 2025-07-24T03:47:29.1922993Z * [new tag] trunk/602044068359a3be08b2030a1bb1efb4dc107767 -> trunk/602044068359a3be08b2030a1bb1efb4dc107767 2025-07-24T03:47:29.1923808Z * [new tag] trunk/603a54a9b33e1aabe1407721d7935b881a160968 -> trunk/603a54a9b33e1aabe1407721d7935b881a160968 2025-07-24T03:47:29.2200408Z * [new tag] trunk/606d73bde495b055984206986fb7dd8918570e89 -> trunk/606d73bde495b055984206986fb7dd8918570e89 2025-07-24T03:47:29.2201332Z * [new tag] trunk/6098209bfffa453ec2cea08b0c9991b3b7e2bfeb -> trunk/6098209bfffa453ec2cea08b0c9991b3b7e2bfeb 2025-07-24T03:47:29.2202195Z * [new tag] trunk/60abb0d3273749cb2a7d583c7c2863bd2819e87e -> trunk/60abb0d3273749cb2a7d583c7c2863bd2819e87e 2025-07-24T03:47:29.2203114Z * [new tag] trunk/60ac3414ebefc9281538abff87622059125dcfad -> trunk/60ac3414ebefc9281538abff87622059125dcfad 2025-07-24T03:47:29.2203950Z * [new tag] trunk/60b41de0ca0e5240eccf15c26a2b55b4a34d6f47 -> trunk/60b41de0ca0e5240eccf15c26a2b55b4a34d6f47 2025-07-24T03:47:29.2204787Z * [new tag] trunk/60b9b06a53e13100709d66df8a7555ed167d5a1e -> trunk/60b9b06a53e13100709d66df8a7555ed167d5a1e 2025-07-24T03:47:29.2205641Z * [new tag] trunk/60e66d11ab3d62273cafa7f6b104db7e20f75dfd -> trunk/60e66d11ab3d62273cafa7f6b104db7e20f75dfd 2025-07-24T03:47:29.2206486Z * [new tag] trunk/6100ed457c9bf19dd80e0d53301c7bae691da8d3 -> trunk/6100ed457c9bf19dd80e0d53301c7bae691da8d3 2025-07-24T03:47:29.2207337Z * [new tag] trunk/61712e6f2ba58cce354a742d918934ec7293ee43 -> trunk/61712e6f2ba58cce354a742d918934ec7293ee43 2025-07-24T03:47:29.2208157Z * [new tag] trunk/617e3f69f8479197be57a28cc31e001c3feec407 -> trunk/617e3f69f8479197be57a28cc31e001c3feec407 2025-07-24T03:47:29.2208975Z * [new tag] trunk/61a7b09ef39907b6c4b47445f965c4c77cc6c2ed -> trunk/61a7b09ef39907b6c4b47445f965c4c77cc6c2ed 2025-07-24T03:47:29.2209811Z * [new tag] trunk/61b271e0f3f93209325dea9dccb1e97e7bc16b41 -> trunk/61b271e0f3f93209325dea9dccb1e97e7bc16b41 2025-07-24T03:47:29.2210638Z * [new tag] trunk/61e13782ddddf9e957c984ef11d7bb7643b871e7 -> trunk/61e13782ddddf9e957c984ef11d7bb7643b871e7 2025-07-24T03:47:29.2211686Z * [new tag] trunk/61eaaa21a42398941ea3fb01585a0926e9544831 -> trunk/61eaaa21a42398941ea3fb01585a0926e9544831 2025-07-24T03:47:29.2212662Z * [new tag] trunk/61f6aa36b9f9a168bd3c710c449f0a78c0301972 -> trunk/61f6aa36b9f9a168bd3c710c449f0a78c0301972 2025-07-24T03:47:29.2213490Z * [new tag] trunk/6200584193b770411b7f91880bbff6f746acfcb0 -> trunk/6200584193b770411b7f91880bbff6f746acfcb0 2025-07-24T03:47:29.2214312Z * [new tag] trunk/620415e018cd67e45d5c0a87964aff8751c9bf71 -> trunk/620415e018cd67e45d5c0a87964aff8751c9bf71 2025-07-24T03:47:29.2215139Z * [new tag] trunk/6215e90b7b9af8275c5dbfaa5fd58d7ec08b6764 -> trunk/6215e90b7b9af8275c5dbfaa5fd58d7ec08b6764 2025-07-24T03:47:29.2215982Z * [new tag] trunk/62272d5b24e7f505a02175de3c56ecc287557d2a -> trunk/62272d5b24e7f505a02175de3c56ecc287557d2a 2025-07-24T03:47:29.2216808Z * [new tag] trunk/627ba411366bcc15019c49756d3f22fd3914bd50 -> trunk/627ba411366bcc15019c49756d3f22fd3914bd50 2025-07-24T03:47:29.2217651Z * [new tag] trunk/62fa3f5aebfe763f5de27e687e4c81df7c7080e3 -> trunk/62fa3f5aebfe763f5de27e687e4c81df7c7080e3 2025-07-24T03:47:29.2218509Z * [new tag] trunk/6303cc41b71c02af9c855f3cc85b1146a97fc7a8 -> trunk/6303cc41b71c02af9c855f3cc85b1146a97fc7a8 2025-07-24T03:47:29.2219336Z * [new tag] trunk/63360e64da814de8ce271f1e4b6e2380a03b585e -> trunk/63360e64da814de8ce271f1e4b6e2380a03b585e 2025-07-24T03:47:29.2220165Z * [new tag] trunk/633d5faf3f0b764cb19d74943d6d78d1917c8d8c -> trunk/633d5faf3f0b764cb19d74943d6d78d1917c8d8c 2025-07-24T03:47:29.2221011Z * [new tag] trunk/637e75433cb4ffc61a057fbdd5597db501cb05a7 -> trunk/637e75433cb4ffc61a057fbdd5597db501cb05a7 2025-07-24T03:47:29.2221852Z * [new tag] trunk/63a96eaeb84f5af6e83c7360c09f5540a44d19ca -> trunk/63a96eaeb84f5af6e83c7360c09f5540a44d19ca 2025-07-24T03:47:29.2222707Z * [new tag] trunk/63e87d6d05dc05ed7cc642c0cf8fd1cd2e3b93a1 -> trunk/63e87d6d05dc05ed7cc642c0cf8fd1cd2e3b93a1 2025-07-24T03:47:29.2223561Z * [new tag] trunk/6401d1d53d13cb2d564d48a30a8cf4f952ff773d -> trunk/6401d1d53d13cb2d564d48a30a8cf4f952ff773d 2025-07-24T03:47:29.2224375Z * [new tag] trunk/640703d95f210876f20f8f16c868442dad17b477 -> trunk/640703d95f210876f20f8f16c868442dad17b477 2025-07-24T03:47:29.2225192Z * [new tag] trunk/640f5a70905b01405f1ce397d25308d3e6a1d421 -> trunk/640f5a70905b01405f1ce397d25308d3e6a1d421 2025-07-24T03:47:29.2226004Z * [new tag] trunk/6442ae9256a6936bc8efe31fc5326d5c1c1f660b -> trunk/6442ae9256a6936bc8efe31fc5326d5c1c1f660b 2025-07-24T03:47:29.2226836Z * [new tag] trunk/64436c38c956b252d8c9f6f68e94fb46c34efdac -> trunk/64436c38c956b252d8c9f6f68e94fb46c34efdac 2025-07-24T03:47:29.2472464Z * [new tag] trunk/644cc58dfffe1b5bd15688495551b49462c163f6 -> trunk/644cc58dfffe1b5bd15688495551b49462c163f6 2025-07-24T03:47:29.2473462Z * [new tag] trunk/6499420e45298bad5ef0241d0f04f029825abc60 -> trunk/6499420e45298bad5ef0241d0f04f029825abc60 2025-07-24T03:47:29.2474334Z * [new tag] trunk/64bb6317a57d14c37339d86cded7c6b860c7d638 -> trunk/64bb6317a57d14c37339d86cded7c6b860c7d638 2025-07-24T03:47:29.2475183Z * [new tag] trunk/64dabb2cf5c4112c7c169fb76dabe9ab905c8e7c -> trunk/64dabb2cf5c4112c7c169fb76dabe9ab905c8e7c 2025-07-24T03:47:29.2476028Z * [new tag] trunk/64e8d7d66bd786a12a62db795da52400ac63e039 -> trunk/64e8d7d66bd786a12a62db795da52400ac63e039 2025-07-24T03:47:29.2476865Z * [new tag] trunk/64f2ec77f869a7d495694519fb482e9ecaaa6da1 -> trunk/64f2ec77f869a7d495694519fb482e9ecaaa6da1 2025-07-24T03:47:29.2477675Z * [new tag] trunk/651b4a68f2a60d55d266e40776709247ef347d68 -> trunk/651b4a68f2a60d55d266e40776709247ef347d68 2025-07-24T03:47:29.2478496Z * [new tag] trunk/653c52fe52254e6783d75a73c3a8abbfd9cd2b3c -> trunk/653c52fe52254e6783d75a73c3a8abbfd9cd2b3c 2025-07-24T03:47:29.2479646Z * [new tag] trunk/655b3b14ffba4ae73e26a63b4289329e8d160a6f -> trunk/655b3b14ffba4ae73e26a63b4289329e8d160a6f 2025-07-24T03:47:29.2480612Z * [new tag] trunk/656885b6147e7e77db38de2898ef27f389e06461 -> trunk/656885b6147e7e77db38de2898ef27f389e06461 2025-07-24T03:47:29.2481448Z * [new tag] trunk/659bfbf44329c44b9451e197e2b5eb83d48311d2 -> trunk/659bfbf44329c44b9451e197e2b5eb83d48311d2 2025-07-24T03:47:29.2482291Z * [new tag] trunk/65b9c13cce43a7a8666ca1ef12b554a5dcfd2492 -> trunk/65b9c13cce43a7a8666ca1ef12b554a5dcfd2492 2025-07-24T03:47:29.2483212Z * [new tag] trunk/65fcca4f8c97de82d35d51ad9b790d10433e9b91 -> trunk/65fcca4f8c97de82d35d51ad9b790d10433e9b91 2025-07-24T03:47:29.2484053Z * [new tag] trunk/660695f11dd73efbe2694be0ed5826e4624f22e4 -> trunk/660695f11dd73efbe2694be0ed5826e4624f22e4 2025-07-24T03:47:29.2484896Z * [new tag] trunk/660dbea909b98f19dc0239a7ae565f8a52cfe846 -> trunk/660dbea909b98f19dc0239a7ae565f8a52cfe846 2025-07-24T03:47:29.2485878Z * [new tag] trunk/6629eaf0c658b523eed47a98c0a3e6b44fd89c6b -> trunk/6629eaf0c658b523eed47a98c0a3e6b44fd89c6b 2025-07-24T03:47:29.2486728Z * [new tag] trunk/662c1cfed2bf3262709f1150fcb11e96bc29e142 -> trunk/662c1cfed2bf3262709f1150fcb11e96bc29e142 2025-07-24T03:47:29.2487568Z * [new tag] trunk/662dd7db5b60dde71ef249041b9970ca36ef79e7 -> trunk/662dd7db5b60dde71ef249041b9970ca36ef79e7 2025-07-24T03:47:29.2488416Z * [new tag] trunk/6673ac746c5fade3eaf0aa37547a2e0e76d81860 -> trunk/6673ac746c5fade3eaf0aa37547a2e0e76d81860 2025-07-24T03:47:29.2489260Z * [new tag] trunk/66c9bc5062503da58991a1fb0a9eab5d501b2891 -> trunk/66c9bc5062503da58991a1fb0a9eab5d501b2891 2025-07-24T03:47:29.2490081Z * [new tag] trunk/670dab6c630552b32189911f22896ec453e55ab7 -> trunk/670dab6c630552b32189911f22896ec453e55ab7 2025-07-24T03:47:29.2490910Z * [new tag] trunk/671a9d175b7e15b4947c97f50b931dba1cc35a63 -> trunk/671a9d175b7e15b4947c97f50b931dba1cc35a63 2025-07-24T03:47:29.2491848Z * [new tag] trunk/672ac2ec86d8ffe080399363df96597437e51115 -> trunk/672ac2ec86d8ffe080399363df96597437e51115 2025-07-24T03:47:29.2492784Z * [new tag] trunk/67be2f27e17db0214d52d636945399a0c6257d65 -> trunk/67be2f27e17db0214d52d636945399a0c6257d65 2025-07-24T03:47:29.2493725Z * [new tag] trunk/67ee0c6725e8dd2d0372ff902775b7040631aaf7 -> trunk/67ee0c6725e8dd2d0372ff902775b7040631aaf7 2025-07-24T03:47:29.2494592Z * [new tag] trunk/67f8270516ef877aec85801e4a8d0b533687e938 -> trunk/67f8270516ef877aec85801e4a8d0b533687e938 2025-07-24T03:47:29.2495529Z * [new tag] trunk/6835ba1b3409d9764c6e704cdc0311d53ea0841a -> trunk/6835ba1b3409d9764c6e704cdc0311d53ea0841a 2025-07-24T03:47:29.2496468Z * [new tag] trunk/68996dc18306ac0320ac5e6979f1a7a7a226b3cc -> trunk/68996dc18306ac0320ac5e6979f1a7a7a226b3cc 2025-07-24T03:47:29.2497420Z * [new tag] trunk/68f36683f0c0dfe7befeba2b65dee30faf88f7cc -> trunk/68f36683f0c0dfe7befeba2b65dee30faf88f7cc 2025-07-24T03:47:29.2498399Z * [new tag] trunk/691736ae07af36787ab7c77ffe5ce55bbba72b2e -> trunk/691736ae07af36787ab7c77ffe5ce55bbba72b2e 2025-07-24T03:47:29.2499317Z * [new tag] trunk/6918758f554790e1155fe9f3ee4120692347680a -> trunk/6918758f554790e1155fe9f3ee4120692347680a 2025-07-24T03:47:29.2500196Z * [new tag] trunk/693116f765ede6632d3dd8ef3ffe01cc40b960b9 -> trunk/693116f765ede6632d3dd8ef3ffe01cc40b960b9 2025-07-24T03:47:29.2501133Z * [new tag] trunk/694028f50269c9f34721db813e9ee1a8221c99b2 -> trunk/694028f50269c9f34721db813e9ee1a8221c99b2 2025-07-24T03:47:29.2706139Z * [new tag] trunk/6959b5febe090375e261e678902681533d2e2528 -> trunk/6959b5febe090375e261e678902681533d2e2528 2025-07-24T03:47:29.2707298Z * [new tag] trunk/69f2e09cc241176d6128a8f92f9490422c5b81b3 -> trunk/69f2e09cc241176d6128a8f92f9490422c5b81b3 2025-07-24T03:47:29.2708291Z * [new tag] trunk/6a3d00aa3b1e54feeb040891bfe2c59c36b9443c -> trunk/6a3d00aa3b1e54feeb040891bfe2c59c36b9443c 2025-07-24T03:47:29.2709146Z * [new tag] trunk/6abe450a6fda580714a276ed2dd695ab99074b93 -> trunk/6abe450a6fda580714a276ed2dd695ab99074b93 2025-07-24T03:47:29.2709990Z * [new tag] trunk/6b0526a2c47f517a28619a9aa0e8e0260e91ff46 -> trunk/6b0526a2c47f517a28619a9aa0e8e0260e91ff46 2025-07-24T03:47:29.2710945Z * [new tag] trunk/6b05842e4785f52ab89a8fa2a88f9e6f2316cbbd -> trunk/6b05842e4785f52ab89a8fa2a88f9e6f2316cbbd 2025-07-24T03:47:29.2711783Z * [new tag] trunk/6b1211df294e57d59c1e1717b1fedc671ec5bd5a -> trunk/6b1211df294e57d59c1e1717b1fedc671ec5bd5a 2025-07-24T03:47:29.2712639Z * [new tag] trunk/6b2bef10afae4acb18f230a496392b673c954ce7 -> trunk/6b2bef10afae4acb18f230a496392b673c954ce7 2025-07-24T03:47:29.2713502Z * [new tag] trunk/6b3eef6d316ce33ef0f0416c2f3f6a827ac4fe30 -> trunk/6b3eef6d316ce33ef0f0416c2f3f6a827ac4fe30 2025-07-24T03:47:29.2714350Z * [new tag] trunk/6b45af38a5991134f45d9750b79c767688ba3761 -> trunk/6b45af38a5991134f45d9750b79c767688ba3761 2025-07-24T03:47:29.2715176Z * [new tag] trunk/6b7767fc8d759017b5fc2a7002051cf5c05615a9 -> trunk/6b7767fc8d759017b5fc2a7002051cf5c05615a9 2025-07-24T03:47:29.2716002Z * [new tag] trunk/6b84cb29f97957032c5aa91b4e2a6bfa166db04d -> trunk/6b84cb29f97957032c5aa91b4e2a6bfa166db04d 2025-07-24T03:47:29.2716897Z * [new tag] trunk/6bc263809de610e2fcdf594c122a0f99c6c7d96f -> trunk/6bc263809de610e2fcdf594c122a0f99c6c7d96f 2025-07-24T03:47:29.2717785Z * [new tag] trunk/6c008e2fb5a94342c5c4047d034c61bb067fa2b7 -> trunk/6c008e2fb5a94342c5c4047d034c61bb067fa2b7 2025-07-24T03:47:29.2718630Z * [new tag] trunk/6c05f2fca049344fbbb55eed7a6c866f34c8a477 -> trunk/6c05f2fca049344fbbb55eed7a6c866f34c8a477 2025-07-24T03:47:29.2719484Z * [new tag] trunk/6c0b42fd2f2c070f4c7ef9a3914698726f61ef3a -> trunk/6c0b42fd2f2c070f4c7ef9a3914698726f61ef3a 2025-07-24T03:47:29.2720317Z * [new tag] trunk/6c24c6633a00608d8c20805a77fae55f6b8fe9a6 -> trunk/6c24c6633a00608d8c20805a77fae55f6b8fe9a6 2025-07-24T03:47:29.2721148Z * [new tag] trunk/6c42afe1964496e1b02be1442470f254e35eb199 -> trunk/6c42afe1964496e1b02be1442470f254e35eb199 2025-07-24T03:47:29.2721968Z * [new tag] trunk/6c5227ba00a2904365af566c24b4681cd01a041c -> trunk/6c5227ba00a2904365af566c24b4681cd01a041c 2025-07-24T03:47:29.2722909Z * [new tag] trunk/6c795306378c47341d58109da03371bba2bec46e -> trunk/6c795306378c47341d58109da03371bba2bec46e 2025-07-24T03:47:29.2723803Z * [new tag] trunk/6cc490d40b16b3be7ecc8943fe1bc594246caab3 -> trunk/6cc490d40b16b3be7ecc8943fe1bc594246caab3 2025-07-24T03:47:29.2724639Z * [new tag] trunk/6d02321472ee0761092166dd273eb3ec386cf0c0 -> trunk/6d02321472ee0761092166dd273eb3ec386cf0c0 2025-07-24T03:47:29.2725468Z * [new tag] trunk/6d2155db498375317e2101068a220439dba80939 -> trunk/6d2155db498375317e2101068a220439dba80939 2025-07-24T03:47:29.2726297Z * [new tag] trunk/6d31d38965ef0bc81f3a5a49882d200c69218ccf -> trunk/6d31d38965ef0bc81f3a5a49882d200c69218ccf 2025-07-24T03:47:29.2727115Z * [new tag] trunk/6d3a4356f61b28a14abd95f641e2615deb186365 -> trunk/6d3a4356f61b28a14abd95f641e2615deb186365 2025-07-24T03:47:29.2727939Z * [new tag] trunk/6d5c789ad5f5d162426a5a10c84813ec923dd8ee -> trunk/6d5c789ad5f5d162426a5a10c84813ec923dd8ee 2025-07-24T03:47:29.2728835Z * [new tag] trunk/6dc2b22269f82a1feec06b5e3e79b184704cc0ba -> trunk/6dc2b22269f82a1feec06b5e3e79b184704cc0ba 2025-07-24T03:47:29.2729836Z * [new tag] trunk/6de41ce0f899604c3f8b33e1f8d37eb89b3a963e -> trunk/6de41ce0f899604c3f8b33e1f8d37eb89b3a963e 2025-07-24T03:47:29.2730773Z * [new tag] trunk/6defd5084e3fd330561095252c30ea50efa8e0ca -> trunk/6defd5084e3fd330561095252c30ea50efa8e0ca 2025-07-24T03:47:29.2731626Z * [new tag] trunk/6dfada220e4f46c28df3a6bdf57260ca0717c4bd -> trunk/6dfada220e4f46c28df3a6bdf57260ca0717c4bd 2025-07-24T03:47:29.2732473Z * [new tag] trunk/6e07d6a0ff386d99d8c2f1d25978b0683988a4cb -> trunk/6e07d6a0ff386d99d8c2f1d25978b0683988a4cb 2025-07-24T03:47:29.2733307Z * [new tag] trunk/6e17315cd33892919dc6deb6a9ecb568dda6195e -> trunk/6e17315cd33892919dc6deb6a9ecb568dda6195e 2025-07-24T03:47:29.2989134Z * [new tag] trunk/6e185c53124e1b5a0fe391959060c1249178bcb6 -> trunk/6e185c53124e1b5a0fe391959060c1249178bcb6 2025-07-24T03:47:29.2990006Z * [new tag] trunk/6e2992a9984f2c3f6469564008c7e45869b84678 -> trunk/6e2992a9984f2c3f6469564008c7e45869b84678 2025-07-24T03:47:29.2990930Z * [new tag] trunk/6ea91f067256447cda6fae533f806c1f8baafbe2 -> trunk/6ea91f067256447cda6fae533f806c1f8baafbe2 2025-07-24T03:47:29.2991896Z * [new tag] trunk/6eb6f198e1a28e904ce00a132c43aa2536419664 -> trunk/6eb6f198e1a28e904ce00a132c43aa2536419664 2025-07-24T03:47:29.2992771Z * [new tag] trunk/6ebe9a4f47e9cd1c9ccd467bcdfdea9445fd98d6 -> trunk/6ebe9a4f47e9cd1c9ccd467bcdfdea9445fd98d6 2025-07-24T03:47:29.2993636Z * [new tag] trunk/6ed85bfe6a1704a87a492a3381414186eb439f5e -> trunk/6ed85bfe6a1704a87a492a3381414186eb439f5e 2025-07-24T03:47:29.2994477Z * [new tag] trunk/6ef70edd9a9acee76a607bdd22bac400c8e29434 -> trunk/6ef70edd9a9acee76a607bdd22bac400c8e29434 2025-07-24T03:47:29.2995347Z * [new tag] trunk/6f05d58f2b0bc4779fbed9db5b0f80af1c686dcd -> trunk/6f05d58f2b0bc4779fbed9db5b0f80af1c686dcd 2025-07-24T03:47:29.2996180Z * [new tag] trunk/6f23f53599629a47d6e097b2a027048658a142d4 -> trunk/6f23f53599629a47d6e097b2a027048658a142d4 2025-07-24T03:47:29.2997012Z * [new tag] trunk/6f60cfe9b1445271f8b83f58b4c4f12578d837d3 -> trunk/6f60cfe9b1445271f8b83f58b4c4f12578d837d3 2025-07-24T03:47:29.2997943Z * [new tag] trunk/6f73e067963e31d16840fbc34993a64cee698746 -> trunk/6f73e067963e31d16840fbc34993a64cee698746 2025-07-24T03:47:29.2998860Z * [new tag] trunk/6fb62931593fc10252e4994cd1a0595ebf8e990f -> trunk/6fb62931593fc10252e4994cd1a0595ebf8e990f 2025-07-24T03:47:29.2999784Z * [new tag] trunk/6fd6fc418d9846e5e7e73513b9bcea7bf7feb4b4 -> trunk/6fd6fc418d9846e5e7e73513b9bcea7bf7feb4b4 2025-07-24T03:47:29.3000699Z * [new tag] trunk/6fe7456aa1a2d025d1d06e15ba3896e6adba94b8 -> trunk/6fe7456aa1a2d025d1d06e15ba3896e6adba94b8 2025-07-24T03:47:29.3001642Z * [new tag] trunk/6ffa03ef9e18299f41da076f421abbd32e51e175 -> trunk/6ffa03ef9e18299f41da076f421abbd32e51e175 2025-07-24T03:47:29.3002679Z * [new tag] trunk/7001d6fbc9fde3086159ec26d80a927e894b25a0 -> trunk/7001d6fbc9fde3086159ec26d80a927e894b25a0 2025-07-24T03:47:29.3003632Z * [new tag] trunk/702a304b0785d2dfe3d9bd4eed535c38e969818d -> trunk/702a304b0785d2dfe3d9bd4eed535c38e969818d 2025-07-24T03:47:29.3004586Z * [new tag] trunk/706bc41c4c3caa2654a926382c2ef0ef4d0bc55e -> trunk/706bc41c4c3caa2654a926382c2ef0ef4d0bc55e 2025-07-24T03:47:29.3005519Z * [new tag] trunk/706e236b080cadd5b8a016e4bf972cdb0886d57b -> trunk/706e236b080cadd5b8a016e4bf972cdb0886d57b 2025-07-24T03:47:29.3006415Z * [new tag] trunk/7070ab318061d44f195a83b6dc11ef9299603dfe -> trunk/7070ab318061d44f195a83b6dc11ef9299603dfe 2025-07-24T03:47:29.3007362Z * [new tag] trunk/7081b8233a64c350c64e9f00c9b9d00e52020241 -> trunk/7081b8233a64c350c64e9f00c9b9d00e52020241 2025-07-24T03:47:29.3008497Z * [new tag] trunk/70b4a8880b1c3fb5e92c5fcd75bda6b6f299abac -> trunk/70b4a8880b1c3fb5e92c5fcd75bda6b6f299abac 2025-07-24T03:47:29.3009543Z * [new tag] trunk/70b68caf58815419924ddeda231cbf6535181c53 -> trunk/70b68caf58815419924ddeda231cbf6535181c53 2025-07-24T03:47:29.3010502Z * [new tag] trunk/70bb34929aabc9c11d9ec9bbb53a4f9fc32e5e19 -> trunk/70bb34929aabc9c11d9ec9bbb53a4f9fc32e5e19 2025-07-24T03:47:29.3011437Z * [new tag] trunk/710b92cf3b577036d551708b351b4043817233f5 -> trunk/710b92cf3b577036d551708b351b4043817233f5 2025-07-24T03:47:29.3012372Z * [new tag] trunk/717a099d427d97a62c26fee58f9da9a0893d4233 -> trunk/717a099d427d97a62c26fee58f9da9a0893d4233 2025-07-24T03:47:29.3013318Z * [new tag] trunk/71a650ad565fe75ca752acbc8b40fb9ce677f40f -> trunk/71a650ad565fe75ca752acbc8b40fb9ce677f40f 2025-07-24T03:47:29.3014211Z * [new tag] trunk/7205458b85aca1377f73bdbacd8a9cd83b2eebbc -> trunk/7205458b85aca1377f73bdbacd8a9cd83b2eebbc 2025-07-24T03:47:29.3015163Z * [new tag] trunk/720c2c46b181ad446bf970d70a27fd0ce149114d -> trunk/720c2c46b181ad446bf970d70a27fd0ce149114d 2025-07-24T03:47:29.3016099Z * [new tag] trunk/721d2580dbf9a4922adc1c7d1cc8237126d3cdd6 -> trunk/721d2580dbf9a4922adc1c7d1cc8237126d3cdd6 2025-07-24T03:47:29.3017039Z * [new tag] trunk/72453a66769294e93a183dfb5bdefa23de873d89 -> trunk/72453a66769294e93a183dfb5bdefa23de873d89 2025-07-24T03:47:29.3017980Z * [new tag] trunk/725c3272848c408d0fa2cba4de76affe90f793b5 -> trunk/725c3272848c408d0fa2cba4de76affe90f793b5 2025-07-24T03:47:29.3018867Z * [new tag] trunk/725cdb218ec7b117b88baf5c6f4ac39c863a4b17 -> trunk/725cdb218ec7b117b88baf5c6f4ac39c863a4b17 2025-07-24T03:47:29.3281500Z * [new tag] trunk/7275f280454f790414b24147a2ba7f94d0eabcf6 -> trunk/7275f280454f790414b24147a2ba7f94d0eabcf6 2025-07-24T03:47:29.3282384Z * [new tag] trunk/728cf6721e2996490922d0eacb23081953e45fc7 -> trunk/728cf6721e2996490922d0eacb23081953e45fc7 2025-07-24T03:47:29.3283340Z * [new tag] trunk/72c8751b61e0b2c7b88003a41ed737a65768063c -> trunk/72c8751b61e0b2c7b88003a41ed737a65768063c 2025-07-24T03:47:29.3284198Z * [new tag] trunk/72db0a98a34a9f8982f7cf83145bf57b85e36817 -> trunk/72db0a98a34a9f8982f7cf83145bf57b85e36817 2025-07-24T03:47:29.3285037Z * [new tag] trunk/731351bb4ac572fb47d46c70b7425c209c81570a -> trunk/731351bb4ac572fb47d46c70b7425c209c81570a 2025-07-24T03:47:29.3285869Z * [new tag] trunk/73220d52fd67b5f4f5b15e0e0433e09733c93f31 -> trunk/73220d52fd67b5f4f5b15e0e0433e09733c93f31 2025-07-24T03:47:29.3286702Z * [new tag] trunk/734826d88e54642f574ea6c0f5e66cf6da6a8157 -> trunk/734826d88e54642f574ea6c0f5e66cf6da6a8157 2025-07-24T03:47:29.3287526Z * [new tag] trunk/73772919d2db560c9cc8ed617c94c77450542a94 -> trunk/73772919d2db560c9cc8ed617c94c77450542a94 2025-07-24T03:47:29.3288351Z * [new tag] trunk/7381c777245a836f88e9622005c6ea16009a3a0d -> trunk/7381c777245a836f88e9622005c6ea16009a3a0d 2025-07-24T03:47:29.3289169Z * [new tag] trunk/7392470da4386e654f303eb526dfba7e7777b06b -> trunk/7392470da4386e654f303eb526dfba7e7777b06b 2025-07-24T03:47:29.3290023Z * [new tag] trunk/7444debaca7de16b2cf71d0cd82dc8998c3a73c4 -> trunk/7444debaca7de16b2cf71d0cd82dc8998c3a73c4 2025-07-24T03:47:29.3290864Z * [new tag] trunk/7485ef078f182af981b5f17d06602de68816492c -> trunk/7485ef078f182af981b5f17d06602de68816492c 2025-07-24T03:47:29.3291681Z * [new tag] trunk/749757ac1b66485459e751b0e58b5a7c64d5f561 -> trunk/749757ac1b66485459e751b0e58b5a7c64d5f561 2025-07-24T03:47:29.3292514Z * [new tag] trunk/74ebd8d14e0d612ed35557ab254a90facf73b029 -> trunk/74ebd8d14e0d612ed35557ab254a90facf73b029 2025-07-24T03:47:29.3293364Z * [new tag] trunk/74f4cf4bd5aaa0123e7b3d91cc0cbcbd69030015 -> trunk/74f4cf4bd5aaa0123e7b3d91cc0cbcbd69030015 2025-07-24T03:47:29.3294403Z * [new tag] trunk/7521cd91118c1c1a55b8f7146d7e22bf60fe06bf -> trunk/7521cd91118c1c1a55b8f7146d7e22bf60fe06bf 2025-07-24T03:47:29.3295363Z * [new tag] trunk/752f202ef3445d2e28e2abeb6feed56eee9da5a9 -> trunk/752f202ef3445d2e28e2abeb6feed56eee9da5a9 2025-07-24T03:47:29.3296210Z * [new tag] trunk/7531bd64911774fc2656f290601834d5d02d3925 -> trunk/7531bd64911774fc2656f290601834d5d02d3925 2025-07-24T03:47:29.3297021Z * [new tag] trunk/754699610b0abec2fe3f5a73269b1dd09a330445 -> trunk/754699610b0abec2fe3f5a73269b1dd09a330445 2025-07-24T03:47:29.3297866Z * [new tag] trunk/754c04aa062d8f3c0449aec4bbcaab00bfca4bf2 -> trunk/754c04aa062d8f3c0449aec4bbcaab00bfca4bf2 2025-07-24T03:47:29.3298706Z * [new tag] trunk/75824035d392595de3bd0b8588e63c2fc6d09139 -> trunk/75824035d392595de3bd0b8588e63c2fc6d09139 2025-07-24T03:47:29.3299537Z * [new tag] trunk/7597988f1b5a41c0b91d379e0ce51111fd7cc95a -> trunk/7597988f1b5a41c0b91d379e0ce51111fd7cc95a 2025-07-24T03:47:29.3300393Z * [new tag] trunk/7599bebead35dd21bad3d3e85f62f400ad2c3139 -> trunk/7599bebead35dd21bad3d3e85f62f400ad2c3139 2025-07-24T03:47:29.3301232Z * [new tag] trunk/75a7d9e86842b57f9001a0fa6fd716927614dbf9 -> trunk/75a7d9e86842b57f9001a0fa6fd716927614dbf9 2025-07-24T03:47:29.3302060Z * [new tag] trunk/75e2628782c1ccb626603a0ae852478dbf11b1d0 -> trunk/75e2628782c1ccb626603a0ae852478dbf11b1d0 2025-07-24T03:47:29.3302890Z * [new tag] trunk/75f258dd1feeb90b8084849155e049fb57ba3521 -> trunk/75f258dd1feeb90b8084849155e049fb57ba3521 2025-07-24T03:47:29.3303730Z * [new tag] trunk/75f3e5a88df60caef27fd9c9df3fd51161378fcc -> trunk/75f3e5a88df60caef27fd9c9df3fd51161378fcc 2025-07-24T03:47:29.3304575Z * [new tag] trunk/75f489d37f048ec8a9106163ca16201156f05499 -> trunk/75f489d37f048ec8a9106163ca16201156f05499 2025-07-24T03:47:29.3305390Z * [new tag] trunk/764c02b78b935ba61c46277cb7409e6419460058 -> trunk/764c02b78b935ba61c46277cb7409e6419460058 2025-07-24T03:47:29.3306216Z * [new tag] trunk/76644c9ff58285c95764ffd27d629df219aab140 -> trunk/76644c9ff58285c95764ffd27d629df219aab140 2025-07-24T03:47:29.3307123Z * [new tag] trunk/767791943d5dd325bf3572c45886f7156e69dd5b -> trunk/767791943d5dd325bf3572c45886f7156e69dd5b 2025-07-24T03:47:29.3307991Z * [new tag] trunk/769d754ab2469813a3b790ec58c25c466099dd3d -> trunk/769d754ab2469813a3b790ec58c25c466099dd3d 2025-07-24T03:47:29.3569112Z * [new tag] trunk/76be282e3a4893e4c4d2761e862428c615f9e260 -> trunk/76be282e3a4893e4c4d2761e862428c615f9e260 2025-07-24T03:47:29.3570055Z * [new tag] trunk/76ca23c41c7edcf7b4c60ff6162eedcdf06ef359 -> trunk/76ca23c41c7edcf7b4c60ff6162eedcdf06ef359 2025-07-24T03:47:29.3571008Z * [new tag] trunk/76d07e919f66c24a55746bbc060c14b3df02ffa8 -> trunk/76d07e919f66c24a55746bbc060c14b3df02ffa8 2025-07-24T03:47:29.3571929Z * [new tag] trunk/76fe88fa56c8aac7377127fb5553de94e16e9070 -> trunk/76fe88fa56c8aac7377127fb5553de94e16e9070 2025-07-24T03:47:29.3572805Z * [new tag] trunk/770285522805745959221b902f23776a13d56df8 -> trunk/770285522805745959221b902f23776a13d56df8 2025-07-24T03:47:29.3573613Z * [new tag] trunk/7709ff55123dbdcaaa44004738fb767324f05dbd -> trunk/7709ff55123dbdcaaa44004738fb767324f05dbd 2025-07-24T03:47:29.3574452Z * [new tag] trunk/771be857043bf794cd219a9b925e308e31f12314 -> trunk/771be857043bf794cd219a9b925e308e31f12314 2025-07-24T03:47:29.3575267Z * [new tag] trunk/772d5904152abc9702bf49037e46ab6203b83f55 -> trunk/772d5904152abc9702bf49037e46ab6203b83f55 2025-07-24T03:47:29.3576088Z * [new tag] trunk/77518d1a13cc105637814bc157387478384dc897 -> trunk/77518d1a13cc105637814bc157387478384dc897 2025-07-24T03:47:29.3577131Z * [new tag] trunk/77676753ecabf6a6645bdd3abfe01939e5751e76 -> trunk/77676753ecabf6a6645bdd3abfe01939e5751e76 2025-07-24T03:47:29.3578116Z * [new tag] trunk/777eca9f16aeecd7c362a235cf25e6b8e6eda57f -> trunk/777eca9f16aeecd7c362a235cf25e6b8e6eda57f 2025-07-24T03:47:29.3578987Z * [new tag] trunk/77ac3a096532ee08211dae38c2a9336c970d1785 -> trunk/77ac3a096532ee08211dae38c2a9336c970d1785 2025-07-24T03:47:29.3579815Z * [new tag] trunk/77f884c2ec62df9df930ae86e9b8437364900346 -> trunk/77f884c2ec62df9df930ae86e9b8437364900346 2025-07-24T03:47:29.3580653Z * [new tag] trunk/783a4c1f5002bf1749833821c450360a417d40c7 -> trunk/783a4c1f5002bf1749833821c450360a417d40c7 2025-07-24T03:47:29.3581493Z * [new tag] trunk/78684e27ace1ebd51ccc93d4b6b8a6a3ec3b4c14 -> trunk/78684e27ace1ebd51ccc93d4b6b8a6a3ec3b4c14 2025-07-24T03:47:29.3582336Z * [new tag] trunk/7892f5a007859ae02b9cac5441cd51f37147ef04 -> trunk/7892f5a007859ae02b9cac5441cd51f37147ef04 2025-07-24T03:47:29.3583181Z * [new tag] trunk/78ee2ee90eed957aec3dc80423b108b16938a8ae -> trunk/78ee2ee90eed957aec3dc80423b108b16938a8ae 2025-07-24T03:47:29.3584018Z * [new tag] trunk/7918978653ff4f21c284b34809acf88784deb0de -> trunk/7918978653ff4f21c284b34809acf88784deb0de 2025-07-24T03:47:29.3584835Z * [new tag] trunk/794b95d54bb2c49d704169ddb777acfd8da8cfad -> trunk/794b95d54bb2c49d704169ddb777acfd8da8cfad 2025-07-24T03:47:29.3585704Z * [new tag] trunk/794ef6c9b8f173a0cbab5288efb2d68aef9c90b9 -> trunk/794ef6c9b8f173a0cbab5288efb2d68aef9c90b9 2025-07-24T03:47:29.3586571Z * [new tag] trunk/795a6a0affd349adfb4e3df298b604b74f27b44e -> trunk/795a6a0affd349adfb4e3df298b604b74f27b44e 2025-07-24T03:47:29.3587412Z * [new tag] trunk/7982b8c703e24a36c0e0a01b8cf22cd272369b28 -> trunk/7982b8c703e24a36c0e0a01b8cf22cd272369b28 2025-07-24T03:47:29.3588244Z * [new tag] trunk/7986c0dba6e1044d90b7f607f9cca15922339bb4 -> trunk/7986c0dba6e1044d90b7f607f9cca15922339bb4 2025-07-24T03:47:29.3589092Z * [new tag] trunk/799443605bffbd0d80fb3f2edbfe5517e0e2b4a3 -> trunk/799443605bffbd0d80fb3f2edbfe5517e0e2b4a3 2025-07-24T03:47:29.3589922Z * [new tag] trunk/7999735d23aeca844d4a7b23de6ac2370767099a -> trunk/7999735d23aeca844d4a7b23de6ac2370767099a 2025-07-24T03:47:29.3590763Z * [new tag] trunk/79ab84e9b8fe561a55931b2108af45993a670276 -> trunk/79ab84e9b8fe561a55931b2108af45993a670276 2025-07-24T03:47:29.3591593Z * [new tag] trunk/79aef141695f2daea4a9aeb0f385726c5794a242 -> trunk/79aef141695f2daea4a9aeb0f385726c5794a242 2025-07-24T03:47:29.3592442Z * [new tag] trunk/79bdafe5b61f6f073dcd276e135076ff3277a951 -> trunk/79bdafe5b61f6f073dcd276e135076ff3277a951 2025-07-24T03:47:29.3593291Z * [new tag] trunk/79d7c754ab8ae0e5c3a614521632d2cfbfa0fdba -> trunk/79d7c754ab8ae0e5c3a614521632d2cfbfa0fdba 2025-07-24T03:47:29.3594143Z * [new tag] trunk/79e49efaddf3a049adbe2de839cc65d73a1edd42 -> trunk/79e49efaddf3a049adbe2de839cc65d73a1edd42 2025-07-24T03:47:29.3595006Z * [new tag] trunk/7a03b0d2ca3946b770bc817571fc36bd5c608b38 -> trunk/7a03b0d2ca3946b770bc817571fc36bd5c608b38 2025-07-24T03:47:29.3595840Z * [new tag] trunk/7a08755c5f3630150c50d09e16c0abf9501dea1e -> trunk/7a08755c5f3630150c50d09e16c0abf9501dea1e 2025-07-24T03:47:29.3596657Z * [new tag] trunk/7a41f207943cc6c88160d7a531fc57bdbe149253 -> trunk/7a41f207943cc6c88160d7a531fc57bdbe149253 2025-07-24T03:47:29.3809229Z * [new tag] trunk/7a48cc699006879a6ec185ac5bd4eaad0c0b7e36 -> trunk/7a48cc699006879a6ec185ac5bd4eaad0c0b7e36 2025-07-24T03:47:29.3810126Z * [new tag] trunk/7a92b5119654c07d15f5c0818e6ae804b01e836c -> trunk/7a92b5119654c07d15f5c0818e6ae804b01e836c 2025-07-24T03:47:29.3811187Z * [new tag] trunk/7ae7c1414354ad225c4a36b3228e30a2baf94923 -> trunk/7ae7c1414354ad225c4a36b3228e30a2baf94923 2025-07-24T03:47:29.3812162Z * [new tag] trunk/7afb834f939eccbb3262e646f0922eed070074a7 -> trunk/7afb834f939eccbb3262e646f0922eed070074a7 2025-07-24T03:47:29.3813002Z * [new tag] trunk/7b0118884e0855e4918af53d44c3fbfc185a1ee9 -> trunk/7b0118884e0855e4918af53d44c3fbfc185a1ee9 2025-07-24T03:47:29.3813837Z * [new tag] trunk/7b05bdd925f0f4b49e68662f9761fabaa27f2faf -> trunk/7b05bdd925f0f4b49e68662f9761fabaa27f2faf 2025-07-24T03:47:29.3814685Z * [new tag] trunk/7b392bac13a8007d1e0c6c789aa9bc515119faba -> trunk/7b392bac13a8007d1e0c6c789aa9bc515119faba 2025-07-24T03:47:29.3815514Z * [new tag] trunk/7b72e5b3ad989d02802909b64f322b2b7b69913b -> trunk/7b72e5b3ad989d02802909b64f322b2b7b69913b 2025-07-24T03:47:29.3816350Z * [new tag] trunk/7b7cd56f5e2a965ae8a48c69441dd4f58bf68ceb -> trunk/7b7cd56f5e2a965ae8a48c69441dd4f58bf68ceb 2025-07-24T03:47:29.3817185Z * [new tag] trunk/7be862ab8f2b9040b34c58e1b77ce74c2512f062 -> trunk/7be862ab8f2b9040b34c58e1b77ce74c2512f062 2025-07-24T03:47:29.3818029Z * [new tag] trunk/7c1f62782875a4ac70b96aed0e6c9525b6e4eaf3 -> trunk/7c1f62782875a4ac70b96aed0e6c9525b6e4eaf3 2025-07-24T03:47:29.3818863Z * [new tag] trunk/7c51619e7fbd346e2299255c468cc43bd69425d7 -> trunk/7c51619e7fbd346e2299255c468cc43bd69425d7 2025-07-24T03:47:29.3819683Z * [new tag] trunk/7caf6c801ddfaf556a3ca191173b50002c4261f4 -> trunk/7caf6c801ddfaf556a3ca191173b50002c4261f4 2025-07-24T03:47:29.3820535Z * [new tag] trunk/7cc1a9546c135f8e7635e0d38aa2bba797f8907d -> trunk/7cc1a9546c135f8e7635e0d38aa2bba797f8907d 2025-07-24T03:47:29.3821377Z * [new tag] trunk/7cc5d03dfc0077bc670c39abd101c72a04b2737f -> trunk/7cc5d03dfc0077bc670c39abd101c72a04b2737f 2025-07-24T03:47:29.3822226Z * [new tag] trunk/7cda4017ddda554752e89069ae205be5e8388f59 -> trunk/7cda4017ddda554752e89069ae205be5e8388f59 2025-07-24T03:47:29.3823073Z * [new tag] trunk/7cf31b4a426f3791af30159cea420687f347cd7a -> trunk/7cf31b4a426f3791af30159cea420687f347cd7a 2025-07-24T03:47:29.3823909Z * [new tag] trunk/7cf38d2a0521c5ca292a720bce00617be749a0e7 -> trunk/7cf38d2a0521c5ca292a720bce00617be749a0e7 2025-07-24T03:47:29.3824748Z * [new tag] trunk/7cfd054075b0713642fab8dc4313fc1e5d992599 -> trunk/7cfd054075b0713642fab8dc4313fc1e5d992599 2025-07-24T03:47:29.3825573Z * [new tag] trunk/7d1b3f599d6968a3efe70b7401310e3127949f13 -> trunk/7d1b3f599d6968a3efe70b7401310e3127949f13 2025-07-24T03:47:29.3826403Z * [new tag] trunk/7d296d5c19750cecd82e2b95f6fb0f8dd918282e -> trunk/7d296d5c19750cecd82e2b95f6fb0f8dd918282e 2025-07-24T03:47:29.3827260Z * [new tag] trunk/7d2ceaff21a6faf430470fc88642dad0e80386b4 -> trunk/7d2ceaff21a6faf430470fc88642dad0e80386b4 2025-07-24T03:47:29.3828120Z * [new tag] trunk/7d4228dbfd13d1ac8fac2c78c042dbb8314f042d -> trunk/7d4228dbfd13d1ac8fac2c78c042dbb8314f042d 2025-07-24T03:47:29.3828974Z * [new tag] trunk/7d6f3402380de06cee9d10f708e373e36aa9bd9c -> trunk/7d6f3402380de06cee9d10f708e373e36aa9bd9c 2025-07-24T03:47:29.3829819Z * [new tag] trunk/7dcc77e422dcf97ce35991a138ab635a5cb88731 -> trunk/7dcc77e422dcf97ce35991a138ab635a5cb88731 2025-07-24T03:47:29.3830654Z * [new tag] trunk/7e34f9c292940e16e06f0b85fce99c14af708569 -> trunk/7e34f9c292940e16e06f0b85fce99c14af708569 2025-07-24T03:47:29.3831478Z * [new tag] trunk/7e433d5f423248914c5e9838d3ea145db7964923 -> trunk/7e433d5f423248914c5e9838d3ea145db7964923 2025-07-24T03:47:29.3832314Z * [new tag] trunk/7e4c097b0752ae79a8b5dd1de21a51aaafba2ef9 -> trunk/7e4c097b0752ae79a8b5dd1de21a51aaafba2ef9 2025-07-24T03:47:29.3833236Z * [new tag] trunk/7e54c02a35b905e758497b856a1953eb009ba836 -> trunk/7e54c02a35b905e758497b856a1953eb009ba836 2025-07-24T03:47:29.3834141Z * [new tag] trunk/7e83d5084588bdb51151f869b53c92c07bc9f544 -> trunk/7e83d5084588bdb51151f869b53c92c07bc9f544 2025-07-24T03:47:29.3834981Z * [new tag] trunk/7ebbf2cae7e55d5f64a15a1e8912e55ff0a6c9a4 -> trunk/7ebbf2cae7e55d5f64a15a1e8912e55ff0a6c9a4 2025-07-24T03:47:29.3835835Z * [new tag] trunk/7f0cddfb55d426b414cf7b4482c6a371618b349c -> trunk/7f0cddfb55d426b414cf7b4482c6a371618b349c 2025-07-24T03:47:29.4101587Z * [new tag] trunk/7f14b42adf70196d82340c59a9981ffcadf0c53c -> trunk/7f14b42adf70196d82340c59a9981ffcadf0c53c 2025-07-24T03:47:29.4102486Z * [new tag] trunk/7f649ed4f83ed4c5c11a85042d3ca15d273bf57d -> trunk/7f649ed4f83ed4c5c11a85042d3ca15d273bf57d 2025-07-24T03:47:29.4103353Z * [new tag] trunk/7f6e7103a3aefd2d96b3cc6702be931a66b44977 -> trunk/7f6e7103a3aefd2d96b3cc6702be931a66b44977 2025-07-24T03:47:29.4104260Z * [new tag] trunk/7f9fc7e67ce9853a1bb4b16c901c708f78c1c5cd -> trunk/7f9fc7e67ce9853a1bb4b16c901c708f78c1c5cd 2025-07-24T03:47:29.4105112Z * [new tag] trunk/7fcad0231cb0ae9ba6a0004098b5ffd82c62858f -> trunk/7fcad0231cb0ae9ba6a0004098b5ffd82c62858f 2025-07-24T03:47:29.4105954Z * [new tag] trunk/805297981ae4e2aa08d133161477a477f5da274f -> trunk/805297981ae4e2aa08d133161477a477f5da274f 2025-07-24T03:47:29.4106758Z * [new tag] trunk/8088958793841191eba1faf98849904ee769bbfd -> trunk/8088958793841191eba1faf98849904ee769bbfd 2025-07-24T03:47:29.4107586Z * [new tag] trunk/80ac73c0575d860993beab58bb718e727c82bc22 -> trunk/80ac73c0575d860993beab58bb718e727c82bc22 2025-07-24T03:47:29.4108430Z * [new tag] trunk/80bcaa4195944d0f00f16abcbb702bde4d582d14 -> trunk/80bcaa4195944d0f00f16abcbb702bde4d582d14 2025-07-24T03:47:29.4109275Z * [new tag] trunk/80d89974c173c9d7a2c59fe9dfce2fe1301e2833 -> trunk/80d89974c173c9d7a2c59fe9dfce2fe1301e2833 2025-07-24T03:47:29.4110129Z * [new tag] trunk/8134684d44f3f9d09e775f3adc513bdef72245c9 -> trunk/8134684d44f3f9d09e775f3adc513bdef72245c9 2025-07-24T03:47:29.4111051Z * [new tag] trunk/813c76b98d5bffbffb087502c4f02a043b924d59 -> trunk/813c76b98d5bffbffb087502c4f02a043b924d59 2025-07-24T03:47:29.4111944Z * [new tag] trunk/8142a0286016e63a0e91b5667e1fb1a5e868ffd7 -> trunk/8142a0286016e63a0e91b5667e1fb1a5e868ffd7 2025-07-24T03:47:29.4112788Z * [new tag] trunk/8147c4a9044913e62ba3aab7f1eaaafead4f5930 -> trunk/8147c4a9044913e62ba3aab7f1eaaafead4f5930 2025-07-24T03:47:29.4113607Z * [new tag] trunk/8153340d1073c190ecf221e51abbd983286782a8 -> trunk/8153340d1073c190ecf221e51abbd983286782a8 2025-07-24T03:47:29.4114439Z * [new tag] trunk/815545f2dd6ade563cb1263f8bb7813f355edb2e -> trunk/815545f2dd6ade563cb1263f8bb7813f355edb2e 2025-07-24T03:47:29.4115310Z * [new tag] trunk/81759afed4fa4fa3a03f9ff671abe270679cc006 -> trunk/81759afed4fa4fa3a03f9ff671abe270679cc006 2025-07-24T03:47:29.4116157Z * [new tag] trunk/8186af5a26bc6a628f283c4791c8d68ef6fa1336 -> trunk/8186af5a26bc6a628f283c4791c8d68ef6fa1336 2025-07-24T03:47:29.4117011Z * [new tag] trunk/81b0b308cafae44339b8a123e8b1bec3bf9eb8ad -> trunk/81b0b308cafae44339b8a123e8b1bec3bf9eb8ad 2025-07-24T03:47:29.4117838Z * [new tag] trunk/81bf278537c081279a574157e1359ec7f0b65daf -> trunk/81bf278537c081279a574157e1359ec7f0b65daf 2025-07-24T03:47:29.4118647Z * [new tag] trunk/81c7445eb97f910ed89da9b11140d914651a1675 -> trunk/81c7445eb97f910ed89da9b11140d914651a1675 2025-07-24T03:47:29.4119471Z * [new tag] trunk/823e2238934fe65133741ad0ab9debaacfd4abe8 -> trunk/823e2238934fe65133741ad0ab9debaacfd4abe8 2025-07-24T03:47:29.4120284Z * [new tag] trunk/82672206b724a767dcb8c2541074449100de701b -> trunk/82672206b724a767dcb8c2541074449100de701b 2025-07-24T03:47:29.4122667Z * [new tag] trunk/826f12b829070e3d5bfd050f001b61aaf78e5447 -> trunk/826f12b829070e3d5bfd050f001b61aaf78e5447 2025-07-24T03:47:29.4123679Z * [new tag] trunk/82765dad16d7cda1ea382497dbf8c1ab2d07bfdd -> trunk/82765dad16d7cda1ea382497dbf8c1ab2d07bfdd 2025-07-24T03:47:29.4124535Z * [new tag] trunk/82a1ee1135b054d371d10081883b848ac7b7419f -> trunk/82a1ee1135b054d371d10081883b848ac7b7419f 2025-07-24T03:47:29.4125361Z * [new tag] trunk/82e6475d920991ef3be5d5637a72bf49313cc604 -> trunk/82e6475d920991ef3be5d5637a72bf49313cc604 2025-07-24T03:47:29.4126198Z * [new tag] trunk/82eefaedd98b63de8a87e34275af781f8eb177e1 -> trunk/82eefaedd98b63de8a87e34275af781f8eb177e1 2025-07-24T03:47:29.4127061Z * [new tag] trunk/82f8e04f27adeda0bb848aea7ddc61859ea899c7 -> trunk/82f8e04f27adeda0bb848aea7ddc61859ea899c7 2025-07-24T03:47:29.4127900Z * [new tag] trunk/82fb904140d258604a185154287b9c6fde047fc5 -> trunk/82fb904140d258604a185154287b9c6fde047fc5 2025-07-24T03:47:29.4128719Z * [new tag] trunk/830a335a7da5fec00395d440ba568749cb4e2e9e -> trunk/830a335a7da5fec00395d440ba568749cb4e2e9e 2025-07-24T03:47:29.4129559Z * [new tag] trunk/831c9010c7d7460fd78bc59b3fa28a65a0339e5d -> trunk/831c9010c7d7460fd78bc59b3fa28a65a0339e5d 2025-07-24T03:47:29.4130398Z * [new tag] trunk/832ab990c99545ab5c80eefbc30ab2e14c617a4b -> trunk/832ab990c99545ab5c80eefbc30ab2e14c617a4b 2025-07-24T03:47:29.4323962Z * [new tag] trunk/8347268edcf3cc4f638474d860450bb0cd7a9908 -> trunk/8347268edcf3cc4f638474d860450bb0cd7a9908 2025-07-24T03:47:29.4324850Z * [new tag] trunk/836bb1941b593063f002394c1de3ec382c2ce50e -> trunk/836bb1941b593063f002394c1de3ec382c2ce50e 2025-07-24T03:47:29.4325682Z * [new tag] trunk/83700b448874cac8e89356ab06292e4289577269 -> trunk/83700b448874cac8e89356ab06292e4289577269 2025-07-24T03:47:29.4326574Z * [new tag] trunk/8372d0986a495d41f41c5d7684f1428ff847c699 -> trunk/8372d0986a495d41f41c5d7684f1428ff847c699 2025-07-24T03:47:29.4327450Z * [new tag] trunk/838798425731e6c90df4a885e90ec03f18eea10b -> trunk/838798425731e6c90df4a885e90ec03f18eea10b 2025-07-24T03:47:29.4328252Z * [new tag] trunk/83d22256f84232c5440b25a08459c649a32b9a4f -> trunk/83d22256f84232c5440b25a08459c649a32b9a4f 2025-07-24T03:47:29.4329046Z * [new tag] trunk/84085229765698166f07c9220d5544023ab80d47 -> trunk/84085229765698166f07c9220d5544023ab80d47 2025-07-24T03:47:29.4329834Z * [new tag] trunk/8485f1950710d383fd8d0d772fc978933c6fc175 -> trunk/8485f1950710d383fd8d0d772fc978933c6fc175 2025-07-24T03:47:29.4330651Z * [new tag] trunk/84b77ec1280a56bece8408a2e0e179b9eb95e1e2 -> trunk/84b77ec1280a56bece8408a2e0e179b9eb95e1e2 2025-07-24T03:47:29.4331485Z * [new tag] trunk/84c14361c28e1b553ea405ef5020cf0a90468850 -> trunk/84c14361c28e1b553ea405ef5020cf0a90468850 2025-07-24T03:47:29.4332308Z * [new tag] trunk/84c588e5eada9e7921608065edc444a15c22cb1c -> trunk/84c588e5eada9e7921608065edc444a15c22cb1c 2025-07-24T03:47:29.4333251Z * [new tag] trunk/84dec060b79078e68dcb6be1e7f308dad05d00e2 -> trunk/84dec060b79078e68dcb6be1e7f308dad05d00e2 2025-07-24T03:47:29.4334093Z * [new tag] trunk/85111cd165f108ffabb4a90083d59d7a867ebd9f -> trunk/85111cd165f108ffabb4a90083d59d7a867ebd9f 2025-07-24T03:47:29.4334919Z * [new tag] trunk/851a6fa82df251fbc368f0284d941ce78f68e7b1 -> trunk/851a6fa82df251fbc368f0284d941ce78f68e7b1 2025-07-24T03:47:29.4335729Z * [new tag] trunk/851e953f68a614921c4315467209b741206774af -> trunk/851e953f68a614921c4315467209b741206774af 2025-07-24T03:47:29.4336517Z * [new tag] trunk/85320336799e38411d15c0e159b41248cda01218 -> trunk/85320336799e38411d15c0e159b41248cda01218 2025-07-24T03:47:29.4337505Z * [new tag] trunk/8554c8007ddaa8029e7e01bb1af12f358bf597c2 -> trunk/8554c8007ddaa8029e7e01bb1af12f358bf597c2 2025-07-24T03:47:29.4338464Z * [new tag] trunk/85857181ebca86e9c709e9922a9d9ef41a9c4ef9 -> trunk/85857181ebca86e9c709e9922a9d9ef41a9c4ef9 2025-07-24T03:47:29.4339395Z * [new tag] trunk/85df746892d9b0e87e7a5dfa78ef81a84aec6de0 -> trunk/85df746892d9b0e87e7a5dfa78ef81a84aec6de0 2025-07-24T03:47:29.4340240Z * [new tag] trunk/85ee2fb8c5c57b513526b0cc968ba13012167572 -> trunk/85ee2fb8c5c57b513526b0cc968ba13012167572 2025-07-24T03:47:29.4341094Z * [new tag] trunk/86251eff4069c468efebdb481dd18fe8d42856f0 -> trunk/86251eff4069c468efebdb481dd18fe8d42856f0 2025-07-24T03:47:29.4341927Z * [new tag] trunk/863327ae496471654344e1e04ccaa713a44a135d -> trunk/863327ae496471654344e1e04ccaa713a44a135d 2025-07-24T03:47:29.4342753Z * [new tag] trunk/86670b39fa3df63a652a9a06b59b73f92d70c392 -> trunk/86670b39fa3df63a652a9a06b59b73f92d70c392 2025-07-24T03:47:29.4343602Z * [new tag] trunk/86675af3f02e54fed4bbae68d6316274b93b373f -> trunk/86675af3f02e54fed4bbae68d6316274b93b373f 2025-07-24T03:47:29.4344426Z * [new tag] trunk/86996c15dc4294c400c3a552d1a9e8e90aa6c7f6 -> trunk/86996c15dc4294c400c3a552d1a9e8e90aa6c7f6 2025-07-24T03:47:29.4345360Z * [new tag] trunk/86ced144534c2c78460a2d0f1d9ed2ba048f2514 -> trunk/86ced144534c2c78460a2d0f1d9ed2ba048f2514 2025-07-24T03:47:29.4346188Z * [new tag] trunk/86d8af6a6cc648134289de89d393d0dce5b3a5f4 -> trunk/86d8af6a6cc648134289de89d393d0dce5b3a5f4 2025-07-24T03:47:29.4347038Z * [new tag] trunk/86dbc0ef677ba9f9a4ca41fe168775e49cb0f1ba -> trunk/86dbc0ef677ba9f9a4ca41fe168775e49cb0f1ba 2025-07-24T03:47:29.4347902Z * [new tag] trunk/86df3ff1f18da58e0ffc21eebfb8b498f60d6683 -> trunk/86df3ff1f18da58e0ffc21eebfb8b498f60d6683 2025-07-24T03:47:29.4348748Z * [new tag] trunk/86eaf452c330bd871262b7590ff8bd1bf432e2d7 -> trunk/86eaf452c330bd871262b7590ff8bd1bf432e2d7 2025-07-24T03:47:29.4349588Z * [new tag] trunk/87d615efab194482a00d241e4d9aebc513635cf5 -> trunk/87d615efab194482a00d241e4d9aebc513635cf5 2025-07-24T03:47:29.4350422Z * [new tag] trunk/8823138e47a3200c313f6bf2d21eb689d8150f39 -> trunk/8823138e47a3200c313f6bf2d21eb689d8150f39 2025-07-24T03:47:29.4629824Z * [new tag] trunk/8892b782a85b9de9f51334e65e009b3d59899b02 -> trunk/8892b782a85b9de9f51334e65e009b3d59899b02 2025-07-24T03:47:29.4630680Z * [new tag] trunk/88b9c285e0eb68134c5f834ceccdb99bc1d255d0 -> trunk/88b9c285e0eb68134c5f834ceccdb99bc1d255d0 2025-07-24T03:47:29.4631515Z * [new tag] trunk/88c6199db09372b6e2d55a5349ab545527842727 -> trunk/88c6199db09372b6e2d55a5349ab545527842727 2025-07-24T03:47:29.4632344Z * [new tag] trunk/88cd9f34b00c22e4edefa223490fcdd6c4ff272a -> trunk/88cd9f34b00c22e4edefa223490fcdd6c4ff272a 2025-07-24T03:47:29.4633198Z * [new tag] trunk/898179331e82e5ee1ff64737f508fd6a6da711f9 -> trunk/898179331e82e5ee1ff64737f508fd6a6da711f9 2025-07-24T03:47:29.4634020Z * [new tag] trunk/89850bbc073c4e27ca51b0b205742e1d316e7097 -> trunk/89850bbc073c4e27ca51b0b205742e1d316e7097 2025-07-24T03:47:29.4634847Z * [new tag] trunk/899d3d3e9eec4756a2e759f0203334dbe08f664e -> trunk/899d3d3e9eec4756a2e759f0203334dbe08f664e 2025-07-24T03:47:29.4635687Z * [new tag] trunk/89d842fec5229fff0df5342b2db121368d51e717 -> trunk/89d842fec5229fff0df5342b2db121368d51e717 2025-07-24T03:47:29.4636515Z * [new tag] trunk/8a2255130025abc80e03adaeb0b90d6463f2f916 -> trunk/8a2255130025abc80e03adaeb0b90d6463f2f916 2025-07-24T03:47:29.4637345Z * [new tag] trunk/8a396c56350ade97c18a6e13b3d97939f1eea075 -> trunk/8a396c56350ade97c18a6e13b3d97939f1eea075 2025-07-24T03:47:29.4638336Z * [new tag] trunk/8a47f9d03be0e0118a43443ff5f60db7be85102b -> trunk/8a47f9d03be0e0118a43443ff5f60db7be85102b 2025-07-24T03:47:29.4639898Z * [new tag] trunk/8a88c6e85abe345d95d970d424a0295cbc89b69c -> trunk/8a88c6e85abe345d95d970d424a0295cbc89b69c 2025-07-24T03:47:29.4640762Z * [new tag] trunk/8a8fac11318778aa5e4479b369b37fdb9e10ec17 -> trunk/8a8fac11318778aa5e4479b369b37fdb9e10ec17 2025-07-24T03:47:29.4641601Z * [new tag] trunk/8ad6197b466e91eb5fbbde2c76688d40fa472ac3 -> trunk/8ad6197b466e91eb5fbbde2c76688d40fa472ac3 2025-07-24T03:47:29.4642468Z * [new tag] trunk/8b0e0e4f2301f4aeb9fccf52cd2c6d8ac13da131 -> trunk/8b0e0e4f2301f4aeb9fccf52cd2c6d8ac13da131 2025-07-24T03:47:29.4643430Z * [new tag] trunk/8b2a6505728b5a12d170175d65f17a00aec50632 -> trunk/8b2a6505728b5a12d170175d65f17a00aec50632 2025-07-24T03:47:29.4644253Z * [new tag] trunk/8b68e5b1bb4a0014a64eab25c54b716968e109a9 -> trunk/8b68e5b1bb4a0014a64eab25c54b716968e109a9 2025-07-24T03:47:29.4645100Z * [new tag] trunk/8b8684466a11ae6ac27c85dbc6a02091dadac749 -> trunk/8b8684466a11ae6ac27c85dbc6a02091dadac749 2025-07-24T03:47:29.4645926Z * [new tag] trunk/8b97e4dd8cbe23101801043fe343d7350e527540 -> trunk/8b97e4dd8cbe23101801043fe343d7350e527540 2025-07-24T03:47:29.4646770Z * [new tag] trunk/8bda95228fbefa6ce204bf4da8b632d1516431bb -> trunk/8bda95228fbefa6ce204bf4da8b632d1516431bb 2025-07-24T03:47:29.4647638Z * [new tag] trunk/8c0df6fe1769c813f57da766528ff3cc4e56943e -> trunk/8c0df6fe1769c813f57da766528ff3cc4e56943e 2025-07-24T03:47:29.4648462Z * [new tag] trunk/8c2e45008282cf5202b72a0ecb0c2951438abeea -> trunk/8c2e45008282cf5202b72a0ecb0c2951438abeea 2025-07-24T03:47:29.4649284Z * [new tag] trunk/8c3f206457a1b9d75bc95a6c30a101135fcee329 -> trunk/8c3f206457a1b9d75bc95a6c30a101135fcee329 2025-07-24T03:47:29.4650119Z * [new tag] trunk/8c3f84908b085a26a6d8c7a90ce7c94ab2fe6f0a -> trunk/8c3f84908b085a26a6d8c7a90ce7c94ab2fe6f0a 2025-07-24T03:47:29.4650964Z * [new tag] trunk/8c5b070d1f7cf4a9b58b09a28a0aeb5fdca28679 -> trunk/8c5b070d1f7cf4a9b58b09a28a0aeb5fdca28679 2025-07-24T03:47:29.4651811Z * [new tag] trunk/8c928372b3560bb512e2cf98c94efd923caf5fa7 -> trunk/8c928372b3560bb512e2cf98c94efd923caf5fa7 2025-07-24T03:47:29.4652655Z * [new tag] trunk/8cb0c4a4da0e017834d63f3d7dc2ab29e0ad6424 -> trunk/8cb0c4a4da0e017834d63f3d7dc2ab29e0ad6424 2025-07-24T03:47:29.4653497Z * [new tag] trunk/8d070187e34d5474ae88cefe56754f729138756b -> trunk/8d070187e34d5474ae88cefe56754f729138756b 2025-07-24T03:47:29.4654331Z * [new tag] trunk/8d7ee0f4fb7e41e8a49a5a24b6686b2324c493ba -> trunk/8d7ee0f4fb7e41e8a49a5a24b6686b2324c493ba 2025-07-24T03:47:29.4655182Z * [new tag] trunk/8da774d81feace041ff39de4ba2ddd43086370d3 -> trunk/8da774d81feace041ff39de4ba2ddd43086370d3 2025-07-24T03:47:29.4656046Z * [new tag] trunk/8dcebaa7b088f9ae8c08975310e63c81a154153f -> trunk/8dcebaa7b088f9ae8c08975310e63c81a154153f 2025-07-24T03:47:29.4656891Z * [new tag] trunk/8dff457f42c9a20f9936d22773239df33cb48c9d -> trunk/8dff457f42c9a20f9936d22773239df33cb48c9d 2025-07-24T03:47:29.4657721Z * [new tag] trunk/8e02cd9c5ab151faad80e18e648c82a204fc3735 -> trunk/8e02cd9c5ab151faad80e18e648c82a204fc3735 2025-07-24T03:47:29.5837258Z * [new tag] trunk/8e57cdb746b4ab28865fdf01532f87b0d21700e9 -> trunk/8e57cdb746b4ab28865fdf01532f87b0d21700e9 2025-07-24T03:47:29.5838159Z * [new tag] trunk/8e8bbfc80340f0bf0a31a03d61b9b4dd72a40469 -> trunk/8e8bbfc80340f0bf0a31a03d61b9b4dd72a40469 2025-07-24T03:47:29.5839006Z * [new tag] trunk/8e8d4b13b0f6358e249a1e6fea9831b91b41b6d0 -> trunk/8e8d4b13b0f6358e249a1e6fea9831b91b41b6d0 2025-07-24T03:47:29.5840041Z * [new tag] trunk/8e99714204271a6c60866c10c4360166c24ae68e -> trunk/8e99714204271a6c60866c10c4360166c24ae68e 2025-07-24T03:47:29.5840994Z * [new tag] trunk/8eaa9f2701277f328d9d6aea1bfe7cba20792f7c -> trunk/8eaa9f2701277f328d9d6aea1bfe7cba20792f7c 2025-07-24T03:47:29.5841855Z * [new tag] trunk/8eb3c5b7a18205974fff0353b97e599ea3d0e2a4 -> trunk/8eb3c5b7a18205974fff0353b97e599ea3d0e2a4 2025-07-24T03:47:29.5842787Z * [new tag] trunk/8ed5e1844c77d952bcea89ca7d0225d876fec4e8 -> trunk/8ed5e1844c77d952bcea89ca7d0225d876fec4e8 2025-07-24T03:47:29.5843608Z * [new tag] trunk/8f02161d1012143263fdbca47ee62983448e2c7e -> trunk/8f02161d1012143263fdbca47ee62983448e2c7e 2025-07-24T03:47:29.5844442Z * [new tag] trunk/8f0998aafe5e9594ade50cd263d5c63a5aad9333 -> trunk/8f0998aafe5e9594ade50cd263d5c63a5aad9333 2025-07-24T03:47:29.5845279Z * [new tag] trunk/8f5f01bf19e01f4b74add7f3d558966152a398c7 -> trunk/8f5f01bf19e01f4b74add7f3d558966152a398c7 2025-07-24T03:47:29.5846133Z * [new tag] trunk/8f9a191db6efcf44510db87c8f6f6e96c67e9b11 -> trunk/8f9a191db6efcf44510db87c8f6f6e96c67e9b11 2025-07-24T03:47:29.5847048Z * [new tag] trunk/8fcda2c60d974e4970ce939bc828bece9903c304 -> trunk/8fcda2c60d974e4970ce939bc828bece9903c304 2025-07-24T03:47:29.5847938Z * [new tag] trunk/900fba4c073b121b6c9ce581ea27e25c13a354e5 -> trunk/900fba4c073b121b6c9ce581ea27e25c13a354e5 2025-07-24T03:47:29.5848762Z * [new tag] trunk/9056279f8159b052599a31b591a78da1acc4224c -> trunk/9056279f8159b052599a31b591a78da1acc4224c 2025-07-24T03:47:29.5849567Z * [new tag] trunk/905b0846903a0193ee651a44762e72c881f83950 -> trunk/905b0846903a0193ee651a44762e72c881f83950 2025-07-24T03:47:29.5850389Z * [new tag] trunk/905b194a2e3d1d1c9ec136dfc1b6be7e62ff4b2c -> trunk/905b194a2e3d1d1c9ec136dfc1b6be7e62ff4b2c 2025-07-24T03:47:29.5851213Z * [new tag] trunk/90618581e971d28ac6950305d72521af05ed3a42 -> trunk/90618581e971d28ac6950305d72521af05ed3a42 2025-07-24T03:47:29.5852023Z * [new tag] trunk/907aea032d2f709f26dec78b762481c4604cc186 -> trunk/907aea032d2f709f26dec78b762481c4604cc186 2025-07-24T03:47:29.5852845Z * [new tag] trunk/907d0931cc8868164c2890b0452eda5d4da49278 -> trunk/907d0931cc8868164c2890b0452eda5d4da49278 2025-07-24T03:47:29.5853681Z * [new tag] trunk/90b082e207bff79dd09d89cfef9be49de5c2ad83 -> trunk/90b082e207bff79dd09d89cfef9be49de5c2ad83 2025-07-24T03:47:29.5854515Z * [new tag] trunk/90b973a2e228f2a5e2c158e5f5cf8f59d9118fc8 -> trunk/90b973a2e228f2a5e2c158e5f5cf8f59d9118fc8 2025-07-24T03:47:29.5855344Z * [new tag] trunk/91602a92548d1dd351979cdc6e778c505c32c2b9 -> trunk/91602a92548d1dd351979cdc6e778c505c32c2b9 2025-07-24T03:47:29.5856176Z * [new tag] trunk/91b69deeb0f67a4b4ad7b36cdbb7d5f805b375a0 -> trunk/91b69deeb0f67a4b4ad7b36cdbb7d5f805b375a0 2025-07-24T03:47:29.5857049Z * [new tag] trunk/91ee9ee82d40bcc36afbe9fed8dfc2f8c19c7316 -> trunk/91ee9ee82d40bcc36afbe9fed8dfc2f8c19c7316 2025-07-24T03:47:29.5857893Z * [new tag] trunk/9222552572890fd7ff1d75884cc6a99a55ab90bc -> trunk/9222552572890fd7ff1d75884cc6a99a55ab90bc 2025-07-24T03:47:29.5858719Z * [new tag] trunk/92388bb2ab14dae7b63c2088de4d6add413d1c27 -> trunk/92388bb2ab14dae7b63c2088de4d6add413d1c27 2025-07-24T03:47:29.5859567Z * [new tag] trunk/92409b6c89fbfbd3caa79c81b1e3d9e7917d3bc7 -> trunk/92409b6c89fbfbd3caa79c81b1e3d9e7917d3bc7 2025-07-24T03:47:29.5860414Z * [new tag] trunk/924fc52e1842de756a7632e7b2777aeed77d60e5 -> trunk/924fc52e1842de756a7632e7b2777aeed77d60e5 2025-07-24T03:47:29.5861250Z * [new tag] trunk/925fbfca27580f2ec8d5f9bfd549b1fe2e665617 -> trunk/925fbfca27580f2ec8d5f9bfd549b1fe2e665617 2025-07-24T03:47:29.5862107Z * [new tag] trunk/9281625a9b5c8f3912626e933bcc2639e7cadd3e -> trunk/9281625a9b5c8f3912626e933bcc2639e7cadd3e 2025-07-24T03:47:29.5863055Z * [new tag] trunk/9285b8245c0ce17cd4e3b7e09e5f908693fb93ca -> trunk/9285b8245c0ce17cd4e3b7e09e5f908693fb93ca 2025-07-24T03:47:29.5863995Z * [new tag] trunk/92b7ed6d07fcd6af31cddc7b4276e626b023bd0b -> trunk/92b7ed6d07fcd6af31cddc7b4276e626b023bd0b 2025-07-24T03:47:29.6064779Z * [new tag] trunk/92c79f36dbbdb01e0aab6efb8f52df828e1046d5 -> trunk/92c79f36dbbdb01e0aab6efb8f52df828e1046d5 2025-07-24T03:47:29.6065635Z * [new tag] trunk/92ee5bd9f6bef38b3e3e81a37f4d5374395aeb40 -> trunk/92ee5bd9f6bef38b3e3e81a37f4d5374395aeb40 2025-07-24T03:47:29.6066482Z * [new tag] trunk/92f41ccc2651ab284118ec7087977ab455027eb0 -> trunk/92f41ccc2651ab284118ec7087977ab455027eb0 2025-07-24T03:47:29.6067323Z * [new tag] trunk/9308261a2afb69d807ea06508bb8582b066d9ccd -> trunk/9308261a2afb69d807ea06508bb8582b066d9ccd 2025-07-24T03:47:29.6068149Z * [new tag] trunk/930b575389f9233efddf70ea7b7804ed06af80d5 -> trunk/930b575389f9233efddf70ea7b7804ed06af80d5 2025-07-24T03:47:29.6069098Z * [new tag] trunk/9328a7fb589f6372ea478e47cdae8d124030f383 -> trunk/9328a7fb589f6372ea478e47cdae8d124030f383 2025-07-24T03:47:29.6069930Z * [new tag] trunk/9338d85d4594f981c198bcbb7edfccf6b92643be -> trunk/9338d85d4594f981c198bcbb7edfccf6b92643be 2025-07-24T03:47:29.6070773Z * [new tag] trunk/9345279c6ebdbad95b7b53bc2cb6f63a4e57b2cc -> trunk/9345279c6ebdbad95b7b53bc2cb6f63a4e57b2cc 2025-07-24T03:47:29.6071602Z * [new tag] trunk/937529f0b31788726e53890f5601886c64dc9eec -> trunk/937529f0b31788726e53890f5601886c64dc9eec 2025-07-24T03:47:29.6072416Z * [new tag] trunk/938515fa75f4e9d28c62a2aaa3e0e5428c867c36 -> trunk/938515fa75f4e9d28c62a2aaa3e0e5428c867c36 2025-07-24T03:47:29.6073240Z * [new tag] trunk/93854e83b7bfde94090662e9b372d8bf44ccf5d4 -> trunk/93854e83b7bfde94090662e9b372d8bf44ccf5d4 2025-07-24T03:47:29.6074080Z * [new tag] trunk/944a140e90389eced1ec38e14cb4345811ed0b1a -> trunk/944a140e90389eced1ec38e14cb4345811ed0b1a 2025-07-24T03:47:29.6074972Z * [new tag] trunk/9462106b7e41d9a24308255e15613b464ab086ce -> trunk/9462106b7e41d9a24308255e15613b464ab086ce 2025-07-24T03:47:29.6075772Z * [new tag] trunk/94716db22214912896cf680dc3eb88574f611a42 -> trunk/94716db22214912896cf680dc3eb88574f611a42 2025-07-24T03:47:29.6076576Z * [new tag] trunk/94763f5ca75330206777f3c1b36ff124706bd9d9 -> trunk/94763f5ca75330206777f3c1b36ff124706bd9d9 2025-07-24T03:47:29.6077401Z * [new tag] trunk/9498d95b9c07bb140b7548aae8b19cb2f6b96fce -> trunk/9498d95b9c07bb140b7548aae8b19cb2f6b96fce 2025-07-24T03:47:29.6078225Z * [new tag] trunk/94995eba07763890b86465d53c4647c089f48d0a -> trunk/94995eba07763890b86465d53c4647c089f48d0a 2025-07-24T03:47:29.6079047Z * [new tag] trunk/94ae61533719defecb08d11f63c5d9fe9a826c00 -> trunk/94ae61533719defecb08d11f63c5d9fe9a826c00 2025-07-24T03:47:29.6079888Z * [new tag] trunk/94c746bb43484787a3f5bbdc2f72bd4fb02f2964 -> trunk/94c746bb43484787a3f5bbdc2f72bd4fb02f2964 2025-07-24T03:47:29.6080734Z * [new tag] trunk/94d7f0c1ef9a4cb4db0eb5d6b1ffc55941cbeab1 -> trunk/94d7f0c1ef9a4cb4db0eb5d6b1ffc55941cbeab1 2025-07-24T03:47:29.6081603Z * [new tag] trunk/94da4523ec4362dabbf9f08f9f2efce79ab70b73 -> trunk/94da4523ec4362dabbf9f08f9f2efce79ab70b73 2025-07-24T03:47:29.6082448Z * [new tag] trunk/94f8679019ea4b1272f1ad58ad7cad87147cf5a7 -> trunk/94f8679019ea4b1272f1ad58ad7cad87147cf5a7 2025-07-24T03:47:29.6083348Z * [new tag] trunk/9508d73307b4bc1fe453677526a096e5e10a7575 -> trunk/9508d73307b4bc1fe453677526a096e5e10a7575 2025-07-24T03:47:29.6084187Z * [new tag] trunk/9513b9d03fa8950ba5d2b59cc0b1a1aab3a41c06 -> trunk/9513b9d03fa8950ba5d2b59cc0b1a1aab3a41c06 2025-07-24T03:47:29.6085172Z * [new tag] trunk/95448b2ce61c3995ecdae0bfec655a5ef81a117d -> trunk/95448b2ce61c3995ecdae0bfec655a5ef81a117d 2025-07-24T03:47:29.6086085Z * [new tag] trunk/954ce949500746763a487a8ed9800035e7cd87d4 -> trunk/954ce949500746763a487a8ed9800035e7cd87d4 2025-07-24T03:47:29.6086920Z * [new tag] trunk/95a7d1912a86d857a9f4adb55b73b57518ce1e7b -> trunk/95a7d1912a86d857a9f4adb55b73b57518ce1e7b 2025-07-24T03:47:29.6087742Z * [new tag] trunk/95b658427df55f36f638186de9ed4115d4d99941 -> trunk/95b658427df55f36f638186de9ed4115d4d99941 2025-07-24T03:47:29.6088576Z * [new tag] trunk/95bc3da9f8555897d5d2b90f75385e3b2ff7bc43 -> trunk/95bc3da9f8555897d5d2b90f75385e3b2ff7bc43 2025-07-24T03:47:29.6089403Z * [new tag] trunk/95cb42c45d17f532222611e8028c9307622cc3c9 -> trunk/95cb42c45d17f532222611e8028c9307622cc3c9 2025-07-24T03:47:29.6090205Z * [new tag] trunk/9620994067b18e846a097d1e99af85ec2426ef0a -> trunk/9620994067b18e846a097d1e99af85ec2426ef0a 2025-07-24T03:47:29.6091039Z * [new tag] trunk/9636e2cfd3e995ef977f670ad47e8e895296d992 -> trunk/9636e2cfd3e995ef977f670ad47e8e895296d992 2025-07-24T03:47:29.6091882Z * [new tag] trunk/9642c7568967ab424c5d0e04ef2cd1e82a54b5f8 -> trunk/9642c7568967ab424c5d0e04ef2cd1e82a54b5f8 2025-07-24T03:47:29.6366457Z * [new tag] trunk/9656251bb1bee12c0e2f21828dc14a4c3c06afdd -> trunk/9656251bb1bee12c0e2f21828dc14a4c3c06afdd 2025-07-24T03:47:29.6367410Z * [new tag] trunk/9665702c64af633ab23499228d552a49660a9fa2 -> trunk/9665702c64af633ab23499228d552a49660a9fa2 2025-07-24T03:47:29.6368276Z * [new tag] trunk/96897e721b76f3b72aa406696165711d74f8d260 -> trunk/96897e721b76f3b72aa406696165711d74f8d260 2025-07-24T03:47:29.6369113Z * [new tag] trunk/968f90ce7344223c788eeba59200cc22b9f94dcd -> trunk/968f90ce7344223c788eeba59200cc22b9f94dcd 2025-07-24T03:47:29.6369968Z * [new tag] trunk/96d082d06bda98addd4ad7903d315477404dc272 -> trunk/96d082d06bda98addd4ad7903d315477404dc272 2025-07-24T03:47:29.6370809Z * [new tag] trunk/96df86641048a282a4622ac93d19e4c7b6c38b8e -> trunk/96df86641048a282a4622ac93d19e4c7b6c38b8e 2025-07-24T03:47:29.6371674Z * [new tag] trunk/96e4c95cd8d03037765ffd4b8fcdaa06c4b2c51c -> trunk/96e4c95cd8d03037765ffd4b8fcdaa06c4b2c51c 2025-07-24T03:47:29.6372512Z * [new tag] trunk/9768d393fa62df8a508136f5b6634bf955d8365d -> trunk/9768d393fa62df8a508136f5b6634bf955d8365d 2025-07-24T03:47:29.6373393Z * [new tag] trunk/977abe786d907c1ff76528a550e3d53c9f3b1044 -> trunk/977abe786d907c1ff76528a550e3d53c9f3b1044 2025-07-24T03:47:29.6374297Z * [new tag] trunk/97d7dc197f9eec99a3e2a163a4fa78f97e6b75a8 -> trunk/97d7dc197f9eec99a3e2a163a4fa78f97e6b75a8 2025-07-24T03:47:29.6375140Z * [new tag] trunk/981c99fdffd9a4f510e4b89245d16aa427ee0978 -> trunk/981c99fdffd9a4f510e4b89245d16aa427ee0978 2025-07-24T03:47:29.6375983Z * [new tag] trunk/987314aa96fdf8aa051e3643b26f4209b7fe166d -> trunk/987314aa96fdf8aa051e3643b26f4209b7fe166d 2025-07-24T03:47:29.6376824Z * [new tag] trunk/9894d43b6cba4bd30271c8dc065e5f3af4b6859d -> trunk/9894d43b6cba4bd30271c8dc065e5f3af4b6859d 2025-07-24T03:47:29.6377662Z * [new tag] trunk/98a34e8d4b4d73504afbf49f70284221e6303314 -> trunk/98a34e8d4b4d73504afbf49f70284221e6303314 2025-07-24T03:47:29.6378505Z * [new tag] trunk/98bb0c0e7888a84de1d22c4952de69a5d5b1a0b3 -> trunk/98bb0c0e7888a84de1d22c4952de69a5d5b1a0b3 2025-07-24T03:47:29.6404953Z * [new tag] trunk/9905ed616a65a3195c7ebc2bd44301c2c442f050 -> trunk/9905ed616a65a3195c7ebc2bd44301c2c442f050 2025-07-24T03:47:29.6405978Z * [new tag] trunk/9944cd0949e96d656746de6df0cb3a5a954597e4 -> trunk/9944cd0949e96d656746de6df0cb3a5a954597e4 2025-07-24T03:47:29.6407018Z * [new tag] trunk/996206e66fcafff25d0af5177497e8f792000869 -> trunk/996206e66fcafff25d0af5177497e8f792000869 2025-07-24T03:47:29.6407960Z * [new tag] trunk/9963845a4e55a3e8d35ea49deb8f8c1f6c53cb74 -> trunk/9963845a4e55a3e8d35ea49deb8f8c1f6c53cb74 2025-07-24T03:47:29.6408866Z * [new tag] trunk/9968c854b6a38857d05fb1da7bea797fbf23c880 -> trunk/9968c854b6a38857d05fb1da7bea797fbf23c880 2025-07-24T03:47:29.6409755Z * [new tag] trunk/9968edd00256fdb47e2e0129df918c5b23c06419 -> trunk/9968edd00256fdb47e2e0129df918c5b23c06419 2025-07-24T03:47:29.6410607Z * [new tag] trunk/99c1a6bdd98ecb1f9b2fb8310bcd891c8c6adf57 -> trunk/99c1a6bdd98ecb1f9b2fb8310bcd891c8c6adf57 2025-07-24T03:47:29.6411477Z * [new tag] trunk/99e99d5bfe57eddfce23f7dc9ede016cb1393c52 -> trunk/99e99d5bfe57eddfce23f7dc9ede016cb1393c52 2025-07-24T03:47:29.6412315Z * [new tag] trunk/9a28e23d9792551d5a070cec8c67d0e499358825 -> trunk/9a28e23d9792551d5a070cec8c67d0e499358825 2025-07-24T03:47:29.6413144Z * [new tag] trunk/9a2c669425379eb264f896390b8fcd8d3f2ce959 -> trunk/9a2c669425379eb264f896390b8fcd8d3f2ce959 2025-07-24T03:47:29.6413981Z * [new tag] trunk/9a42f01586267b52fe303c0c1b7a71d50cc4178e -> trunk/9a42f01586267b52fe303c0c1b7a71d50cc4178e 2025-07-24T03:47:29.6414866Z * [new tag] trunk/9a4c08ddfc9b43c07cd16355277d359dfcef50d6 -> trunk/9a4c08ddfc9b43c07cd16355277d359dfcef50d6 2025-07-24T03:47:29.6415760Z * [new tag] trunk/9a5278225fc5e7b46d54a65ae1a3f049ee49824f -> trunk/9a5278225fc5e7b46d54a65ae1a3f049ee49824f 2025-07-24T03:47:29.6416600Z * [new tag] trunk/9a5c59368d46d3793e09b72a2782ef4d12e74392 -> trunk/9a5c59368d46d3793e09b72a2782ef4d12e74392 2025-07-24T03:47:29.6417431Z * [new tag] trunk/9a7c2f1f64b1dba1df9ca12249ef659394ffe13d -> trunk/9a7c2f1f64b1dba1df9ca12249ef659394ffe13d 2025-07-24T03:47:29.6418277Z * [new tag] trunk/9aaa184105b2f436b5834187c4c004c02e438491 -> trunk/9aaa184105b2f436b5834187c4c004c02e438491 2025-07-24T03:47:29.6419122Z * [new tag] trunk/9afee0fa969fd4ebab86a2cbad3217c8bade156e -> trunk/9afee0fa969fd4ebab86a2cbad3217c8bade156e 2025-07-24T03:47:29.7715878Z * [new tag] trunk/9b0013c6bb98d7161e921d03be76c81bbc0eebef -> trunk/9b0013c6bb98d7161e921d03be76c81bbc0eebef 2025-07-24T03:47:29.7716802Z * [new tag] trunk/9b122aab5dcd419b96d4a1137c45e99bde94f14e -> trunk/9b122aab5dcd419b96d4a1137c45e99bde94f14e 2025-07-24T03:47:29.7717669Z * [new tag] trunk/9b498d3bb28b8e3411ce464dd2755c5b96d92c8f -> trunk/9b498d3bb28b8e3411ce464dd2755c5b96d92c8f 2025-07-24T03:47:29.7718523Z * [new tag] trunk/9b4a748e29a720d0fade7e1298a68cc36cfd5f5e -> trunk/9b4a748e29a720d0fade7e1298a68cc36cfd5f5e 2025-07-24T03:47:29.7719387Z * [new tag] trunk/9b4d938f04c95cebe0fbd96974f64c935567e039 -> trunk/9b4d938f04c95cebe0fbd96974f64c935567e039 2025-07-24T03:47:29.7720262Z * [new tag] trunk/9b4db093cb63555654c868ba9e3ab68ef4c722e5 -> trunk/9b4db093cb63555654c868ba9e3ab68ef4c722e5 2025-07-24T03:47:29.7721123Z * [new tag] trunk/9bae2fcf990cd51891218895ac1b3cfe70ffc2c3 -> trunk/9bae2fcf990cd51891218895ac1b3cfe70ffc2c3 2025-07-24T03:47:29.7721976Z * [new tag] trunk/9bd0830ed8d3e753afc3e9fff2553f4c5871f6f9 -> trunk/9bd0830ed8d3e753afc3e9fff2553f4c5871f6f9 2025-07-24T03:47:29.7722892Z * [new tag] trunk/9bd42c15707a4b410ee005d5916e882a7db432bb -> trunk/9bd42c15707a4b410ee005d5916e882a7db432bb 2025-07-24T03:47:29.7723735Z * [new tag] trunk/9bdf87e8918b9a3f78d7bcb8a770c19f7c82ac15 -> trunk/9bdf87e8918b9a3f78d7bcb8a770c19f7c82ac15 2025-07-24T03:47:29.7724574Z * [new tag] trunk/9be5860bc34b643abd02ac5b5a89d820efcdfbc9 -> trunk/9be5860bc34b643abd02ac5b5a89d820efcdfbc9 2025-07-24T03:47:29.7725633Z * [new tag] trunk/9bf41633d76f7816fdcc0b7ae22a42dc91821004 -> trunk/9bf41633d76f7816fdcc0b7ae22a42dc91821004 2025-07-24T03:47:29.7726584Z * [new tag] trunk/9bf6593e96b711641606e6008a4936173fd3b458 -> trunk/9bf6593e96b711641606e6008a4936173fd3b458 2025-07-24T03:47:29.7727428Z * [new tag] trunk/9bfefda296d2df31ce9bb90410d91d8f18127545 -> trunk/9bfefda296d2df31ce9bb90410d91d8f18127545 2025-07-24T03:47:29.7728284Z * [new tag] trunk/9c189ed29a2cfa08ff357cb5042ff8c34f07d668 -> trunk/9c189ed29a2cfa08ff357cb5042ff8c34f07d668 2025-07-24T03:47:29.7729122Z * [new tag] trunk/9c39bc24807a5843f8affdf56bd71836760dc554 -> trunk/9c39bc24807a5843f8affdf56bd71836760dc554 2025-07-24T03:47:29.7729974Z * [new tag] trunk/9ca080db87f66becb2bb2c61598c0beabae73d5f -> trunk/9ca080db87f66becb2bb2c61598c0beabae73d5f 2025-07-24T03:47:29.7730854Z * [new tag] trunk/9cced33c7c9cdfc68e9ed85c4b45bdfd05dac92d -> trunk/9cced33c7c9cdfc68e9ed85c4b45bdfd05dac92d 2025-07-24T03:47:29.7731730Z * [new tag] trunk/9cd521de4dad5fc6bca94e253a9334b9a521acb0 -> trunk/9cd521de4dad5fc6bca94e253a9334b9a521acb0 2025-07-24T03:47:29.7732593Z * [new tag] trunk/9d175bc7e615b062d8ea57df6ca17edb8a6b951f -> trunk/9d175bc7e615b062d8ea57df6ca17edb8a6b951f 2025-07-24T03:47:29.7733453Z * [new tag] trunk/9d184bda2f190a3ba72a4a0d95e1fde26d6bfc08 -> trunk/9d184bda2f190a3ba72a4a0d95e1fde26d6bfc08 2025-07-24T03:47:29.7734286Z * [new tag] trunk/9d2d2270037c5a014767cdfa531863da8062bf9d -> trunk/9d2d2270037c5a014767cdfa531863da8062bf9d 2025-07-24T03:47:29.7735109Z * [new tag] trunk/9d59b516e9b3026948918e3ff8c2ef55a33d13ad -> trunk/9d59b516e9b3026948918e3ff8c2ef55a33d13ad 2025-07-24T03:47:29.7735920Z * [new tag] trunk/9d677389cb5eb75d423860c55519b522961a9195 -> trunk/9d677389cb5eb75d423860c55519b522961a9195 2025-07-24T03:47:29.7736764Z * [new tag] trunk/9de23d0c29dfac8dc0f6f234bdbcd85a6375fa81 -> trunk/9de23d0c29dfac8dc0f6f234bdbcd85a6375fa81 2025-07-24T03:47:29.7737610Z * [new tag] trunk/9df0176408518b30ac172837bd697c9d19b19a98 -> trunk/9df0176408518b30ac172837bd697c9d19b19a98 2025-07-24T03:47:29.7738440Z * [new tag] trunk/9df0f565972a8a034fd77d65aff2c53e6e9856d1 -> trunk/9df0f565972a8a034fd77d65aff2c53e6e9856d1 2025-07-24T03:47:29.7739295Z * [new tag] trunk/9df2e8020f190bdad02258aff2b2f88f7db3dcab -> trunk/9df2e8020f190bdad02258aff2b2f88f7db3dcab 2025-07-24T03:47:29.7740125Z * [new tag] trunk/9e0473b56621162bd85e94943a516be4727e5651 -> trunk/9e0473b56621162bd85e94943a516be4727e5651 2025-07-24T03:47:29.7740930Z * [new tag] trunk/9e132b770e06c2399f827d3d1963fe036e9744e6 -> trunk/9e132b770e06c2399f827d3d1963fe036e9744e6 2025-07-24T03:47:29.7741765Z * [new tag] trunk/9e5f4a844c0aebf964a435094005c92713fbe99a -> trunk/9e5f4a844c0aebf964a435094005c92713fbe99a 2025-07-24T03:47:29.7742592Z * [new tag] trunk/9e88d6c857fd2b276427f4527130e2ecb7ed731e -> trunk/9e88d6c857fd2b276427f4527130e2ecb7ed731e 2025-07-24T03:47:29.7743410Z * [new tag] trunk/9e9484d022f8d65e2066b5683b75c84ba0f36332 -> trunk/9e9484d022f8d65e2066b5683b75c84ba0f36332 2025-07-24T03:47:29.7989431Z * [new tag] trunk/9ed0060225a7b78c60c42f29be94444b537edd4a -> trunk/9ed0060225a7b78c60c42f29be94444b537edd4a 2025-07-24T03:47:29.7990320Z * [new tag] trunk/9f18482d41227df3cf2248dfa54bd6601e61e1ca -> trunk/9f18482d41227df3cf2248dfa54bd6601e61e1ca 2025-07-24T03:47:29.7991168Z * [new tag] trunk/9f37cce69334bccebf4b21503f0047d0c0bb320c -> trunk/9f37cce69334bccebf4b21503f0047d0c0bb320c 2025-07-24T03:47:29.7992156Z * [new tag] trunk/9f5153b1a495b3b2b7ad9f22a064fe4074d742aa -> trunk/9f5153b1a495b3b2b7ad9f22a064fe4074d742aa 2025-07-24T03:47:29.7992984Z * [new tag] trunk/9f5276dc07c788533af8945b1605df47a33313e7 -> trunk/9f5276dc07c788533af8945b1605df47a33313e7 2025-07-24T03:47:29.7994067Z * [new tag] trunk/9fe2d156a9f81d67e248c0edaf7feee1a8d6c4d5 -> trunk/9fe2d156a9f81d67e248c0edaf7feee1a8d6c4d5 2025-07-24T03:47:29.7995069Z * [new tag] trunk/9fed2addedb42da86b657165fe14eadc911232cf -> trunk/9fed2addedb42da86b657165fe14eadc911232cf 2025-07-24T03:47:29.7995925Z * [new tag] trunk/a00442421a14448f95fc28790325f941662d97f2 -> trunk/a00442421a14448f95fc28790325f941662d97f2 2025-07-24T03:47:29.7996759Z * [new tag] trunk/a00a697c1748937b0c6d13508ff76b8af4957d8a -> trunk/a00a697c1748937b0c6d13508ff76b8af4957d8a 2025-07-24T03:47:29.7997670Z * [new tag] trunk/a00cd8cf252a0b061f2eef6b5b42ae967acf5f64 -> trunk/a00cd8cf252a0b061f2eef6b5b42ae967acf5f64 2025-07-24T03:47:29.7998600Z * [new tag] trunk/a0308edb6cdfd8983e80a499890d9f320556e844 -> trunk/a0308edb6cdfd8983e80a499890d9f320556e844 2025-07-24T03:47:29.7999473Z * [new tag] trunk/a04a13c44908fe0ace4f76a228d045dbf5c015bc -> trunk/a04a13c44908fe0ace4f76a228d045dbf5c015bc 2025-07-24T03:47:29.8000321Z * [new tag] trunk/a04bd11895f7523f8b210dc42bbc064cb2ca06e8 -> trunk/a04bd11895f7523f8b210dc42bbc064cb2ca06e8 2025-07-24T03:47:29.8001175Z * [new tag] trunk/a0e0abd0379ed403adc926d3cc5459fa35aff0a0 -> trunk/a0e0abd0379ed403adc926d3cc5459fa35aff0a0 2025-07-24T03:47:29.8002016Z * [new tag] trunk/a10024d7dea47c52469059a47efe376eb20adca0 -> trunk/a10024d7dea47c52469059a47efe376eb20adca0 2025-07-24T03:47:29.8002953Z * [new tag] trunk/a1057cda31fe890d237fe9a2e6b3314cd4be3439 -> trunk/a1057cda31fe890d237fe9a2e6b3314cd4be3439 2025-07-24T03:47:29.8003934Z * [new tag] trunk/a1257446f8eaf81eb758e89b4e784bed47b9c733 -> trunk/a1257446f8eaf81eb758e89b4e784bed47b9c733 2025-07-24T03:47:29.8004765Z * [new tag] trunk/a1282b18239204b0344884ebd232b33b2d8b748f -> trunk/a1282b18239204b0344884ebd232b33b2d8b748f 2025-07-24T03:47:29.8005615Z * [new tag] trunk/a14f427db68e54500ef4cd9ed34cb9537263bb74 -> trunk/a14f427db68e54500ef4cd9ed34cb9537263bb74 2025-07-24T03:47:29.8006489Z * [new tag] trunk/a155f742adc5f5bf169ff9ac8bf2e98a22ddcacb -> trunk/a155f742adc5f5bf169ff9ac8bf2e98a22ddcacb 2025-07-24T03:47:29.8007376Z * [new tag] trunk/a1cfe7f1df3ddf72f1cf361cef96c69fc4a91a2b -> trunk/a1cfe7f1df3ddf72f1cf361cef96c69fc4a91a2b 2025-07-24T03:47:29.8008256Z * [new tag] trunk/a1dad2f2d2c082e2a3784c3d585ef0204b7ccf75 -> trunk/a1dad2f2d2c082e2a3784c3d585ef0204b7ccf75 2025-07-24T03:47:29.8009138Z * [new tag] trunk/a1e4f1f98a0b9596fe52aaf2f85b0778498d5f49 -> trunk/a1e4f1f98a0b9596fe52aaf2f85b0778498d5f49 2025-07-24T03:47:29.8010063Z * [new tag] trunk/a205e8fd7357cf5c2b95eb4bec7c8ff7b5c41651 -> trunk/a205e8fd7357cf5c2b95eb4bec7c8ff7b5c41651 2025-07-24T03:47:29.8010918Z * [new tag] trunk/a21806f0386c2671fc11ae37fe2fe96c4aeb37d9 -> trunk/a21806f0386c2671fc11ae37fe2fe96c4aeb37d9 2025-07-24T03:47:29.8011745Z * [new tag] trunk/a23f4471b952d8cd630b860639e0aaa9be957d60 -> trunk/a23f4471b952d8cd630b860639e0aaa9be957d60 2025-07-24T03:47:29.8012602Z * [new tag] trunk/a24afbff3f44399ac9513addce6bd50cacab22d2 -> trunk/a24afbff3f44399ac9513addce6bd50cacab22d2 2025-07-24T03:47:29.8013463Z * [new tag] trunk/a24ce67deedab025531660ddb44c148bb066edf8 -> trunk/a24ce67deedab025531660ddb44c148bb066edf8 2025-07-24T03:47:29.8014316Z * [new tag] trunk/a25d1443fae79a9984eaa44e973b2f5645c85da8 -> trunk/a25d1443fae79a9984eaa44e973b2f5645c85da8 2025-07-24T03:47:29.8015213Z * [new tag] trunk/a26bf3892778ca7cc457c772a1f5194c11b6f33c -> trunk/a26bf3892778ca7cc457c772a1f5194c11b6f33c 2025-07-24T03:47:29.8016108Z * [new tag] trunk/a28e6ae38f1e1de33ecf48b679ff1eda71fc2efc -> trunk/a28e6ae38f1e1de33ecf48b679ff1eda71fc2efc 2025-07-24T03:47:29.8017116Z * [new tag] trunk/a2a75be0f8d680cf1dc36c50f34f225b0c7c4d6a -> trunk/a2a75be0f8d680cf1dc36c50f34f225b0c7c4d6a 2025-07-24T03:47:29.8018065Z * [new tag] trunk/a2ad16be72bf989c01b96c4c56b1c108a71c087f -> trunk/a2ad16be72bf989c01b96c4c56b1c108a71c087f 2025-07-24T03:47:29.8224274Z * [new tag] trunk/a2b0b2698d5b953861b2e4f3cdee11136f07bd3b -> trunk/a2b0b2698d5b953861b2e4f3cdee11136f07bd3b 2025-07-24T03:47:29.8225175Z * [new tag] trunk/a3098a74d494020dbb906c05ef047013e1921662 -> trunk/a3098a74d494020dbb906c05ef047013e1921662 2025-07-24T03:47:29.8226000Z * [new tag] trunk/a317c63d1b70a7989a4cab09394691fb7a3d8323 -> trunk/a317c63d1b70a7989a4cab09394691fb7a3d8323 2025-07-24T03:47:29.8226842Z * [new tag] trunk/a3396a9b855cc759d6669729dff3e0dc379bc79f -> trunk/a3396a9b855cc759d6669729dff3e0dc379bc79f 2025-07-24T03:47:29.8227720Z * [new tag] trunk/a355158fcba807fda1e47e5ee42babdbcf447947 -> trunk/a355158fcba807fda1e47e5ee42babdbcf447947 2025-07-24T03:47:29.8228583Z * [new tag] trunk/a35b3a9b95bbe0703de33802162a83cb7970ddc0 -> trunk/a35b3a9b95bbe0703de33802162a83cb7970ddc0 2025-07-24T03:47:29.8229423Z * [new tag] trunk/a369350065493109d1abfbb994695777ab11bcf4 -> trunk/a369350065493109d1abfbb994695777ab11bcf4 2025-07-24T03:47:29.8230242Z * [new tag] trunk/a38f433be2e94a64b095a44ba39879d02d0c2316 -> trunk/a38f433be2e94a64b095a44ba39879d02d0c2316 2025-07-24T03:47:29.8231101Z * [new tag] trunk/a3aacd6cb2ee581b7bdb45cdbe6f70695c04f4ab -> trunk/a3aacd6cb2ee581b7bdb45cdbe6f70695c04f4ab 2025-07-24T03:47:29.8231964Z * [new tag] trunk/a3ec6d64b24fdbd61164240f3bcd8530434812b5 -> trunk/a3ec6d64b24fdbd61164240f3bcd8530434812b5 2025-07-24T03:47:29.8232785Z * [new tag] trunk/a46ea8a364e528828c4369d58d53802291f0b49b -> trunk/a46ea8a364e528828c4369d58d53802291f0b49b 2025-07-24T03:47:29.8233626Z * [new tag] trunk/a47ca4fc746a663c0e97d55a87815d0965d0a7e9 -> trunk/a47ca4fc746a663c0e97d55a87815d0965d0a7e9 2025-07-24T03:47:29.8234596Z * [new tag] trunk/a4b59498c5222a02a706fa1e1308a6035d65feab -> trunk/a4b59498c5222a02a706fa1e1308a6035d65feab 2025-07-24T03:47:29.8235441Z * [new tag] trunk/a4c7e7f98373ad8f309e419c6f98b0134933dcda -> trunk/a4c7e7f98373ad8f309e419c6f98b0134933dcda 2025-07-24T03:47:29.8236283Z * [new tag] trunk/a4d753295ee5662056bdfd1b00fa242071ac7125 -> trunk/a4d753295ee5662056bdfd1b00fa242071ac7125 2025-07-24T03:47:29.8237118Z * [new tag] trunk/a4ea242edc8626250e54a62aa073cba0e5322af2 -> trunk/a4ea242edc8626250e54a62aa073cba0e5322af2 2025-07-24T03:47:29.8237967Z * [new tag] trunk/a4ec381302f8acd279033707b182bed30ffd2091 -> trunk/a4ec381302f8acd279033707b182bed30ffd2091 2025-07-24T03:47:29.8238784Z * [new tag] trunk/a527e816935957a164d74dd7c5069310b2857695 -> trunk/a527e816935957a164d74dd7c5069310b2857695 2025-07-24T03:47:29.8239622Z * [new tag] trunk/a529a5daf5d348f4f8dac4fcd85521153b6a3d4d -> trunk/a529a5daf5d348f4f8dac4fcd85521153b6a3d4d 2025-07-24T03:47:29.8240462Z * [new tag] trunk/a5938ff431202864c92fec7d9042574348b1c15b -> trunk/a5938ff431202864c92fec7d9042574348b1c15b 2025-07-24T03:47:29.8241275Z * [new tag] trunk/a5b4463d60e5beaec546843b24876ce573890784 -> trunk/a5b4463d60e5beaec546843b24876ce573890784 2025-07-24T03:47:29.8242123Z * [new tag] trunk/a5c61eb78dda6b7b4c4beb8bc616f9545ea4807b -> trunk/a5c61eb78dda6b7b4c4beb8bc616f9545ea4807b 2025-07-24T03:47:29.8243058Z * [new tag] trunk/a5cbb2bcb3c005909a3c10042605e861e6390927 -> trunk/a5cbb2bcb3c005909a3c10042605e861e6390927 2025-07-24T03:47:29.8243909Z * [new tag] trunk/a5df6ffbc2cf8d61fc98bca1c10f22ff64b2318e -> trunk/a5df6ffbc2cf8d61fc98bca1c10f22ff64b2318e 2025-07-24T03:47:29.8244979Z * [new tag] trunk/a5e68814d556cf67c6511876410970dd08c3dd6d -> trunk/a5e68814d556cf67c6511876410970dd08c3dd6d 2025-07-24T03:47:29.8245918Z * [new tag] trunk/a5f59cc2eab3a5201712c52fe48c268357ba4f3c -> trunk/a5f59cc2eab3a5201712c52fe48c268357ba4f3c 2025-07-24T03:47:29.8246761Z * [new tag] trunk/a6084b71edb8d2856356724b5e71c4e2a861867f -> trunk/a6084b71edb8d2856356724b5e71c4e2a861867f 2025-07-24T03:47:29.8247588Z * [new tag] trunk/a6210fd07b8fe1924f24229bb30562608af4f41a -> trunk/a6210fd07b8fe1924f24229bb30562608af4f41a 2025-07-24T03:47:29.8248425Z * [new tag] trunk/a626dc8f1604ce24dadbcdf257f92d0b15bf9367 -> trunk/a626dc8f1604ce24dadbcdf257f92d0b15bf9367 2025-07-24T03:47:29.8249283Z * [new tag] trunk/a666cf3b38f5e7739f94b175f152b127a6d51344 -> trunk/a666cf3b38f5e7739f94b175f152b127a6d51344 2025-07-24T03:47:29.8250118Z * [new tag] trunk/a67eb1a0d627d59d95a99722d37cab3bf054261f -> trunk/a67eb1a0d627d59d95a99722d37cab3bf054261f 2025-07-24T03:47:29.8250957Z * [new tag] trunk/a69e27ca5ad4287add73972ef1b34b469e3c7d23 -> trunk/a69e27ca5ad4287add73972ef1b34b469e3c7d23 2025-07-24T03:47:29.8517951Z * [new tag] trunk/a6a3a441442a96f38d0771c985f753223cea2ba0 -> trunk/a6a3a441442a96f38d0771c985f753223cea2ba0 2025-07-24T03:47:29.8518830Z * [new tag] trunk/a6a8641c8aee5797324c3d41749bcae62b4e5de8 -> trunk/a6a8641c8aee5797324c3d41749bcae62b4e5de8 2025-07-24T03:47:29.8519748Z * [new tag] trunk/a6b7bea2448e03bd5c6e876f92de752c3a616646 -> trunk/a6b7bea2448e03bd5c6e876f92de752c3a616646 2025-07-24T03:47:29.8520656Z * [new tag] trunk/a6fab82b16011213cb010c8c50461b9a680748a2 -> trunk/a6fab82b16011213cb010c8c50461b9a680748a2 2025-07-24T03:47:29.8521498Z * [new tag] trunk/a73d9e0aec9319e56ba0c9b0ccc25db69c739faf -> trunk/a73d9e0aec9319e56ba0c9b0ccc25db69c739faf 2025-07-24T03:47:29.8522355Z * [new tag] trunk/a74109415943d56a0b681cbd4cf772ca07208818 -> trunk/a74109415943d56a0b681cbd4cf772ca07208818 2025-07-24T03:47:29.8523285Z * [new tag] trunk/a767e50adca9e08dd638be60c9e5604de15b9f15 -> trunk/a767e50adca9e08dd638be60c9e5604de15b9f15 2025-07-24T03:47:29.8524132Z * [new tag] trunk/a78fb63dbdf98a1db219095293de1a11005e0390 -> trunk/a78fb63dbdf98a1db219095293de1a11005e0390 2025-07-24T03:47:29.8524987Z * [new tag] trunk/a7b29c88b1f55bac02f38bf1faba68b6c4be4c9c -> trunk/a7b29c88b1f55bac02f38bf1faba68b6c4be4c9c 2025-07-24T03:47:29.8525901Z * [new tag] trunk/a7eb153bba0534daaa1b652d44bb9fb5bd1ac7c7 -> trunk/a7eb153bba0534daaa1b652d44bb9fb5bd1ac7c7 2025-07-24T03:47:29.8526814Z * [new tag] trunk/a82c171bb26949dda5f5932051a905a9bab38761 -> trunk/a82c171bb26949dda5f5932051a905a9bab38761 2025-07-24T03:47:29.8527649Z * [new tag] trunk/a835dbc096dd5206b91449b3ccc60c069d288506 -> trunk/a835dbc096dd5206b91449b3ccc60c069d288506 2025-07-24T03:47:29.8528474Z * [new tag] trunk/a85ad5552532926b78d489d1b60671f74bf6dc8e -> trunk/a85ad5552532926b78d489d1b60671f74bf6dc8e 2025-07-24T03:47:29.8529312Z * [new tag] trunk/a87dfc7480bc98d33dab274d7e95723aa9cf7840 -> trunk/a87dfc7480bc98d33dab274d7e95723aa9cf7840 2025-07-24T03:47:29.8530143Z * [new tag] trunk/a8b973673798ca79dfe616c9080415d09f9e990d -> trunk/a8b973673798ca79dfe616c9080415d09f9e990d 2025-07-24T03:47:29.8530984Z * [new tag] trunk/a8ec7babcf27584cf068c3a5a04bb3ea0102ab99 -> trunk/a8ec7babcf27584cf068c3a5a04bb3ea0102ab99 2025-07-24T03:47:29.8531875Z * [new tag] trunk/a8fe982993221048ee1665ce28add1b02888784d -> trunk/a8fe982993221048ee1665ce28add1b02888784d 2025-07-24T03:47:29.8532807Z * [new tag] trunk/a92b24cd839aa6807f3c9ea8b8787da99c4490c0 -> trunk/a92b24cd839aa6807f3c9ea8b8787da99c4490c0 2025-07-24T03:47:29.8533757Z * [new tag] trunk/a9352bd25e9f070e8f846b8fdbcd7c90ad5c66b3 -> trunk/a9352bd25e9f070e8f846b8fdbcd7c90ad5c66b3 2025-07-24T03:47:29.8535028Z * [new tag] trunk/a952956d05dd617355007ae31d8e936474a35f14 -> trunk/a952956d05dd617355007ae31d8e936474a35f14 2025-07-24T03:47:29.8535957Z * [new tag] trunk/a9537b626c91ce617139ade60b9107a2805a4248 -> trunk/a9537b626c91ce617139ade60b9107a2805a4248 2025-07-24T03:47:29.8536889Z * [new tag] trunk/a95504b10fff38b5308660e0b535961beed6c9f1 -> trunk/a95504b10fff38b5308660e0b535961beed6c9f1 2025-07-24T03:47:29.8537820Z * [new tag] trunk/a991e285ae35159680b0ad4be24669906a6fa256 -> trunk/a991e285ae35159680b0ad4be24669906a6fa256 2025-07-24T03:47:29.8538700Z * [new tag] trunk/a9a0501ec40d8fab07b0f8d2fcbf8eb7147c1ae8 -> trunk/a9a0501ec40d8fab07b0f8d2fcbf8eb7147c1ae8 2025-07-24T03:47:29.8539669Z * [new tag] trunk/a9ac9f2635a9be28eaf267ed41070081a4ce05d8 -> trunk/a9ac9f2635a9be28eaf267ed41070081a4ce05d8 2025-07-24T03:47:29.8540605Z * [new tag] trunk/a9d5157e2596e1d830158e83fab618aab1d4ee39 -> trunk/a9d5157e2596e1d830158e83fab618aab1d4ee39 2025-07-24T03:47:29.8541553Z * [new tag] trunk/a9ee4250d55c6342b80e2d57a8ad9a1992ddcdce -> trunk/a9ee4250d55c6342b80e2d57a8ad9a1992ddcdce 2025-07-24T03:47:29.8542497Z * [new tag] trunk/a9ef7c4d044d386993a6e82b5ad37b7db759b502 -> trunk/a9ef7c4d044d386993a6e82b5ad37b7db759b502 2025-07-24T03:47:29.8543435Z * [new tag] trunk/a9f84021fb5963019f3df895d7d3eeae4606cf79 -> trunk/a9f84021fb5963019f3df895d7d3eeae4606cf79 2025-07-24T03:47:29.8544324Z * [new tag] trunk/a9f902add02383ca1b0386eb865767641975fede -> trunk/a9f902add02383ca1b0386eb865767641975fede 2025-07-24T03:47:29.8545255Z * [new tag] trunk/aa116285768ba6a8cd34bf8d245e38d04c88810a -> trunk/aa116285768ba6a8cd34bf8d245e38d04c88810a 2025-07-24T03:47:29.8546192Z * [new tag] trunk/aa280ea19fb20923d048909fa98af092e18ca2fb -> trunk/aa280ea19fb20923d048909fa98af092e18ca2fb 2025-07-24T03:47:29.8547024Z * [new tag] trunk/aa2d54148d476383986855af3fe53862da861dda -> trunk/aa2d54148d476383986855af3fe53862da861dda 2025-07-24T03:47:29.8778733Z * [new tag] trunk/aab949aa96a6b197b75ffa25608fa84049ff68ad -> trunk/aab949aa96a6b197b75ffa25608fa84049ff68ad 2025-07-24T03:47:29.8779640Z * [new tag] trunk/aac0e8f0e998a9381f0eb5dd303a853515109eb0 -> trunk/aac0e8f0e998a9381f0eb5dd303a853515109eb0 2025-07-24T03:47:29.8780504Z * [new tag] trunk/aacb9440791f4e9567e2123f19bb062e75c2d242 -> trunk/aacb9440791f4e9567e2123f19bb062e75c2d242 2025-07-24T03:47:29.8781344Z * [new tag] trunk/ab2294d8289a7757a2fc321cdefac88e2b378edf -> trunk/ab2294d8289a7757a2fc321cdefac88e2b378edf 2025-07-24T03:47:29.8782185Z * [new tag] trunk/ab3393e923514438c9bdfc1afcd0b2aac8be8de9 -> trunk/ab3393e923514438c9bdfc1afcd0b2aac8be8de9 2025-07-24T03:47:29.8783041Z * [new tag] trunk/ab51a937371e61f91cacae7d9fb4b1fe61f24f03 -> trunk/ab51a937371e61f91cacae7d9fb4b1fe61f24f03 2025-07-24T03:47:29.8783873Z * [new tag] trunk/ab557421a473993b6c7c841cc0d2ff490c718ea4 -> trunk/ab557421a473993b6c7c841cc0d2ff490c718ea4 2025-07-24T03:47:29.8784842Z * [new tag] trunk/ab56e5add9c36f611a4d9af2f43213926b65d7b4 -> trunk/ab56e5add9c36f611a4d9af2f43213926b65d7b4 2025-07-24T03:47:29.8785677Z * [new tag] trunk/ab655816b8f76f511fb2262d45276d8d1b13d59c -> trunk/ab655816b8f76f511fb2262d45276d8d1b13d59c 2025-07-24T03:47:29.8786512Z * [new tag] trunk/ab6cb34480a14f3cf2446519189ee5f0c5e7278d -> trunk/ab6cb34480a14f3cf2446519189ee5f0c5e7278d 2025-07-24T03:47:29.8787352Z * [new tag] trunk/ab81fb846cd0e52bbc6a2eb366706350639e209f -> trunk/ab81fb846cd0e52bbc6a2eb366706350639e209f 2025-07-24T03:47:29.8788186Z * [new tag] trunk/ab8874bd26894a8ab956408ceee2e89c9ad7f450 -> trunk/ab8874bd26894a8ab956408ceee2e89c9ad7f450 2025-07-24T03:47:29.8789197Z * [new tag] trunk/abbdf9f3632af505b3265b4258a6c185b257edde -> trunk/abbdf9f3632af505b3265b4258a6c185b257edde 2025-07-24T03:47:29.8790245Z * [new tag] trunk/abe0c9538a1abcb0528ac2107bd3ac5de628be89 -> trunk/abe0c9538a1abcb0528ac2107bd3ac5de628be89 2025-07-24T03:47:29.8791167Z * [new tag] trunk/abeae997a35b1920a45be9c26eff7474f2c6c5dd -> trunk/abeae997a35b1920a45be9c26eff7474f2c6c5dd 2025-07-24T03:47:29.8792033Z * [new tag] trunk/abf4da0d242274ba7ab4c0859d105cae74a2dbc5 -> trunk/abf4da0d242274ba7ab4c0859d105cae74a2dbc5 2025-07-24T03:47:29.8792878Z * [new tag] trunk/ac706bfc7f942b8a97401486a840dd8f6452f5cb -> trunk/ac706bfc7f942b8a97401486a840dd8f6452f5cb 2025-07-24T03:47:29.8793735Z * [new tag] trunk/ac86ec0e60370c037e018137f2048cafd47c5c28 -> trunk/ac86ec0e60370c037e018137f2048cafd47c5c28 2025-07-24T03:47:29.8794593Z * [new tag] trunk/acaf6ba3c6d0bdec88ab3f6c2ef82650050558d2 -> trunk/acaf6ba3c6d0bdec88ab3f6c2ef82650050558d2 2025-07-24T03:47:29.8795454Z * [new tag] trunk/ad223a6c5fec7e143f3c0fd56a492f0a79f61711 -> trunk/ad223a6c5fec7e143f3c0fd56a492f0a79f61711 2025-07-24T03:47:29.8796358Z * [new tag] trunk/ad2dec1997077e3dc3e0ed8a26abce2261c04f86 -> trunk/ad2dec1997077e3dc3e0ed8a26abce2261c04f86 2025-07-24T03:47:29.8797243Z * [new tag] trunk/ad86c05b78d343f3346d07a07e17639e421d2cf4 -> trunk/ad86c05b78d343f3346d07a07e17639e421d2cf4 2025-07-24T03:47:29.8798076Z * [new tag] trunk/ada44e5ba78be9377814678d1986556af2d6e570 -> trunk/ada44e5ba78be9377814678d1986556af2d6e570 2025-07-24T03:47:29.8798925Z * [new tag] trunk/add0b450bd9907ba9d089c79ca4af96c0590d8ff -> trunk/add0b450bd9907ba9d089c79ca4af96c0590d8ff 2025-07-24T03:47:29.8799771Z * [new tag] trunk/adf6dd1e44c1b006ea6078576b64d5616cecfa5a -> trunk/adf6dd1e44c1b006ea6078576b64d5616cecfa5a 2025-07-24T03:47:29.8800620Z * [new tag] trunk/adf9644440e0d007853e7fdfd67b6a59248f4fbb -> trunk/adf9644440e0d007853e7fdfd67b6a59248f4fbb 2025-07-24T03:47:29.8801462Z * [new tag] trunk/ae0f1f89847564b04bdc43395e664e48f08aaca2 -> trunk/ae0f1f89847564b04bdc43395e664e48f08aaca2 2025-07-24T03:47:29.8802322Z * [new tag] trunk/ae1094b72b7db368f292ed6033de5b495dcdc878 -> trunk/ae1094b72b7db368f292ed6033de5b495dcdc878 2025-07-24T03:47:29.8803342Z * [new tag] trunk/ae86e8f6c829a3cfa9204949156fce2d048c919b -> trunk/ae86e8f6c829a3cfa9204949156fce2d048c919b 2025-07-24T03:47:29.8804186Z * [new tag] trunk/aec569da2325c09487ab659a0f28c3b51e60d779 -> trunk/aec569da2325c09487ab659a0f28c3b51e60d779 2025-07-24T03:47:29.8805049Z * [new tag] trunk/aee2bfc5bae2974f5a3023d51dfa8e3e641144cc -> trunk/aee2bfc5bae2974f5a3023d51dfa8e3e641144cc 2025-07-24T03:47:29.8805920Z * [new tag] trunk/aee8a2e98589886ee80767bcbd10c03d13fb19ec -> trunk/aee8a2e98589886ee80767bcbd10c03d13fb19ec 2025-07-24T03:47:29.9024839Z * [new tag] trunk/aeffb68d3466635e4e95c50bffd7dfebaba94da2 -> trunk/aeffb68d3466635e4e95c50bffd7dfebaba94da2 2025-07-24T03:47:29.9025740Z * [new tag] trunk/af284b45d5cbfd19d168bf1d118b3a40cd8b3a92 -> trunk/af284b45d5cbfd19d168bf1d118b3a40cd8b3a92 2025-07-24T03:47:29.9026597Z * [new tag] trunk/af3d06909400413801b726a96f3ff52b5ee9ebb5 -> trunk/af3d06909400413801b726a96f3ff52b5ee9ebb5 2025-07-24T03:47:29.9027480Z * [new tag] trunk/af6624023e4a9347d68db8517fad684a68b391a2 -> trunk/af6624023e4a9347d68db8517fad684a68b391a2 2025-07-24T03:47:29.9028374Z * [new tag] trunk/af9c92b4cb9f406129dfd8c64c082c0aaf7c723f -> trunk/af9c92b4cb9f406129dfd8c64c082c0aaf7c723f 2025-07-24T03:47:29.9029242Z * [new tag] trunk/aff9c1eec599b8fa97240d192534b0f650c16b1b -> trunk/aff9c1eec599b8fa97240d192534b0f650c16b1b 2025-07-24T03:47:29.9030280Z * [new tag] trunk/b00b641ff1fbfa8f4f6152ffc631e0d24145a7a8 -> trunk/b00b641ff1fbfa8f4f6152ffc631e0d24145a7a8 2025-07-24T03:47:29.9031242Z * [new tag] trunk/b020971e7806bba39aecf636e59e743911831ad8 -> trunk/b020971e7806bba39aecf636e59e743911831ad8 2025-07-24T03:47:29.9032079Z * [new tag] trunk/b0556110e58e3bcf2c872b933e4fd4a0d34398ad -> trunk/b0556110e58e3bcf2c872b933e4fd4a0d34398ad 2025-07-24T03:47:29.9032892Z * [new tag] trunk/b07725a9516028a485153c4b5356b3e33b990f81 -> trunk/b07725a9516028a485153c4b5356b3e33b990f81 2025-07-24T03:47:29.9033818Z * [new tag] trunk/b096341963c4af3b2b0d7f598eba1cdc1c74fb6e -> trunk/b096341963c4af3b2b0d7f598eba1cdc1c74fb6e 2025-07-24T03:47:29.9034747Z * [new tag] trunk/b09bd414a6ccba158c09f586a278051588d90936 -> trunk/b09bd414a6ccba158c09f586a278051588d90936 2025-07-24T03:47:29.9035620Z * [new tag] trunk/b0e325c2c85c5d056a394aa9201f246ee25f8d26 -> trunk/b0e325c2c85c5d056a394aa9201f246ee25f8d26 2025-07-24T03:47:29.9036581Z * [new tag] trunk/b0fbbef1361ccaab8a5aec8e7cd62150e7b361de -> trunk/b0fbbef1361ccaab8a5aec8e7cd62150e7b361de 2025-07-24T03:47:29.9037537Z * [new tag] trunk/b146ca74f01df3cf711fd0f855e05805e490156c -> trunk/b146ca74f01df3cf711fd0f855e05805e490156c 2025-07-24T03:47:29.9038461Z * [new tag] trunk/b146e1a264960e5fb79cf4621ebe4b1345db3e64 -> trunk/b146e1a264960e5fb79cf4621ebe4b1345db3e64 2025-07-24T03:47:29.9039376Z * [new tag] trunk/b147b6c0e31d43a405416743fde1b0b606aa3839 -> trunk/b147b6c0e31d43a405416743fde1b0b606aa3839 2025-07-24T03:47:29.9040243Z * [new tag] trunk/b1713c665516d8355f5491d10b31f98c74ce27f1 -> trunk/b1713c665516d8355f5491d10b31f98c74ce27f1 2025-07-24T03:47:29.9041160Z * [new tag] trunk/b1a0c34dd3b581f645842f06f9d0187e7a6562c8 -> trunk/b1a0c34dd3b581f645842f06f9d0187e7a6562c8 2025-07-24T03:47:29.9042101Z * [new tag] trunk/b1a54fab9bcb0cc167773f9a885d4170447e1c68 -> trunk/b1a54fab9bcb0cc167773f9a885d4170447e1c68 2025-07-24T03:47:29.9043149Z * [new tag] trunk/b1b8e57cda03bd016594a4fc4944fa5e7f9dd961 -> trunk/b1b8e57cda03bd016594a4fc4944fa5e7f9dd961 2025-07-24T03:47:29.9044087Z * [new tag] trunk/b1d62febd03ac421197d5516596f98d3c46e9b44 -> trunk/b1d62febd03ac421197d5516596f98d3c46e9b44 2025-07-24T03:47:29.9045017Z * [new tag] trunk/b221be9140689d180ec339db05c5e235a95949d3 -> trunk/b221be9140689d180ec339db05c5e235a95949d3 2025-07-24T03:47:29.9045896Z * [new tag] trunk/b22b93a6babf86e823e979528bc0aab88fb7a012 -> trunk/b22b93a6babf86e823e979528bc0aab88fb7a012 2025-07-24T03:47:29.9046836Z * [new tag] trunk/b26da7741be37693ab1cd21115f3fca15b1cdb6b -> trunk/b26da7741be37693ab1cd21115f3fca15b1cdb6b 2025-07-24T03:47:29.9047747Z * [new tag] trunk/b2d473c8f8a6d0677940c174b38511f5ab3c3b65 -> trunk/b2d473c8f8a6d0677940c174b38511f5ab3c3b65 2025-07-24T03:47:29.9048696Z * [new tag] trunk/b2fc9cfea16c8eb52c1ce79b2032793dd1a545fb -> trunk/b2fc9cfea16c8eb52c1ce79b2032793dd1a545fb 2025-07-24T03:47:29.9049551Z * [new tag] trunk/b30e04b3c8a83e19dc9123f2f0229d80e208fb50 -> trunk/b30e04b3c8a83e19dc9123f2f0229d80e208fb50 2025-07-24T03:47:29.9050395Z * [new tag] trunk/b354328ecd6a313eab905ab6f74aed5ea2d3a2ce -> trunk/b354328ecd6a313eab905ab6f74aed5ea2d3a2ce 2025-07-24T03:47:29.9051240Z * [new tag] trunk/b359571c6043b40c4ae4fbb07135fd0f04902e21 -> trunk/b359571c6043b40c4ae4fbb07135fd0f04902e21 2025-07-24T03:47:29.9052076Z * [new tag] trunk/b3b4d28f4cf149cb7448c556d359ca852d815ab1 -> trunk/b3b4d28f4cf149cb7448c556d359ca852d815ab1 2025-07-24T03:47:29.9052913Z * [new tag] trunk/b3c868d603e8f7b6661c93cd3d50c9a7b213ad6c -> trunk/b3c868d603e8f7b6661c93cd3d50c9a7b213ad6c 2025-07-24T03:47:29.9053867Z * [new tag] trunk/b40981c63078d99bb07afbdcfec1ce8f7519f26b -> trunk/b40981c63078d99bb07afbdcfec1ce8f7519f26b 2025-07-24T03:47:29.9258638Z * [new tag] trunk/b40c0b61eb5f5b6104cb732e709819e84518faa7 -> trunk/b40c0b61eb5f5b6104cb732e709819e84518faa7 2025-07-24T03:47:29.9259493Z * [new tag] trunk/b4228a94d11b1ba6599f443267824d2d918644f2 -> trunk/b4228a94d11b1ba6599f443267824d2d918644f2 2025-07-24T03:47:29.9260328Z * [new tag] trunk/b4358c5e8731c1035af8bd0d6260de9d239a3e5d -> trunk/b4358c5e8731c1035af8bd0d6260de9d239a3e5d 2025-07-24T03:47:29.9261168Z * [new tag] trunk/b44306d3681d5b248e6b439d293ea0d5a8903a61 -> trunk/b44306d3681d5b248e6b439d293ea0d5a8903a61 2025-07-24T03:47:29.9261994Z * [new tag] trunk/b4442f42a93390760bb923cbe13b80993f5e8e78 -> trunk/b4442f42a93390760bb923cbe13b80993f5e8e78 2025-07-24T03:47:29.9262877Z * [new tag] trunk/b4476ca378be50034bd5cdc1eaa95104337c998a -> trunk/b4476ca378be50034bd5cdc1eaa95104337c998a 2025-07-24T03:47:29.9263747Z * [new tag] trunk/b487003182b7f2d6697064f184515369bf6c8cce -> trunk/b487003182b7f2d6697064f184515369bf6c8cce 2025-07-24T03:47:29.9264592Z * [new tag] trunk/b49edc0d6c72f744d744a026b0ce0d689e34b83b -> trunk/b49edc0d6c72f744d744a026b0ce0d689e34b83b 2025-07-24T03:47:29.9265430Z * [new tag] trunk/b4abf414254ed4d8779bad291dd0141097f019e7 -> trunk/b4abf414254ed4d8779bad291dd0141097f019e7 2025-07-24T03:47:29.9266279Z * [new tag] trunk/b4e3c9ea34cb607324639cd0bb0129740c300721 -> trunk/b4e3c9ea34cb607324639cd0bb0129740c300721 2025-07-24T03:47:29.9267124Z * [new tag] trunk/b4fc42ca807efc1a1b78f52d5481711a4e8bbea3 -> trunk/b4fc42ca807efc1a1b78f52d5481711a4e8bbea3 2025-07-24T03:47:29.9267961Z * [new tag] trunk/b50075343aeb519d135e00c44ff3577eaa25c61b -> trunk/b50075343aeb519d135e00c44ff3577eaa25c61b 2025-07-24T03:47:29.9268849Z * [new tag] trunk/b54eac2a5ed31106393bbc338de8637817809a1f -> trunk/b54eac2a5ed31106393bbc338de8637817809a1f 2025-07-24T03:47:29.9269747Z * [new tag] trunk/b5bfbba1841da810305262c7f47ee2dae54f335e -> trunk/b5bfbba1841da810305262c7f47ee2dae54f335e 2025-07-24T03:47:29.9270586Z * [new tag] trunk/b5c8b8d09f006b1b2911858882a56dfe6e325f36 -> trunk/b5c8b8d09f006b1b2911858882a56dfe6e325f36 2025-07-24T03:47:29.9271416Z * [new tag] trunk/b5ce77c1f5964293299eb1366f341872a4e47fa6 -> trunk/b5ce77c1f5964293299eb1366f341872a4e47fa6 2025-07-24T03:47:29.9272230Z * [new tag] trunk/b60569ed946ddcc267150a675916d68d7cac9085 -> trunk/b60569ed946ddcc267150a675916d68d7cac9085 2025-07-24T03:47:29.9273065Z * [new tag] trunk/b6188174795956f959feae0cbc33cbdb7901c4b6 -> trunk/b6188174795956f959feae0cbc33cbdb7901c4b6 2025-07-24T03:47:29.9273915Z * [new tag] trunk/b642a5c118baf4cd47dd7fe0190b83e04cee960f -> trunk/b642a5c118baf4cd47dd7fe0190b83e04cee960f 2025-07-24T03:47:29.9274802Z * [new tag] trunk/b6454a9058f2e50be9a3c26c128fec843b09c154 -> trunk/b6454a9058f2e50be9a3c26c128fec843b09c154 2025-07-24T03:47:29.9275690Z * [new tag] trunk/b66f4298278c269bdca9a71883cacfa6e975a393 -> trunk/b66f4298278c269bdca9a71883cacfa6e975a393 2025-07-24T03:47:29.9276525Z * [new tag] trunk/b6add8c8ba927a9f1687134ec2734b02a6ccb3c0 -> trunk/b6add8c8ba927a9f1687134ec2734b02a6ccb3c0 2025-07-24T03:47:29.9277373Z * [new tag] trunk/b6c00dfe249a7bfc1d61a322d5bc30f164353abf -> trunk/b6c00dfe249a7bfc1d61a322d5bc30f164353abf 2025-07-24T03:47:29.9278213Z * [new tag] trunk/b6e625e34f358c71b62409f96dc1e22e4791beef -> trunk/b6e625e34f358c71b62409f96dc1e22e4791beef 2025-07-24T03:47:29.9279034Z * [new tag] trunk/b6f84b3b0fef781653911420253dcff6767197dc -> trunk/b6f84b3b0fef781653911420253dcff6767197dc 2025-07-24T03:47:29.9279865Z * [new tag] trunk/b754b1fa43d20f5b31e17c396487ab56991912da -> trunk/b754b1fa43d20f5b31e17c396487ab56991912da 2025-07-24T03:47:29.9280860Z * [new tag] trunk/b7860c7863df9139bceabf5b0c186e6e4287aa4c -> trunk/b7860c7863df9139bceabf5b0c186e6e4287aa4c 2025-07-24T03:47:29.9281847Z * [new tag] trunk/b7a73a2cdbbe46e04aa145fb8c1615e608dcbde9 -> trunk/b7a73a2cdbbe46e04aa145fb8c1615e608dcbde9 2025-07-24T03:47:29.9282768Z * [new tag] trunk/b7b1109f49f5d0bd6145ae47c5c7d7d18c5659b0 -> trunk/b7b1109f49f5d0bd6145ae47c5c7d7d18c5659b0 2025-07-24T03:47:29.9283624Z * [new tag] trunk/b7def5ff1ca72fbb06350ffc75117efc68e149fb -> trunk/b7def5ff1ca72fbb06350ffc75117efc68e149fb 2025-07-24T03:47:29.9284479Z * [new tag] trunk/b83d8827bcd63501d7298267d94d103bf591c6c2 -> trunk/b83d8827bcd63501d7298267d94d103bf591c6c2 2025-07-24T03:47:29.9285324Z * [new tag] trunk/b85f10ea5006e8ae8fc769f48659ab7ad5eafb69 -> trunk/b85f10ea5006e8ae8fc769f48659ab7ad5eafb69 2025-07-24T03:47:29.9551121Z * [new tag] trunk/b86d5cef68d56f3924dc199424e65904a32d0743 -> trunk/b86d5cef68d56f3924dc199424e65904a32d0743 2025-07-24T03:47:29.9552093Z * [new tag] trunk/b87471e66fb989385483b074b5e5942e8fbbbd8d -> trunk/b87471e66fb989385483b074b5e5942e8fbbbd8d 2025-07-24T03:47:29.9552952Z * [new tag] trunk/b878ca0c91bdccbdd907c15a01e5dcf249f0783c -> trunk/b878ca0c91bdccbdd907c15a01e5dcf249f0783c 2025-07-24T03:47:29.9553803Z * [new tag] trunk/b87e50db5e2712608e0b912a8063f0336554bfc3 -> trunk/b87e50db5e2712608e0b912a8063f0336554bfc3 2025-07-24T03:47:29.9554650Z * [new tag] trunk/b8ace6f95105751d0535cb0ce0d2c8f656c8b96c -> trunk/b8ace6f95105751d0535cb0ce0d2c8f656c8b96c 2025-07-24T03:47:29.9555531Z * [new tag] trunk/b8aee84fb9692f1a46c8c2a0ae6685df440f6e8f -> trunk/b8aee84fb9692f1a46c8c2a0ae6685df440f6e8f 2025-07-24T03:47:29.9556377Z * [new tag] trunk/b8bc2c2660e84034ff15232e2161e3ef9a6656d0 -> trunk/b8bc2c2660e84034ff15232e2161e3ef9a6656d0 2025-07-24T03:47:29.9557285Z * [new tag] trunk/b8c2d4c259b16f3dc044d049d964c44907ccecb6 -> trunk/b8c2d4c259b16f3dc044d049d964c44907ccecb6 2025-07-24T03:47:29.9558214Z * [new tag] trunk/b8d96c3f78a27e193f4fa9580f8d28298c8180e3 -> trunk/b8d96c3f78a27e193f4fa9580f8d28298c8180e3 2025-07-24T03:47:29.9559069Z * [new tag] trunk/b8fc5e0c0dda5da8315f9bc108a83a0f92252513 -> trunk/b8fc5e0c0dda5da8315f9bc108a83a0f92252513 2025-07-24T03:47:29.9559931Z * [new tag] trunk/b916d8a583cf4fb018c44eaf5efefa9ca76da366 -> trunk/b916d8a583cf4fb018c44eaf5efefa9ca76da366 2025-07-24T03:47:29.9560774Z * [new tag] trunk/b95dadd7170626273bb03b1264f04f3f051908da -> trunk/b95dadd7170626273bb03b1264f04f3f051908da 2025-07-24T03:47:29.9561631Z * [new tag] trunk/b981fb6744d034a0b2a0baf7e138cfb8dc83ca96 -> trunk/b981fb6744d034a0b2a0baf7e138cfb8dc83ca96 2025-07-24T03:47:29.9562489Z * [new tag] trunk/b9afdd9bcc738697c6eefc90899508ab783bf6ab -> trunk/b9afdd9bcc738697c6eefc90899508ab783bf6ab 2025-07-24T03:47:29.9563429Z * [new tag] trunk/b9b84d8011b08ac62cabf9100043c65863372fea -> trunk/b9b84d8011b08ac62cabf9100043c65863372fea 2025-07-24T03:47:29.9564289Z * [new tag] trunk/b9dc2fa4f7aa237a19248705abf82f5eae662182 -> trunk/b9dc2fa4f7aa237a19248705abf82f5eae662182 2025-07-24T03:47:29.9565139Z * [new tag] trunk/ba0d0de5e652650f8a59c85fc25a90f4ed9e2dc1 -> trunk/ba0d0de5e652650f8a59c85fc25a90f4ed9e2dc1 2025-07-24T03:47:29.9566001Z * [new tag] trunk/badf0020144a6c00ebe7a1cdbeb74f716d48968a -> trunk/badf0020144a6c00ebe7a1cdbeb74f716d48968a 2025-07-24T03:47:29.9566866Z * [new tag] trunk/badfebf29e46c3e41d7cf54a7a807865a90277b0 -> trunk/badfebf29e46c3e41d7cf54a7a807865a90277b0 2025-07-24T03:47:29.9567722Z * [new tag] trunk/bb1f3d1a55e3f8eafb279995824c1ef87f24b341 -> trunk/bb1f3d1a55e3f8eafb279995824c1ef87f24b341 2025-07-24T03:47:29.9569578Z * [new tag] trunk/bb3c911c2d64ccad03349e50a0a220a2889ae85c -> trunk/bb3c911c2d64ccad03349e50a0a220a2889ae85c 2025-07-24T03:47:29.9570544Z * [new tag] trunk/bb462a6237c163774c99e01462703ebce55f4589 -> trunk/bb462a6237c163774c99e01462703ebce55f4589 2025-07-24T03:47:29.9571378Z * [new tag] trunk/bb476310a456b1fd418c79573ed34ad68b4871d4 -> trunk/bb476310a456b1fd418c79573ed34ad68b4871d4 2025-07-24T03:47:29.9572234Z * [new tag] trunk/bbb930aba2e769e3ed981f2a035133891de36dae -> trunk/bbb930aba2e769e3ed981f2a035133891de36dae 2025-07-24T03:47:29.9573090Z * [new tag] trunk/bbbced94a43cf764ddfe719e7d4c161a3992830c -> trunk/bbbced94a43cf764ddfe719e7d4c161a3992830c 2025-07-24T03:47:29.9573963Z * [new tag] trunk/bbc32d680fdd6c23ee0e57d18f5643edd0750a3f -> trunk/bbc32d680fdd6c23ee0e57d18f5643edd0750a3f 2025-07-24T03:47:29.9574831Z * [new tag] trunk/bbe681ed510227ce05f99db2a36c1af5c2cc302b -> trunk/bbe681ed510227ce05f99db2a36c1af5c2cc302b 2025-07-24T03:47:29.9575692Z * [new tag] trunk/bbf1a6feac0e88772be103a1b159b871b5c00b4a -> trunk/bbf1a6feac0e88772be103a1b159b871b5c00b4a 2025-07-24T03:47:29.9576551Z * [new tag] trunk/bc379aebe2e69d306d1b05938a9e86c80f6b98cb -> trunk/bc379aebe2e69d306d1b05938a9e86c80f6b98cb 2025-07-24T03:47:29.9577388Z * [new tag] trunk/bc3972b80a7abe85036f48b610532fce39ea5097 -> trunk/bc3972b80a7abe85036f48b610532fce39ea5097 2025-07-24T03:47:29.9578213Z * [new tag] trunk/bc5a11b58180d40157175f45c69d60a9b9961315 -> trunk/bc5a11b58180d40157175f45c69d60a9b9961315 2025-07-24T03:47:29.9579035Z * [new tag] trunk/bc65253369933160a2da3fc786d027a572faf6b7 -> trunk/bc65253369933160a2da3fc786d027a572faf6b7 2025-07-24T03:47:29.9579860Z * [new tag] trunk/bc6e0661a6ec7e536bee60b9c929f71643bb6c89 -> trunk/bc6e0661a6ec7e536bee60b9c929f71643bb6c89 2025-07-24T03:47:29.9791466Z * [new tag] trunk/bc7b1f5252a667e72ce3c6c13e18af46dd0a7d99 -> trunk/bc7b1f5252a667e72ce3c6c13e18af46dd0a7d99 2025-07-24T03:47:29.9792355Z * [new tag] trunk/bc9091a524a1ebe4de16af4dd8f442db7d1cb138 -> trunk/bc9091a524a1ebe4de16af4dd8f442db7d1cb138 2025-07-24T03:47:29.9793225Z * [new tag] trunk/bc9bd2a766ae8cf2aba8f3d0153cd8ecd05b4465 -> trunk/bc9bd2a766ae8cf2aba8f3d0153cd8ecd05b4465 2025-07-24T03:47:29.9794093Z * [new tag] trunk/bcad962550f2bfd850684250a3c881c9f38ad601 -> trunk/bcad962550f2bfd850684250a3c881c9f38ad601 2025-07-24T03:47:29.9794930Z * [new tag] trunk/bcc98bb2a4dd11ac696082731f8980b72deb6750 -> trunk/bcc98bb2a4dd11ac696082731f8980b72deb6750 2025-07-24T03:47:29.9795798Z * [new tag] trunk/bccb8473fed94dbc6f1392d0c5b4a51150ee4a9a -> trunk/bccb8473fed94dbc6f1392d0c5b4a51150ee4a9a 2025-07-24T03:47:29.9796652Z * [new tag] trunk/bcf50636ba1b93a833267c645d887888df06e9ea -> trunk/bcf50636ba1b93a833267c645d887888df06e9ea 2025-07-24T03:47:29.9797482Z * [new tag] trunk/bd364c901d5b20500ec5cbe275e93c955809d900 -> trunk/bd364c901d5b20500ec5cbe275e93c955809d900 2025-07-24T03:47:29.9798336Z * [new tag] trunk/bd3c32916cf5f85ddb9dd3c36e7311adfa8808af -> trunk/bd3c32916cf5f85ddb9dd3c36e7311adfa8808af 2025-07-24T03:47:29.9799195Z * [new tag] trunk/bd6b5fddbf5fb0b603ab8a7428079d9a86cf532a -> trunk/bd6b5fddbf5fb0b603ab8a7428079d9a86cf532a 2025-07-24T03:47:29.9800052Z * [new tag] trunk/bdacf08b8682b9fbe3a8656a53b1f8b1cb007fd8 -> trunk/bdacf08b8682b9fbe3a8656a53b1f8b1cb007fd8 2025-07-24T03:47:29.9800909Z * [new tag] trunk/bdb1553b77bb28df580ea41d726417ac91028ec6 -> trunk/bdb1553b77bb28df580ea41d726417ac91028ec6 2025-07-24T03:47:29.9801741Z * [new tag] trunk/bdb78191662c01ab1263108febac29a8560337d0 -> trunk/bdb78191662c01ab1263108febac29a8560337d0 2025-07-24T03:47:29.9802834Z * [new tag] trunk/bdbf2792a8f15907f6bbf231f73dab0e8efe1c50 -> trunk/bdbf2792a8f15907f6bbf231f73dab0e8efe1c50 2025-07-24T03:47:29.9803780Z * [new tag] trunk/be124a61a4933603795644d068d2c0e5f444e766 -> trunk/be124a61a4933603795644d068d2c0e5f444e766 2025-07-24T03:47:29.9804607Z * [new tag] trunk/be2ab96347a1e7206a57f69b58263c4455ff8f76 -> trunk/be2ab96347a1e7206a57f69b58263c4455ff8f76 2025-07-24T03:47:29.9805466Z * [new tag] trunk/be2ad70cfa1360da5c23a04ff6ca3480fa02f278 -> trunk/be2ad70cfa1360da5c23a04ff6ca3480fa02f278 2025-07-24T03:47:29.9806332Z * [new tag] trunk/be2e43264d0bce254efabcc60c368d1418bde57f -> trunk/be2e43264d0bce254efabcc60c368d1418bde57f 2025-07-24T03:47:29.9807178Z * [new tag] trunk/be483a54817fbfbf184af363bf9469d01bfa15ef -> trunk/be483a54817fbfbf184af363bf9469d01bfa15ef 2025-07-24T03:47:29.9808040Z * [new tag] trunk/be56a8d7ac0dc72f6946354d7ac5be9ece0f1c35 -> trunk/be56a8d7ac0dc72f6946354d7ac5be9ece0f1c35 2025-07-24T03:47:29.9808886Z * [new tag] trunk/be72bcf828b536e0d81359a37c0f150b69fce5d4 -> trunk/be72bcf828b536e0d81359a37c0f150b69fce5d4 2025-07-24T03:47:29.9809725Z * [new tag] trunk/be896d6b41f560e59c87f9d28df109b1553139a4 -> trunk/be896d6b41f560e59c87f9d28df109b1553139a4 2025-07-24T03:47:29.9810583Z * [new tag] trunk/beb52f5c0ac8efddeafa862f274bc247db989695 -> trunk/beb52f5c0ac8efddeafa862f274bc247db989695 2025-07-24T03:47:29.9811437Z * [new tag] trunk/bee93f9f0d16f4f563812bb5c16e862de15724c1 -> trunk/bee93f9f0d16f4f563812bb5c16e862de15724c1 2025-07-24T03:47:29.9812292Z * [new tag] trunk/beed033b6e6ac57c0b4a1f47eb436e115a52e41b -> trunk/beed033b6e6ac57c0b4a1f47eb436e115a52e41b 2025-07-24T03:47:29.9813134Z * [new tag] trunk/bf06190e21fdf539c13e1ec01271653d0729733a -> trunk/bf06190e21fdf539c13e1ec01271653d0729733a 2025-07-24T03:47:29.9813972Z * [new tag] trunk/bf1ebe0531e1b0390ea09d66ac78500d3c6d3a15 -> trunk/bf1ebe0531e1b0390ea09d66ac78500d3c6d3a15 2025-07-24T03:47:29.9814822Z * [new tag] trunk/bf4aa7827905a2fca96bf266b242a7a16e489af4 -> trunk/bf4aa7827905a2fca96bf266b242a7a16e489af4 2025-07-24T03:47:29.9815659Z * [new tag] trunk/bf50d715539acedcb31a6d8f787149eff6213fdb -> trunk/bf50d715539acedcb31a6d8f787149eff6213fdb 2025-07-24T03:47:29.9816498Z * [new tag] trunk/bf798a2f016ca0001750436150e7a2bdb2676d1a -> trunk/bf798a2f016ca0001750436150e7a2bdb2676d1a 2025-07-24T03:47:29.9817337Z * [new tag] trunk/bf7e290854b7f0ab3fb89251d0100821f1b3a70e -> trunk/bf7e290854b7f0ab3fb89251d0100821f1b3a70e 2025-07-24T03:47:29.9818170Z * [new tag] trunk/bf897b4cea2b7481499a81afa30bfc69a8e685c4 -> trunk/bf897b4cea2b7481499a81afa30bfc69a8e685c4 2025-07-24T03:47:30.0082905Z * [new tag] trunk/bfcababbcb95ec42046737dbcf61f8e258075ace -> trunk/bfcababbcb95ec42046737dbcf61f8e258075ace 2025-07-24T03:47:30.0083912Z * [new tag] trunk/bfccfa0b31221d5df0b263de5a41fb9f7c84b97d -> trunk/bfccfa0b31221d5df0b263de5a41fb9f7c84b97d 2025-07-24T03:47:30.0084902Z * [new tag] trunk/bfe5674e2294a6c73ff671116a91f6ae7220b3f8 -> trunk/bfe5674e2294a6c73ff671116a91f6ae7220b3f8 2025-07-24T03:47:30.0085767Z * [new tag] trunk/bff69f25c2e98adc2e4a765d9fa47f230e2fef45 -> trunk/bff69f25c2e98adc2e4a765d9fa47f230e2fef45 2025-07-24T03:47:30.0086610Z * [new tag] trunk/c038719731abdcd415a5e82c5f3826f2358229fc -> trunk/c038719731abdcd415a5e82c5f3826f2358229fc 2025-07-24T03:47:30.0087451Z * [new tag] trunk/c04a4e709410936c12cdc9db5aaf47164f74a367 -> trunk/c04a4e709410936c12cdc9db5aaf47164f74a367 2025-07-24T03:47:30.0088283Z * [new tag] trunk/c062550a3598d27c2d6572db7c0f4ff90a84cc84 -> trunk/c062550a3598d27c2d6572db7c0f4ff90a84cc84 2025-07-24T03:47:30.0089291Z * [new tag] trunk/c06c2569ee53c169c96f42b45bdb64f390d2f23b -> trunk/c06c2569ee53c169c96f42b45bdb64f390d2f23b 2025-07-24T03:47:30.0091069Z * [new tag] trunk/c09b05487877a3f8b239523b3806f5dd9fc82051 -> trunk/c09b05487877a3f8b239523b3806f5dd9fc82051 2025-07-24T03:47:30.0091947Z * [new tag] trunk/c09cf29d7d010c0547f2f6771921a0ee2ec4904b -> trunk/c09cf29d7d010c0547f2f6771921a0ee2ec4904b 2025-07-24T03:47:30.0092814Z * [new tag] trunk/c09eba877f9c16908b3a925ef694604c1c761b85 -> trunk/c09eba877f9c16908b3a925ef694604c1c761b85 2025-07-24T03:47:30.0093653Z * [new tag] trunk/c0e155a8d230b04f186d1b7540b01213be2b9fc6 -> trunk/c0e155a8d230b04f186d1b7540b01213be2b9fc6 2025-07-24T03:47:30.0094476Z * [new tag] trunk/c0ee01c2fb54e2ae924270f7fd53069915a61a50 -> trunk/c0ee01c2fb54e2ae924270f7fd53069915a61a50 2025-07-24T03:47:30.0095369Z * [new tag] trunk/c10339559de1464c2c5aeb16649c382eefcfb572 -> trunk/c10339559de1464c2c5aeb16649c382eefcfb572 2025-07-24T03:47:30.0096309Z * [new tag] trunk/c11888e7a6557ff64e24ca06e22946c116a7c1e4 -> trunk/c11888e7a6557ff64e24ca06e22946c116a7c1e4 2025-07-24T03:47:30.0097154Z * [new tag] trunk/c13e725edd8dd21406c629bf625f2d6c59ceedd1 -> trunk/c13e725edd8dd21406c629bf625f2d6c59ceedd1 2025-07-24T03:47:30.0098003Z * [new tag] trunk/c14110056f1b6e989850f20ae56d47fbc775e890 -> trunk/c14110056f1b6e989850f20ae56d47fbc775e890 2025-07-24T03:47:30.0098836Z * [new tag] trunk/c1446e1e9d2f5a1bae5fb3d58e58f16c15bb15c3 -> trunk/c1446e1e9d2f5a1bae5fb3d58e58f16c15bb15c3 2025-07-24T03:47:30.0099673Z * [new tag] trunk/c165b36a31585d4e061a84e1977428afd931b82d -> trunk/c165b36a31585d4e061a84e1977428afd931b82d 2025-07-24T03:47:30.0100511Z * [new tag] trunk/c174f3a6a55864cedb8f6d9014e9b8cadf91186b -> trunk/c174f3a6a55864cedb8f6d9014e9b8cadf91186b 2025-07-24T03:47:30.0101358Z * [new tag] trunk/c177abd217ecef5cc096d50adbf5990525714dd3 -> trunk/c177abd217ecef5cc096d50adbf5990525714dd3 2025-07-24T03:47:30.0102224Z * [new tag] trunk/c199a4d0fd03ab3f7e36c6133839cfaf34ba59da -> trunk/c199a4d0fd03ab3f7e36c6133839cfaf34ba59da 2025-07-24T03:47:30.0103079Z * [new tag] trunk/c1a629f76d0afc2ddb4a5c7c1925caa1d12b5a5e -> trunk/c1a629f76d0afc2ddb4a5c7c1925caa1d12b5a5e 2025-07-24T03:47:30.0103925Z * [new tag] trunk/c1ad4b8e7a16f54c35a3908b56ed7d9f95eef586 -> trunk/c1ad4b8e7a16f54c35a3908b56ed7d9f95eef586 2025-07-24T03:47:30.0104779Z * [new tag] trunk/c1ae768baa9598ea97f301999a227b34a2efdecf -> trunk/c1ae768baa9598ea97f301999a227b34a2efdecf 2025-07-24T03:47:30.0105632Z * [new tag] trunk/c1cbaca7fd9937c0a089d98aa69066daf35c898f -> trunk/c1cbaca7fd9937c0a089d98aa69066daf35c898f 2025-07-24T03:47:30.0106490Z * [new tag] trunk/c1f531f0b0e6faf443d90f8de2936e866c8c27c2 -> trunk/c1f531f0b0e6faf443d90f8de2936e866c8c27c2 2025-07-24T03:47:30.0107336Z * [new tag] trunk/c202a7329ad798da676762a8af2aa588f882d288 -> trunk/c202a7329ad798da676762a8af2aa588f882d288 2025-07-24T03:47:30.0108169Z * [new tag] trunk/c2185dc4a5626848df37cad214b73d5ae7dd4f17 -> trunk/c2185dc4a5626848df37cad214b73d5ae7dd4f17 2025-07-24T03:47:30.0109018Z * [new tag] trunk/c219dbd2fc70227ba543c98e9740a84723ba36da -> trunk/c219dbd2fc70227ba543c98e9740a84723ba36da 2025-07-24T03:47:30.0109842Z * [new tag] trunk/c2510fcd86152028c3e6cf483740b177a10ac9b9 -> trunk/c2510fcd86152028c3e6cf483740b177a10ac9b9 2025-07-24T03:47:30.0110665Z * [new tag] trunk/c26ce593d8737cab4b55483b62956a6fea9e4375 -> trunk/c26ce593d8737cab4b55483b62956a6fea9e4375 2025-07-24T03:47:30.0111500Z * [new tag] trunk/c27f83dd91ff3599b5157866e6be014c20b967a0 -> trunk/c27f83dd91ff3599b5157866e6be014c20b967a0 2025-07-24T03:47:30.0319816Z * [new tag] trunk/c28e74e45743feac10559c30dbf71cc35bc12ccb -> trunk/c28e74e45743feac10559c30dbf71cc35bc12ccb 2025-07-24T03:47:30.0320864Z * [new tag] trunk/c2beeadeb40e927c51bc5bcd409b3f28374a5190 -> trunk/c2beeadeb40e927c51bc5bcd409b3f28374a5190 2025-07-24T03:47:30.0321939Z * [new tag] trunk/c2c88846a9c75185660f3b2a8b72c3aa2f8ae3dc -> trunk/c2c88846a9c75185660f3b2a8b72c3aa2f8ae3dc 2025-07-24T03:47:30.0323325Z * [new tag] trunk/c2d1b225e62bdf3adbba91891f53bc60315adaac -> trunk/c2d1b225e62bdf3adbba91891f53bc60315adaac 2025-07-24T03:47:30.0324689Z * [new tag] trunk/c2f4cc59a70bfd7d7e46e9b5596bae8e4ae2cf9c -> trunk/c2f4cc59a70bfd7d7e46e9b5596bae8e4ae2cf9c 2025-07-24T03:47:30.0326024Z * [new tag] trunk/c329a8f19cc94cb7f9d3fc814484cded138ee3ca -> trunk/c329a8f19cc94cb7f9d3fc814484cded138ee3ca 2025-07-24T03:47:30.0327372Z * [new tag] trunk/c37ddcaefbe9b877e1816ce97dedb8ad26d09450 -> trunk/c37ddcaefbe9b877e1816ce97dedb8ad26d09450 2025-07-24T03:47:30.0328739Z * [new tag] trunk/c3ecabf0593066750156989fc75acbeeaddf0791 -> trunk/c3ecabf0593066750156989fc75acbeeaddf0791 2025-07-24T03:47:30.0330070Z * [new tag] trunk/c48d0f4643b7a69ebe24069e932ce1465a31cdbe -> trunk/c48d0f4643b7a69ebe24069e932ce1465a31cdbe 2025-07-24T03:47:30.0331390Z * [new tag] trunk/c4b93e6579c8e2f1252067c4923cbb859c476fb4 -> trunk/c4b93e6579c8e2f1252067c4923cbb859c476fb4 2025-07-24T03:47:30.0332723Z * [new tag] trunk/c4cdcda754e2b73b030902dd06fb651c7a026510 -> trunk/c4cdcda754e2b73b030902dd06fb651c7a026510 2025-07-24T03:47:30.0333682Z * [new tag] trunk/c515385b0ac4a94deef652159e71fe0912615d14 -> trunk/c515385b0ac4a94deef652159e71fe0912615d14 2025-07-24T03:47:30.0334530Z * [new tag] trunk/c54778625ec45b94eb97f52da3ad6c2eb3d3c3c9 -> trunk/c54778625ec45b94eb97f52da3ad6c2eb3d3c3c9 2025-07-24T03:47:30.0335376Z * [new tag] trunk/c553c55be76daaf70d977a4ac7664b46cbcfa7c4 -> trunk/c553c55be76daaf70d977a4ac7664b46cbcfa7c4 2025-07-24T03:47:30.0336223Z * [new tag] trunk/c5589074e64b28afd737174ae1e9c2ba0b925e56 -> trunk/c5589074e64b28afd737174ae1e9c2ba0b925e56 2025-07-24T03:47:30.0337068Z * [new tag] trunk/c55eef79f8880e4b610a0ca6f6131e690dc948dd -> trunk/c55eef79f8880e4b610a0ca6f6131e690dc948dd 2025-07-24T03:47:30.0337914Z * [new tag] trunk/c5a4fe9c17bc20eb46b15fda554d17030bb6a5b9 -> trunk/c5a4fe9c17bc20eb46b15fda554d17030bb6a5b9 2025-07-24T03:47:30.0338763Z * [new tag] trunk/c5b46b5408e136a5a3060b11a96afa51bd009fd5 -> trunk/c5b46b5408e136a5a3060b11a96afa51bd009fd5 2025-07-24T03:47:30.0339593Z * [new tag] trunk/c5d00e150ad503510bf28adf09f69201aeb94f5c -> trunk/c5d00e150ad503510bf28adf09f69201aeb94f5c 2025-07-24T03:47:30.0340463Z * [new tag] trunk/c5d3e7a4ff460eed70b8443485a7e3568e87aee9 -> trunk/c5d3e7a4ff460eed70b8443485a7e3568e87aee9 2025-07-24T03:47:30.0341310Z * [new tag] trunk/c60327ba74f4db232a2832f2c7ca4b2db43a3132 -> trunk/c60327ba74f4db232a2832f2c7ca4b2db43a3132 2025-07-24T03:47:30.0342129Z * [new tag] trunk/c60d8188d23801d44343c96746ec2e7d2971c5d7 -> trunk/c60d8188d23801d44343c96746ec2e7d2971c5d7 2025-07-24T03:47:30.0342936Z * [new tag] trunk/c620d0b5c7e8679413d620624725471223ce8359 -> trunk/c620d0b5c7e8679413d620624725471223ce8359 2025-07-24T03:47:30.0343768Z * [new tag] trunk/c665594c1edca9a507b0ec8b18ab74a0ecb65bc3 -> trunk/c665594c1edca9a507b0ec8b18ab74a0ecb65bc3 2025-07-24T03:47:30.0344615Z * [new tag] trunk/c68af9af1b3652a8e25bd6d0ff8dae89f206a81a -> trunk/c68af9af1b3652a8e25bd6d0ff8dae89f206a81a 2025-07-24T03:47:30.0345452Z * [new tag] trunk/c6a27bae3656021720074520ac6dad9cebe83ff5 -> trunk/c6a27bae3656021720074520ac6dad9cebe83ff5 2025-07-24T03:47:30.0346287Z * [new tag] trunk/c6b4f98625bb6b22bb9a60112a6d58e684a97e1b -> trunk/c6b4f98625bb6b22bb9a60112a6d58e684a97e1b 2025-07-24T03:47:30.0347252Z * [new tag] trunk/c74fd35050a7241f0c439501ef735aa6cdde751f -> trunk/c74fd35050a7241f0c439501ef735aa6cdde751f 2025-07-24T03:47:30.0348160Z * [new tag] trunk/c75c732481915c25295a0ae6321d39aa314eaa93 -> trunk/c75c732481915c25295a0ae6321d39aa314eaa93 2025-07-24T03:47:30.0348979Z * [new tag] trunk/c774180e59409996fb123d6ff9261c2fc356c2f7 -> trunk/c774180e59409996fb123d6ff9261c2fc356c2f7 2025-07-24T03:47:30.0349837Z * [new tag] trunk/c78bbdf4102d2c13bf6aa1abe4352aa7bca401ca -> trunk/c78bbdf4102d2c13bf6aa1abe4352aa7bca401ca 2025-07-24T03:47:30.0350694Z * [new tag] trunk/c78fce9e79b79686b87f4007cbaec819bdd0223f -> trunk/c78fce9e79b79686b87f4007cbaec819bdd0223f 2025-07-24T03:47:30.0646551Z * [new tag] trunk/c79c7bbe615265b6b3d7df39d6d5a68afd7d6b2a -> trunk/c79c7bbe615265b6b3d7df39d6d5a68afd7d6b2a 2025-07-24T03:47:30.0647444Z * [new tag] trunk/c7b6c98d1097bec9dc92bde2fe324aa126a5daa2 -> trunk/c7b6c98d1097bec9dc92bde2fe324aa126a5daa2 2025-07-24T03:47:30.0648299Z * [new tag] trunk/c808af514d59e25ea4a880c1e1e07d3232984e5d -> trunk/c808af514d59e25ea4a880c1e1e07d3232984e5d 2025-07-24T03:47:30.0649149Z * [new tag] trunk/c811f41cf58238b49e9c2f0a9fa00dcc471b2e10 -> trunk/c811f41cf58238b49e9c2f0a9fa00dcc471b2e10 2025-07-24T03:47:30.0649997Z * [new tag] trunk/c82a174ceab79f77ba18405dd263eb03692608fd -> trunk/c82a174ceab79f77ba18405dd263eb03692608fd 2025-07-24T03:47:30.0650838Z * [new tag] trunk/c83041cac2e9ca537b210b74876dbcee5e08ae9a -> trunk/c83041cac2e9ca537b210b74876dbcee5e08ae9a 2025-07-24T03:47:30.0651685Z * [new tag] trunk/c843909d9e32f92b2e31cf9b8f066daf311a6f18 -> trunk/c843909d9e32f92b2e31cf9b8f066daf311a6f18 2025-07-24T03:47:30.0652518Z * [new tag] trunk/c88e87f3553b7ef0b743fb030317fabb6fe2dc29 -> trunk/c88e87f3553b7ef0b743fb030317fabb6fe2dc29 2025-07-24T03:47:30.0653353Z * [new tag] trunk/c8c221c0b3abbb8b5e20138080644dd5f5cd0aa1 -> trunk/c8c221c0b3abbb8b5e20138080644dd5f5cd0aa1 2025-07-24T03:47:30.0654207Z * [new tag] trunk/c8c892b4a50fdad624753db5b8d2bbb0fc5bb110 -> trunk/c8c892b4a50fdad624753db5b8d2bbb0fc5bb110 2025-07-24T03:47:30.0655046Z * [new tag] trunk/c8d39a10457ea5d65184c6e8f037f46c5525d869 -> trunk/c8d39a10457ea5d65184c6e8f037f46c5525d869 2025-07-24T03:47:30.0655885Z * [new tag] trunk/c9174a20f75ba007b0f520326ced5c65d8a2b269 -> trunk/c9174a20f75ba007b0f520326ced5c65d8a2b269 2025-07-24T03:47:30.0656716Z * [new tag] trunk/c917c63282c467ef942c99da3ce4fa57bceba603 -> trunk/c917c63282c467ef942c99da3ce4fa57bceba603 2025-07-24T03:47:30.0657539Z * [new tag] trunk/c92f1075aaf3649f6368af2a3df9b5167f941b3f -> trunk/c92f1075aaf3649f6368af2a3df9b5167f941b3f 2025-07-24T03:47:30.0658382Z * [new tag] trunk/c9404faacb7c18af17086be26587b46e141afbcc -> trunk/c9404faacb7c18af17086be26587b46e141afbcc 2025-07-24T03:47:30.0659221Z * [new tag] trunk/c95705dac2da8134c946cdd573944632ef22f230 -> trunk/c95705dac2da8134c946cdd573944632ef22f230 2025-07-24T03:47:30.0660051Z * [new tag] trunk/c95f7fa874a3116f1067f9092456ee7281003614 -> trunk/c95f7fa874a3116f1067f9092456ee7281003614 2025-07-24T03:47:30.0660885Z * [new tag] trunk/c996aff6ed353050f14fb3d5b98731926be90db8 -> trunk/c996aff6ed353050f14fb3d5b98731926be90db8 2025-07-24T03:47:30.0661714Z * [new tag] trunk/c9a5bf09baa1a6776555e901331b1baefe6691bc -> trunk/c9a5bf09baa1a6776555e901331b1baefe6691bc 2025-07-24T03:47:30.0662570Z * [new tag] trunk/c9afcffed0870c211d2e8be422812d6a70aef3e2 -> trunk/c9afcffed0870c211d2e8be422812d6a70aef3e2 2025-07-24T03:47:30.0663418Z * [new tag] trunk/c9e9a0c82316ed59f6ef989a6000f0d5231b9b16 -> trunk/c9e9a0c82316ed59f6ef989a6000f0d5231b9b16 2025-07-24T03:47:30.0664415Z * [new tag] trunk/ca3cabd24ace1899ca4669431f5b0556c5ab9ebf -> trunk/ca3cabd24ace1899ca4669431f5b0556c5ab9ebf 2025-07-24T03:47:30.0665381Z * [new tag] trunk/ca5a40395d8b212dce0a57df01ca056eae55446f -> trunk/ca5a40395d8b212dce0a57df01ca056eae55446f 2025-07-24T03:47:30.0666231Z * [new tag] trunk/cab28330f8c49cdb66d6a299755dc09c87c14a9d -> trunk/cab28330f8c49cdb66d6a299755dc09c87c14a9d 2025-07-24T03:47:30.0667192Z * [new tag] trunk/cab96b587944d324dde2528d4b1ec5819bc52ce9 -> trunk/cab96b587944d324dde2528d4b1ec5819bc52ce9 2025-07-24T03:47:30.0668048Z * [new tag] trunk/cadcb5d36802579441da3dbe3c2eecc74a0eae78 -> trunk/cadcb5d36802579441da3dbe3c2eecc74a0eae78 2025-07-24T03:47:30.0668888Z * [new tag] trunk/cb711c8fa04673d3490306e2b14539ab7dca3c23 -> trunk/cb711c8fa04673d3490306e2b14539ab7dca3c23 2025-07-24T03:47:30.0669727Z * [new tag] trunk/cb853945a77af54d9989ae7ac36d0007c0215b10 -> trunk/cb853945a77af54d9989ae7ac36d0007c0215b10 2025-07-24T03:47:30.0670584Z * [new tag] trunk/cb9b479f4f799eea058de9be3a0e09f977fc82da -> trunk/cb9b479f4f799eea058de9be3a0e09f977fc82da 2025-07-24T03:47:30.0671423Z * [new tag] trunk/cbafba57941c1d5f78640845320ac89157570b44 -> trunk/cbafba57941c1d5f78640845320ac89157570b44 2025-07-24T03:47:30.0672271Z * [new tag] trunk/cbcffce48a3422a5e9a2103888248c82d52d199c -> trunk/cbcffce48a3422a5e9a2103888248c82d52d199c 2025-07-24T03:47:30.0673108Z * [new tag] trunk/cbe1cb70183dd0d08dd555353eeca72399401ae8 -> trunk/cbe1cb70183dd0d08dd555353eeca72399401ae8 2025-07-24T03:47:30.0673954Z * [new tag] trunk/cc09d3a5ba2a5ae032078570e6123d523952ed22 -> trunk/cc09d3a5ba2a5ae032078570e6123d523952ed22 2025-07-24T03:47:30.0898864Z * [new tag] trunk/cc0faeb80fff17b3d170aa70041865aafb1790a9 -> trunk/cc0faeb80fff17b3d170aa70041865aafb1790a9 2025-07-24T03:47:30.0899733Z * [new tag] trunk/cc372ad557446863f8422f1ca5f415bc78531fa6 -> trunk/cc372ad557446863f8422f1ca5f415bc78531fa6 2025-07-24T03:47:30.0900579Z * [new tag] trunk/cc3ea2d84004b6348c77a285ba2639932b87c101 -> trunk/cc3ea2d84004b6348c77a285ba2639932b87c101 2025-07-24T03:47:30.0901401Z * [new tag] trunk/cc410d3761001499611bca6cf835239b86093791 -> trunk/cc410d3761001499611bca6cf835239b86093791 2025-07-24T03:47:30.0902235Z * [new tag] trunk/ccb1f687d63f0215ebcf3c1340c6682edeaccd28 -> trunk/ccb1f687d63f0215ebcf3c1340c6682edeaccd28 2025-07-24T03:47:30.0903085Z * [new tag] trunk/ccb67f39b4d75943cdc531d9032b3ba9235cfd56 -> trunk/ccb67f39b4d75943cdc531d9032b3ba9235cfd56 2025-07-24T03:47:30.0903915Z * [new tag] trunk/ccc6279b4086d55cd1f7e2d699473478610d8a7b -> trunk/ccc6279b4086d55cd1f7e2d699473478610d8a7b 2025-07-24T03:47:30.0904850Z * [new tag] trunk/cce4d213a67b7536dce431fd29c92f9791c9f81d -> trunk/cce4d213a67b7536dce431fd29c92f9791c9f81d 2025-07-24T03:47:30.0905734Z * [new tag] trunk/cd1a924dba145334aacb7c1b7276d6cef7ca41cc -> trunk/cd1a924dba145334aacb7c1b7276d6cef7ca41cc 2025-07-24T03:47:30.0906585Z * [new tag] trunk/cd361fc247a9abdbe9851867e31ac3cefcff299e -> trunk/cd361fc247a9abdbe9851867e31ac3cefcff299e 2025-07-24T03:47:30.0907447Z * [new tag] trunk/cd66ff80307862ef8e75520054ecd19a5eff9f7e -> trunk/cd66ff80307862ef8e75520054ecd19a5eff9f7e 2025-07-24T03:47:30.0908308Z * [new tag] trunk/cd75cf3cabedeac2ae4bbb266c05ca9b64181abe -> trunk/cd75cf3cabedeac2ae4bbb266c05ca9b64181abe 2025-07-24T03:47:30.0909168Z * [new tag] trunk/cd80f9a4c35a63ef415dbf6a361e4520a9cabf7b -> trunk/cd80f9a4c35a63ef415dbf6a361e4520a9cabf7b 2025-07-24T03:47:30.0910023Z * [new tag] trunk/cd82096973985042ed2eaa84e69fbf0f067f9301 -> trunk/cd82096973985042ed2eaa84e69fbf0f067f9301 2025-07-24T03:47:30.0911097Z * [new tag] trunk/cd995bfb2aac8891465809be3ce29543bd524287 -> trunk/cd995bfb2aac8891465809be3ce29543bd524287 2025-07-24T03:47:30.0912054Z * [new tag] trunk/cdb144fcf0aa4300c6de7158cb18ff7503d48492 -> trunk/cdb144fcf0aa4300c6de7158cb18ff7503d48492 2025-07-24T03:47:30.0912920Z * [new tag] trunk/cdfa33a328f2d3fdaeb645fde186194ddc2e66c0 -> trunk/cdfa33a328f2d3fdaeb645fde186194ddc2e66c0 2025-07-24T03:47:30.0913774Z * [new tag] trunk/ce1a07570d95cdd1543b9b2d45b3899c59e6802f -> trunk/ce1a07570d95cdd1543b9b2d45b3899c59e6802f 2025-07-24T03:47:30.0914616Z * [new tag] trunk/ce3406817d50b3357fa644784cc84ff167ce40ce -> trunk/ce3406817d50b3357fa644784cc84ff167ce40ce 2025-07-24T03:47:30.0915458Z * [new tag] trunk/ce44877961af7c8ec618f525853ce7edf3efa4eb -> trunk/ce44877961af7c8ec618f525853ce7edf3efa4eb 2025-07-24T03:47:30.0916296Z * [new tag] trunk/ce6e0523f9911c605860c4f5f278c2dad893dde9 -> trunk/ce6e0523f9911c605860c4f5f278c2dad893dde9 2025-07-24T03:47:30.0917239Z * [new tag] trunk/ce73b0c53f1f215345dcfe3953871a4aaf170a0c -> trunk/ce73b0c53f1f215345dcfe3953871a4aaf170a0c 2025-07-24T03:47:30.0918069Z * [new tag] trunk/ce79056471737557dcc64378985cd2b036e7322c -> trunk/ce79056471737557dcc64378985cd2b036e7322c 2025-07-24T03:47:30.0918905Z * [new tag] trunk/ce8180a61de405c519e00ac48eab8ff765ea71e6 -> trunk/ce8180a61de405c519e00ac48eab8ff765ea71e6 2025-07-24T03:47:30.0919772Z * [new tag] trunk/ce97a5dcfa3cb10c7805ff5cb44abd6a16b4ae8b -> trunk/ce97a5dcfa3cb10c7805ff5cb44abd6a16b4ae8b 2025-07-24T03:47:30.0920618Z * [new tag] trunk/ce9ba071fd29013e72100dd97728d01c860720d9 -> trunk/ce9ba071fd29013e72100dd97728d01c860720d9 2025-07-24T03:47:30.0921466Z * [new tag] trunk/cec264c8c6d74d4fbf5ee31983737b8b5e316dd0 -> trunk/cec264c8c6d74d4fbf5ee31983737b8b5e316dd0 2025-07-24T03:47:30.0922326Z * [new tag] trunk/cec59b76ca606c3e5d34ac0d0f9e0e22b8cfe5bb -> trunk/cec59b76ca606c3e5d34ac0d0f9e0e22b8cfe5bb 2025-07-24T03:47:30.0923292Z * [new tag] trunk/ced5cf042de1d4b573f258c9f770581d9574b990 -> trunk/ced5cf042de1d4b573f258c9f770581d9574b990 2025-07-24T03:47:30.0924205Z * [new tag] trunk/cf0749c92fdfcb8a583ea15f351add88c4d33618 -> trunk/cf0749c92fdfcb8a583ea15f351add88c4d33618 2025-07-24T03:47:30.0925063Z * [new tag] trunk/cf3247b74aaeb956b3c2b31d05e965a0aca5a8b4 -> trunk/cf3247b74aaeb956b3c2b31d05e965a0aca5a8b4 2025-07-24T03:47:30.0925924Z * [new tag] trunk/cf90c9f8d1632777ec5f4b6ccaa14bc5bf259e9c -> trunk/cf90c9f8d1632777ec5f4b6ccaa14bc5bf259e9c 2025-07-24T03:47:30.1217423Z * [new tag] trunk/cf9878d7a20b11d761934ae7732b01644ae137d6 -> trunk/cf9878d7a20b11d761934ae7732b01644ae137d6 2025-07-24T03:47:30.1218268Z * [new tag] trunk/d061a02e6ecf3b62f409578c7d05a564264d1288 -> trunk/d061a02e6ecf3b62f409578c7d05a564264d1288 2025-07-24T03:47:30.1219124Z * [new tag] trunk/d06a406656bf0b4bc9af2d056558dc1630a6e5b9 -> trunk/d06a406656bf0b4bc9af2d056558dc1630a6e5b9 2025-07-24T03:47:30.1219974Z * [new tag] trunk/d083841c0e0d879e460aebb45daac086a240a7dd -> trunk/d083841c0e0d879e460aebb45daac086a240a7dd 2025-07-24T03:47:30.1220916Z * [new tag] trunk/d0a9629435aaceb5acbf31aad70f2109cb8a3ea2 -> trunk/d0a9629435aaceb5acbf31aad70f2109cb8a3ea2 2025-07-24T03:47:30.1221778Z * [new tag] trunk/d0c00d9a69df296cdcc659e6e25b1bdc0ac5317c -> trunk/d0c00d9a69df296cdcc659e6e25b1bdc0ac5317c 2025-07-24T03:47:30.1222624Z * [new tag] trunk/d0cfa3e5bf662b72068e26e06a1a5c2e640ce8d9 -> trunk/d0cfa3e5bf662b72068e26e06a1a5c2e640ce8d9 2025-07-24T03:47:30.1223479Z * [new tag] trunk/d158e9ea82ce3440e2e9a1bbbecae53a79869404 -> trunk/d158e9ea82ce3440e2e9a1bbbecae53a79869404 2025-07-24T03:47:30.1224314Z * [new tag] trunk/d1947a87074c5db2568038878b1948ea3a33cc23 -> trunk/d1947a87074c5db2568038878b1948ea3a33cc23 2025-07-24T03:47:30.1225323Z * [new tag] trunk/d1b4e0fa9a5feb22fc6de1d36dc4c9dac685caed -> trunk/d1b4e0fa9a5feb22fc6de1d36dc4c9dac685caed 2025-07-24T03:47:30.1226278Z * [new tag] trunk/d1c924c68aaf650439c2193f74cfefc9f16076f1 -> trunk/d1c924c68aaf650439c2193f74cfefc9f16076f1 2025-07-24T03:47:30.1227238Z * [new tag] trunk/d26ca5de058dbcf56ac52bb43e84dd98df2ace97 -> trunk/d26ca5de058dbcf56ac52bb43e84dd98df2ace97 2025-07-24T03:47:30.1228093Z * [new tag] trunk/d27d36136ce35d5d6dc3faa818ba840ba61d4357 -> trunk/d27d36136ce35d5d6dc3faa818ba840ba61d4357 2025-07-24T03:47:30.1228941Z * [new tag] trunk/d283fc79b15844ac470b3429b4dac5661621ae5c -> trunk/d283fc79b15844ac470b3429b4dac5661621ae5c 2025-07-24T03:47:30.1229756Z * [new tag] trunk/d293022c477ea3b94a215315793408bcc61440cf -> trunk/d293022c477ea3b94a215315793408bcc61440cf 2025-07-24T03:47:30.1230599Z * [new tag] trunk/d2a2bfcb5867d4920e0a45113861cde6f74857b9 -> trunk/d2a2bfcb5867d4920e0a45113861cde6f74857b9 2025-07-24T03:47:30.1231442Z * [new tag] trunk/d2f06d2b062c9d868a898044bc324547f34c4760 -> trunk/d2f06d2b062c9d868a898044bc324547f34c4760 2025-07-24T03:47:30.1232272Z * [new tag] trunk/d309cd1d502eab8e9cb536876bf5eed88634eb41 -> trunk/d309cd1d502eab8e9cb536876bf5eed88634eb41 2025-07-24T03:47:30.1233220Z * [new tag] trunk/d32deb664a1dfc0e36f0a8d670695046632ebf2a -> trunk/d32deb664a1dfc0e36f0a8d670695046632ebf2a 2025-07-24T03:47:30.1234069Z * [new tag] trunk/d34cee4cf3bdf67621a05315f11014c6e05f1c05 -> trunk/d34cee4cf3bdf67621a05315f11014c6e05f1c05 2025-07-24T03:47:30.1234900Z * [new tag] trunk/d352c28dd176572120dc99f556b29c77b98e7a2b -> trunk/d352c28dd176572120dc99f556b29c77b98e7a2b 2025-07-24T03:47:30.1235764Z * [new tag] trunk/d36afac83b01c3de214db91f3d4b3f447f9a77b7 -> trunk/d36afac83b01c3de214db91f3d4b3f447f9a77b7 2025-07-24T03:47:30.1236617Z * [new tag] trunk/d3d64c6db090ee9be051202e6ac6fd4acd5d3e97 -> trunk/d3d64c6db090ee9be051202e6ac6fd4acd5d3e97 2025-07-24T03:47:30.1237481Z * [new tag] trunk/d3d655ad14ee4cd1c135ac57bbf75d5623fc9fa6 -> trunk/d3d655ad14ee4cd1c135ac57bbf75d5623fc9fa6 2025-07-24T03:47:30.1238325Z * [new tag] trunk/d3d9bc1c312cb8415d504a7af5682e75a97d3541 -> trunk/d3d9bc1c312cb8415d504a7af5682e75a97d3541 2025-07-24T03:47:30.1239267Z * [new tag] trunk/d3da03d6fa02aecd01ff41246def793b8fc630bf -> trunk/d3da03d6fa02aecd01ff41246def793b8fc630bf 2025-07-24T03:47:30.1240124Z * [new tag] trunk/d3efd732348f8a455ca23e7fcae043651e41f65e -> trunk/d3efd732348f8a455ca23e7fcae043651e41f65e 2025-07-24T03:47:30.1240963Z * [new tag] trunk/d3f9107d682d2fb554d09f1f14e81850de793e7a -> trunk/d3f9107d682d2fb554d09f1f14e81850de793e7a 2025-07-24T03:47:30.1241799Z * [new tag] trunk/d40aaa42ee8d7283d8de02c68c5625d67acf668a -> trunk/d40aaa42ee8d7283d8de02c68c5625d67acf668a 2025-07-24T03:47:30.1242731Z * [new tag] trunk/d41f62b7a06c51e4a57df4d58e7a2d86d2faa875 -> trunk/d41f62b7a06c51e4a57df4d58e7a2d86d2faa875 2025-07-24T03:47:30.1243566Z * [new tag] trunk/d42c11819f003a848c782d6090f44bbca11c7d60 -> trunk/d42c11819f003a848c782d6090f44bbca11c7d60 2025-07-24T03:47:30.1244399Z * [new tag] trunk/d42c40976727fed4c9908d4194f26917d0a3da66 -> trunk/d42c40976727fed4c9908d4194f26917d0a3da66 2025-07-24T03:47:30.1245336Z * [new tag] trunk/d43c0bdf46d82806cff195a6d2bfa103ab46dc14 -> trunk/d43c0bdf46d82806cff195a6d2bfa103ab46dc14 2025-07-24T03:47:30.1525128Z * [new tag] trunk/d4ad28042993dd09c80775d7fc5756fb4d13fdd4 -> trunk/d4ad28042993dd09c80775d7fc5756fb4d13fdd4 2025-07-24T03:47:30.1526050Z * [new tag] trunk/d4d0ede6bacb4b3b33c0e4aa4cb0e79d34e697ec -> trunk/d4d0ede6bacb4b3b33c0e4aa4cb0e79d34e697ec 2025-07-24T03:47:30.1527139Z * [new tag] trunk/d512584718838876ae14b32bb53cd836a1ceccae -> trunk/d512584718838876ae14b32bb53cd836a1ceccae 2025-07-24T03:47:30.1528148Z * [new tag] trunk/d55dc00f8479699f454e91c779b53e2a16cffc21 -> trunk/d55dc00f8479699f454e91c779b53e2a16cffc21 2025-07-24T03:47:30.1529030Z * [new tag] trunk/d56f11a1f275f2dc037cd5099b70240745990693 -> trunk/d56f11a1f275f2dc037cd5099b70240745990693 2025-07-24T03:47:30.1529856Z * [new tag] trunk/d5781c8d21b3dca35715a093ba52c5698551ad9b -> trunk/d5781c8d21b3dca35715a093ba52c5698551ad9b 2025-07-24T03:47:30.1530691Z * [new tag] trunk/d58ed04d89c34c6930d0f28be351c53db407078f -> trunk/d58ed04d89c34c6930d0f28be351c53db407078f 2025-07-24T03:47:30.1531561Z * [new tag] trunk/d59ed21d0fdcbb34b5c4b121a3b49ae64d8da367 -> trunk/d59ed21d0fdcbb34b5c4b121a3b49ae64d8da367 2025-07-24T03:47:30.1532398Z * [new tag] trunk/d5a29fc58a0f974871841075072164f852c61b65 -> trunk/d5a29fc58a0f974871841075072164f852c61b65 2025-07-24T03:47:30.1533220Z * [new tag] trunk/d5a89178b05db3124f16c733e9b00f8c5c4ab038 -> trunk/d5a89178b05db3124f16c733e9b00f8c5c4ab038 2025-07-24T03:47:30.1534113Z * [new tag] trunk/d5af0eca8def9a4ae1af69638de3983f3bec778c -> trunk/d5af0eca8def9a4ae1af69638de3983f3bec778c 2025-07-24T03:47:30.1535031Z * [new tag] trunk/d5b4a329607514b30944c7682efcf79cf8950ed3 -> trunk/d5b4a329607514b30944c7682efcf79cf8950ed3 2025-07-24T03:47:30.1535853Z * [new tag] trunk/d5d14ee823e70224a154884a5c2912643d648094 -> trunk/d5d14ee823e70224a154884a5c2912643d648094 2025-07-24T03:47:30.1536665Z * [new tag] trunk/d5e6f4209424b96237ea5468dd47899e1124dfcb -> trunk/d5e6f4209424b96237ea5468dd47899e1124dfcb 2025-07-24T03:47:30.1537480Z * [new tag] trunk/d6237721c074484ea5e72fc05614587886e57fd6 -> trunk/d6237721c074484ea5e72fc05614587886e57fd6 2025-07-24T03:47:30.1538323Z * [new tag] trunk/d632cf2cc9aac8ab0e03d1537982265e42be95e5 -> trunk/d632cf2cc9aac8ab0e03d1537982265e42be95e5 2025-07-24T03:47:30.1539180Z * [new tag] trunk/d66b4bcc3f89ac6b9d2ccfd4cb01b0aa85d4e3fd -> trunk/d66b4bcc3f89ac6b9d2ccfd4cb01b0aa85d4e3fd 2025-07-24T03:47:30.1540081Z * [new tag] trunk/d6ee5144cab20141c8e0cf48856a90a6517753f1 -> trunk/d6ee5144cab20141c8e0cf48856a90a6517753f1 2025-07-24T03:47:30.1540978Z * [new tag] trunk/d75d30eeb610b164e69d0678a2e2b2dea81eec0f -> trunk/d75d30eeb610b164e69d0678a2e2b2dea81eec0f 2025-07-24T03:47:30.1541807Z * [new tag] trunk/d76323d41742cbc05ec6857319b267d2c7ea8fd9 -> trunk/d76323d41742cbc05ec6857319b267d2c7ea8fd9 2025-07-24T03:47:30.1542627Z * [new tag] trunk/d79651571fb082a7a20631059563ecdf9d11b7e6 -> trunk/d79651571fb082a7a20631059563ecdf9d11b7e6 2025-07-24T03:47:30.1543433Z * [new tag] trunk/d797038ea9f3951c7602e8710f4866f73d7e7acd -> trunk/d797038ea9f3951c7602e8710f4866f73d7e7acd 2025-07-24T03:47:30.1544273Z * [new tag] trunk/d7e1b8b11d7430c7633dcad6f6596b5df8fa02f7 -> trunk/d7e1b8b11d7430c7633dcad6f6596b5df8fa02f7 2025-07-24T03:47:30.1545118Z * [new tag] trunk/d7e3c9ce8289f26704b140e68dac2849df750040 -> trunk/d7e3c9ce8289f26704b140e68dac2849df750040 2025-07-24T03:47:30.1545947Z * [new tag] trunk/d7e657da358d6d393e2105f94f1312fb969654a2 -> trunk/d7e657da358d6d393e2105f94f1312fb969654a2 2025-07-24T03:47:30.1546834Z * [new tag] trunk/d83ff89d3bf54ecc95d441411ecbf07831cc0e5a -> trunk/d83ff89d3bf54ecc95d441411ecbf07831cc0e5a 2025-07-24T03:47:30.1547712Z * [new tag] trunk/d8425e9c7504dc932c82bed165160a7a055c70f0 -> trunk/d8425e9c7504dc932c82bed165160a7a055c70f0 2025-07-24T03:47:30.1548541Z * [new tag] trunk/d846e213553621cb4581f1f36ac0023e528ddb65 -> trunk/d846e213553621cb4581f1f36ac0023e528ddb65 2025-07-24T03:47:30.1549492Z * [new tag] trunk/d84efde3f02bdc4780e5c9ec43f9c515c744e9be -> trunk/d84efde3f02bdc4780e5c9ec43f9c515c744e9be 2025-07-24T03:47:30.1550421Z * [new tag] trunk/d859e65826d511f8379db4a8c4109417e26e0772 -> trunk/d859e65826d511f8379db4a8c4109417e26e0772 2025-07-24T03:47:30.1551252Z * [new tag] trunk/d898d0d437bfdc0719e6c69d5005606c5e64fca8 -> trunk/d898d0d437bfdc0719e6c69d5005606c5e64fca8 2025-07-24T03:47:30.1552107Z * [new tag] trunk/d89f30ad45b9d4bfe5cf5ab441b53e849e55df7b -> trunk/d89f30ad45b9d4bfe5cf5ab441b53e849e55df7b 2025-07-24T03:47:30.1779210Z * [new tag] trunk/d8b084312b54e97bdbaf6a178fe2fc628a23243b -> trunk/d8b084312b54e97bdbaf6a178fe2fc628a23243b 2025-07-24T03:47:30.1780098Z * [new tag] trunk/d8bb5ac260dd81f75c8add6eadd8ce11e62be1a3 -> trunk/d8bb5ac260dd81f75c8add6eadd8ce11e62be1a3 2025-07-24T03:47:30.1780991Z * [new tag] trunk/d9426a81d2ab54f809a3b32a6ab2e606073fe66f -> trunk/d9426a81d2ab54f809a3b32a6ab2e606073fe66f 2025-07-24T03:47:30.1781835Z * [new tag] trunk/d9577df312d477e8fa5b9d7bc61fb1f2c07b8e48 -> trunk/d9577df312d477e8fa5b9d7bc61fb1f2c07b8e48 2025-07-24T03:47:30.1782713Z * [new tag] trunk/d96dec84151dfdea1aa2bf568deebdc182214f45 -> trunk/d96dec84151dfdea1aa2bf568deebdc182214f45 2025-07-24T03:47:30.1783563Z * [new tag] trunk/d9799a2ee7adb9d15f7a2d47ee17fc39c588af60 -> trunk/d9799a2ee7adb9d15f7a2d47ee17fc39c588af60 2025-07-24T03:47:30.1784412Z * [new tag] trunk/d984143a74e5e726e2be35f6531582aab45bcf4c -> trunk/d984143a74e5e726e2be35f6531582aab45bcf4c 2025-07-24T03:47:30.1785246Z * [new tag] trunk/d98fa4a1033079ae19591aff5c3c354617bff482 -> trunk/d98fa4a1033079ae19591aff5c3c354617bff482 2025-07-24T03:47:30.1786072Z * [new tag] trunk/d99cac28160428a8b006890abffaaa0754bd28e1 -> trunk/d99cac28160428a8b006890abffaaa0754bd28e1 2025-07-24T03:47:30.1786925Z * [new tag] trunk/d9b8369f3976e89eef96c903dfede746fb438f63 -> trunk/d9b8369f3976e89eef96c903dfede746fb438f63 2025-07-24T03:47:30.1787788Z * [new tag] trunk/da05b7fb94fa6382c43e165a525a76d8ae62cadd -> trunk/da05b7fb94fa6382c43e165a525a76d8ae62cadd 2025-07-24T03:47:30.1788628Z * [new tag] trunk/da1f337bc43ce2d720aca1349f9c09712e037382 -> trunk/da1f337bc43ce2d720aca1349f9c09712e037382 2025-07-24T03:47:30.1789483Z * [new tag] trunk/da1f8980dfd646f14dc33bf0bc70fcb4d09096b3 -> trunk/da1f8980dfd646f14dc33bf0bc70fcb4d09096b3 2025-07-24T03:47:30.1790343Z * [new tag] trunk/da4c7b4cedbaaf10754cca34cf5b052d9e880e6a -> trunk/da4c7b4cedbaaf10754cca34cf5b052d9e880e6a 2025-07-24T03:47:30.1791198Z * [new tag] trunk/da4e7c77a12746b0806a63af58d7c913ed241f55 -> trunk/da4e7c77a12746b0806a63af58d7c913ed241f55 2025-07-24T03:47:30.1792040Z * [new tag] trunk/da50835bdebd43275e0be4b1362e1bb92b568e72 -> trunk/da50835bdebd43275e0be4b1362e1bb92b568e72 2025-07-24T03:47:30.1792882Z * [new tag] trunk/da910e603a764c1f935dd0409b4c18bd84b1f045 -> trunk/da910e603a764c1f935dd0409b4c18bd84b1f045 2025-07-24T03:47:30.1793722Z * [new tag] trunk/da94023b0205bf98c3da366f2f86e0a443f4db17 -> trunk/da94023b0205bf98c3da366f2f86e0a443f4db17 2025-07-24T03:47:30.1794561Z * [new tag] trunk/dabb55baff2292ddd7728882b4e2113b8cb9e23b -> trunk/dabb55baff2292ddd7728882b4e2113b8cb9e23b 2025-07-24T03:47:30.1795412Z * [new tag] trunk/db01f1032ff133dc7cc3097b76bfb1b73ff533ce -> trunk/db01f1032ff133dc7cc3097b76bfb1b73ff533ce 2025-07-24T03:47:30.1796253Z * [new tag] trunk/db188503cb705230664c94d8b3a85165a00d632d -> trunk/db188503cb705230664c94d8b3a85165a00d632d 2025-07-24T03:47:30.1797086Z * [new tag] trunk/db491825e05e8bed9c7ed5d9fdd6ce206ab3167c -> trunk/db491825e05e8bed9c7ed5d9fdd6ce206ab3167c 2025-07-24T03:47:30.1798084Z * [new tag] trunk/db5970c1a67968f3b76d204d75789021d4304337 -> trunk/db5970c1a67968f3b76d204d75789021d4304337 2025-07-24T03:47:30.1799017Z * [new tag] trunk/dbec08bc1cc9113c13652128a4ddcfcf2426a8c0 -> trunk/dbec08bc1cc9113c13652128a4ddcfcf2426a8c0 2025-07-24T03:47:30.1799876Z * [new tag] trunk/dbf7d421dabced2335d17c7d7e57c1770f2f12c0 -> trunk/dbf7d421dabced2335d17c7d7e57c1770f2f12c0 2025-07-24T03:47:30.1800750Z * [new tag] trunk/dc5e8f7999cccb51efcf0f5fe197a740a918c73d -> trunk/dc5e8f7999cccb51efcf0f5fe197a740a918c73d 2025-07-24T03:47:30.1801604Z * [new tag] trunk/dcb97cd519e4e4974bc3bd4960512b557216f3e6 -> trunk/dcb97cd519e4e4974bc3bd4960512b557216f3e6 2025-07-24T03:47:30.1802479Z * [new tag] trunk/dd0adc9386226fdbfb1ddaf0c1e74de54dfbc83e -> trunk/dd0adc9386226fdbfb1ddaf0c1e74de54dfbc83e 2025-07-24T03:47:30.1803451Z * [new tag] trunk/dd1b6621bc04a37b60ac304d913a3c838b0b1e4d -> trunk/dd1b6621bc04a37b60ac304d913a3c838b0b1e4d 2025-07-24T03:47:30.1804297Z * [new tag] trunk/dd3e7170c20cade9a308900aa4df46ab7656d253 -> trunk/dd3e7170c20cade9a308900aa4df46ab7656d253 2025-07-24T03:47:30.1805158Z * [new tag] trunk/dd41a3907cde3ce19fb69bd79c4055233a1e28d3 -> trunk/dd41a3907cde3ce19fb69bd79c4055233a1e28d3 2025-07-24T03:47:30.1806039Z * [new tag] trunk/dd78d6e7eaecf0aa5317076a721bc719c96b41f8 -> trunk/dd78d6e7eaecf0aa5317076a721bc719c96b41f8 2025-07-24T03:47:30.1806880Z * [new tag] trunk/dd93883231226576220a8ec0fa266c9e22eae82c -> trunk/dd93883231226576220a8ec0fa266c9e22eae82c 2025-07-24T03:47:30.2094153Z * [new tag] trunk/ddbecdfb663172512875db4a873d8a4913a9ac83 -> trunk/ddbecdfb663172512875db4a873d8a4913a9ac83 2025-07-24T03:47:30.2095075Z * [new tag] trunk/ddd74d10fcc3e51b9df438faec95f8f207cb1c37 -> trunk/ddd74d10fcc3e51b9df438faec95f8f207cb1c37 2025-07-24T03:47:30.2096228Z * [new tag] trunk/ddf502c988133835a89959bef945bf9c5f06b428 -> trunk/ddf502c988133835a89959bef945bf9c5f06b428 2025-07-24T03:47:30.2097211Z * [new tag] trunk/de1930a4290a27f3f03dd1d3454fb6ef9d12f3ea -> trunk/de1930a4290a27f3f03dd1d3454fb6ef9d12f3ea 2025-07-24T03:47:30.2098065Z * [new tag] trunk/de45c5f673ce261e9a82c54280beeda36cff640e -> trunk/de45c5f673ce261e9a82c54280beeda36cff640e 2025-07-24T03:47:30.2098923Z * [new tag] trunk/dea4864ce08115a0cdc871b84dd3080567d8b5e4 -> trunk/dea4864ce08115a0cdc871b84dd3080567d8b5e4 2025-07-24T03:47:30.2099784Z * [new tag] trunk/dec0d3101c4cb4165bcecd6971fc4ba8ce6dc6ab -> trunk/dec0d3101c4cb4165bcecd6971fc4ba8ce6dc6ab 2025-07-24T03:47:30.2100617Z * [new tag] trunk/df72078fe1339751e702c7511c23b4597d022dcc -> trunk/df72078fe1339751e702c7511c23b4597d022dcc 2025-07-24T03:47:30.2101432Z * [new tag] trunk/dfa2649434f539d7580d38f08890176e73d45158 -> trunk/dfa2649434f539d7580d38f08890176e73d45158 2025-07-24T03:47:30.2102259Z * [new tag] trunk/dfc31b3345d78b0a49d446dcc1957404606a3aa2 -> trunk/dfc31b3345d78b0a49d446dcc1957404606a3aa2 2025-07-24T03:47:30.2103211Z * [new tag] trunk/dfcda613b65499e4b593b5bbb64812d57194858e -> trunk/dfcda613b65499e4b593b5bbb64812d57194858e 2025-07-24T03:47:30.2104134Z * [new tag] trunk/dfdd636cfa06ac70c4aa7ad5ee5e854c46b25a8e -> trunk/dfdd636cfa06ac70c4aa7ad5ee5e854c46b25a8e 2025-07-24T03:47:30.2105003Z * [new tag] trunk/dfef1e44085bb156abc4aff0f34a0b82a4a337b8 -> trunk/dfef1e44085bb156abc4aff0f34a0b82a4a337b8 2025-07-24T03:47:30.2105861Z * [new tag] trunk/e01fde82131c7f0b4c122222694911ee6fab36ca -> trunk/e01fde82131c7f0b4c122222694911ee6fab36ca 2025-07-24T03:47:30.2106701Z * [new tag] trunk/e0447bb5f84dca38e7515d1b1fdea42c647e5acd -> trunk/e0447bb5f84dca38e7515d1b1fdea42c647e5acd 2025-07-24T03:47:30.2107717Z * [new tag] trunk/e071837594f26a3bbaeee11eaa74f3bfd9c998ce -> trunk/e071837594f26a3bbaeee11eaa74f3bfd9c998ce 2025-07-24T03:47:30.2108767Z * [new tag] trunk/e0850123355a919427be3cb02f40c9a9e144fc3c -> trunk/e0850123355a919427be3cb02f40c9a9e144fc3c 2025-07-24T03:47:30.2109885Z * [new tag] trunk/e0ab1b538a646bff0739830d74a8e6ea6bf1eddd -> trunk/e0ab1b538a646bff0739830d74a8e6ea6bf1eddd 2025-07-24T03:47:30.2110833Z * [new tag] trunk/e0ae4ecca87928a96c97fb60cbb36aca0fc182f2 -> trunk/e0ae4ecca87928a96c97fb60cbb36aca0fc182f2 2025-07-24T03:47:30.2111724Z * [new tag] trunk/e0fd48be7d526625cacfd093f3db13506ca9cc17 -> trunk/e0fd48be7d526625cacfd093f3db13506ca9cc17 2025-07-24T03:47:30.2112631Z * [new tag] trunk/e1180c7228ba8c8b16cabf78706d4a67ca189a6b -> trunk/e1180c7228ba8c8b16cabf78706d4a67ca189a6b 2025-07-24T03:47:30.2113525Z * [new tag] trunk/e124a0d88ca2aa04bfaca2dcabf5de6244048e45 -> trunk/e124a0d88ca2aa04bfaca2dcabf5de6244048e45 2025-07-24T03:47:30.2114446Z * [new tag] trunk/e12597090c482ebf1eff7739794667a92cbff657 -> trunk/e12597090c482ebf1eff7739794667a92cbff657 2025-07-24T03:47:30.2115349Z * [new tag] trunk/e15848669f84d3767bfca724a29a6a6dde3308b9 -> trunk/e15848669f84d3767bfca724a29a6a6dde3308b9 2025-07-24T03:47:30.2116215Z * [new tag] trunk/e15ea965a1e84029eb900b93f5776767a39fd91e -> trunk/e15ea965a1e84029eb900b93f5776767a39fd91e 2025-07-24T03:47:30.2117125Z * [new tag] trunk/e15f4248ad2797539f1bf965bd0a3500b8ed15ed -> trunk/e15f4248ad2797539f1bf965bd0a3500b8ed15ed 2025-07-24T03:47:30.2118014Z * [new tag] trunk/e1723098805fcbf3ab7f3d20750fb0665bf65004 -> trunk/e1723098805fcbf3ab7f3d20750fb0665bf65004 2025-07-24T03:47:30.2118874Z * [new tag] trunk/e17538022a81c453276cb27468223ddbe4e3e883 -> trunk/e17538022a81c453276cb27468223ddbe4e3e883 2025-07-24T03:47:30.2119752Z * [new tag] trunk/e1a20988f3724317a7ee79c1777d574a8282a122 -> trunk/e1a20988f3724317a7ee79c1777d574a8282a122 2025-07-24T03:47:30.2120740Z * [new tag] trunk/e1aee86646aa6d1b9cb9d34351e43936401c5efc -> trunk/e1aee86646aa6d1b9cb9d34351e43936401c5efc 2025-07-24T03:47:30.2121650Z * [new tag] trunk/e1db10e05aa720aef1989773adcf48f311bcf920 -> trunk/e1db10e05aa720aef1989773adcf48f311bcf920 2025-07-24T03:47:30.2122572Z * [new tag] trunk/e1f28fe17bc55389fc5a31bad588d22e5ecca722 -> trunk/e1f28fe17bc55389fc5a31bad588d22e5ecca722 2025-07-24T03:47:30.2346590Z * [new tag] trunk/e20784f228abca24ab263cf0f69534667365ecba -> trunk/e20784f228abca24ab263cf0f69534667365ecba 2025-07-24T03:47:30.2359848Z * [new tag] trunk/e2351f2dcf7d300460edb9d0c2eb0ea11cc547c5 -> trunk/e2351f2dcf7d300460edb9d0c2eb0ea11cc547c5 2025-07-24T03:47:30.2360734Z * [new tag] trunk/e25ce0f928bfdd545323fcc2f88209233309bbbc -> trunk/e25ce0f928bfdd545323fcc2f88209233309bbbc 2025-07-24T03:47:30.2361654Z * [new tag] trunk/e265b719bd67f7c0a2b9001daef442a70232dcc8 -> trunk/e265b719bd67f7c0a2b9001daef442a70232dcc8 2025-07-24T03:47:30.2362513Z * [new tag] trunk/e28925aa7566da3ffe4f13dd8d59a6767bf97b2e -> trunk/e28925aa7566da3ffe4f13dd8d59a6767bf97b2e 2025-07-24T03:47:30.2363465Z * [new tag] trunk/e290a4c645e00926f0bfa44488f9f7dbd7cb2d0b -> trunk/e290a4c645e00926f0bfa44488f9f7dbd7cb2d0b 2025-07-24T03:47:30.2364303Z * [new tag] trunk/e2c9d8d6414927ce754bbc40b767edf103cf16da -> trunk/e2c9d8d6414927ce754bbc40b767edf103cf16da 2025-07-24T03:47:30.2365181Z * [new tag] trunk/e2f64eedafc6f0dcad9256ac1f38c0359477679a -> trunk/e2f64eedafc6f0dcad9256ac1f38c0359477679a 2025-07-24T03:47:30.2366047Z * [new tag] trunk/e311886e3d57c83a88b97a084dd0b95d6d1537a8 -> trunk/e311886e3d57c83a88b97a084dd0b95d6d1537a8 2025-07-24T03:47:30.2366860Z * [new tag] trunk/e31f20529276356092b5c63c2920d5b17ca9f4ba -> trunk/e31f20529276356092b5c63c2920d5b17ca9f4ba 2025-07-24T03:47:30.2367893Z * [new tag] trunk/e323d46b617c1552cc0f017ad8ec80189eacf187 -> trunk/e323d46b617c1552cc0f017ad8ec80189eacf187 2025-07-24T03:47:30.2368828Z * [new tag] trunk/e3320965b48d87b7257997c35db722302d923ead -> trunk/e3320965b48d87b7257997c35db722302d923ead 2025-07-24T03:47:30.2369646Z * [new tag] trunk/e3351b3ddff06c90b2786b23312f80fda2ddb4a6 -> trunk/e3351b3ddff06c90b2786b23312f80fda2ddb4a6 2025-07-24T03:47:30.2370507Z * [new tag] trunk/e375d21bb9b0ef6fefe7a8af5a054a17de8c63c9 -> trunk/e375d21bb9b0ef6fefe7a8af5a054a17de8c63c9 2025-07-24T03:47:30.2371361Z * [new tag] trunk/e3977e843de6c9c43be00ee8c67c533debfc0dc9 -> trunk/e3977e843de6c9c43be00ee8c67c533debfc0dc9 2025-07-24T03:47:30.2372220Z * [new tag] trunk/e3afbb03623559fa3fa7ba607c07c86ebed889f0 -> trunk/e3afbb03623559fa3fa7ba607c07c86ebed889f0 2025-07-24T03:47:30.2373074Z * [new tag] trunk/e3b44edfd837199880aed3ec802383617da731f3 -> trunk/e3b44edfd837199880aed3ec802383617da731f3 2025-07-24T03:47:30.2373907Z * [new tag] trunk/e3f2597b4529927b812b443cf8da19b44ed8dea4 -> trunk/e3f2597b4529927b812b443cf8da19b44ed8dea4 2025-07-24T03:47:30.2374743Z * [new tag] trunk/e3f8141c25b7213885f0b7b64f2b0ccc7858be95 -> trunk/e3f8141c25b7213885f0b7b64f2b0ccc7858be95 2025-07-24T03:47:30.2375566Z * [new tag] trunk/e3fe001d9e38153a7797ad25377fdfa34e461113 -> trunk/e3fe001d9e38153a7797ad25377fdfa34e461113 2025-07-24T03:47:30.2376484Z * [new tag] trunk/e40ade5182233f548b25f2732effe3719d16e9ad -> trunk/e40ade5182233f548b25f2732effe3719d16e9ad 2025-07-24T03:47:30.2377385Z * [new tag] trunk/e44e05f7ae3ac81675d4636475f562ee1fee9a9c -> trunk/e44e05f7ae3ac81675d4636475f562ee1fee9a9c 2025-07-24T03:47:30.2378221Z * [new tag] trunk/e466dab164d9236bfe5817ec8e4d24c7b9d3e392 -> trunk/e466dab164d9236bfe5817ec8e4d24c7b9d3e392 2025-07-24T03:47:30.2379081Z * [new tag] trunk/e472daa80963aae389089f9dc324b04261e2a5ef -> trunk/e472daa80963aae389089f9dc324b04261e2a5ef 2025-07-24T03:47:30.2379936Z * [new tag] trunk/e4ae60a413b99688d308794baaa1c685b5c19025 -> trunk/e4ae60a413b99688d308794baaa1c685b5c19025 2025-07-24T03:47:30.2380780Z * [new tag] trunk/e4c17d5e1ccd0e730caef484af291243bc1d9cde -> trunk/e4c17d5e1ccd0e730caef484af291243bc1d9cde 2025-07-24T03:47:30.2381627Z * [new tag] trunk/e4c9f6d9a286bd367ce3a157428f588e267d2630 -> trunk/e4c9f6d9a286bd367ce3a157428f588e267d2630 2025-07-24T03:47:30.2382457Z * [new tag] trunk/e517066f41342f0f01043121dcb8ac6b235ee40c -> trunk/e517066f41342f0f01043121dcb8ac6b235ee40c 2025-07-24T03:47:30.2383310Z * [new tag] trunk/e53ddaf1f6ef3f1d22075ad33a5922fb8b277fe0 -> trunk/e53ddaf1f6ef3f1d22075ad33a5922fb8b277fe0 2025-07-24T03:47:30.2384166Z * [new tag] trunk/e581f015eebf483eb6f19447caf2d2452a602c2f -> trunk/e581f015eebf483eb6f19447caf2d2452a602c2f 2025-07-24T03:47:30.2385012Z * [new tag] trunk/e583b888194c8c74ebbd332c09c394acebbbbcff -> trunk/e583b888194c8c74ebbd332c09c394acebbbbcff 2025-07-24T03:47:30.2385858Z * [new tag] trunk/e5a0b73ce9e7bc489150932b60f673155d6ddc30 -> trunk/e5a0b73ce9e7bc489150932b60f673155d6ddc30 2025-07-24T03:47:30.2386689Z * [new tag] trunk/e5a11971919009b5e5bd050b3ed52e324f1ce894 -> trunk/e5a11971919009b5e5bd050b3ed52e324f1ce894 2025-07-24T03:47:30.2588177Z * [new tag] trunk/e5ea24fb27e0ef5dbb0c4039d88c0f4faa221fef -> trunk/e5ea24fb27e0ef5dbb0c4039d88c0f4faa221fef 2025-07-24T03:47:30.2589093Z * [new tag] trunk/e5ed267f830ce9fc6579f928082e563fbed37e3f -> trunk/e5ed267f830ce9fc6579f928082e563fbed37e3f 2025-07-24T03:47:30.2589947Z * [new tag] trunk/e5edd013ab418b8b3609cb3cb1df3804b69d8eef -> trunk/e5edd013ab418b8b3609cb3cb1df3804b69d8eef 2025-07-24T03:47:30.2591016Z * [new tag] trunk/e5f6ffd8109bee99416d9b127f961ab0e253a1c2 -> trunk/e5f6ffd8109bee99416d9b127f961ab0e253a1c2 2025-07-24T03:47:30.2591984Z * [new tag] trunk/e600e044a770d29d1fe5d9638b274a7d4f22f969 -> trunk/e600e044a770d29d1fe5d9638b274a7d4f22f969 2025-07-24T03:47:30.2592832Z * [new tag] trunk/e6252f62efa5e6e4ab0d56967d7461f1e8a7eb7c -> trunk/e6252f62efa5e6e4ab0d56967d7461f1e8a7eb7c 2025-07-24T03:47:30.2593688Z * [new tag] trunk/e694280d1215caf70f41575f2611bfa26c69ebdb -> trunk/e694280d1215caf70f41575f2611bfa26c69ebdb 2025-07-24T03:47:30.2594541Z * [new tag] trunk/e6d71f37896e99ced7daf9ee43a30c0ec03d60f2 -> trunk/e6d71f37896e99ced7daf9ee43a30c0ec03d60f2 2025-07-24T03:47:30.2595404Z * [new tag] trunk/e6d8ed02cbeabe961d1a5303973a6d89ee851736 -> trunk/e6d8ed02cbeabe961d1a5303973a6d89ee851736 2025-07-24T03:47:30.2596275Z * [new tag] trunk/e6ed4074e8411000eea2f0de0c0829d909e4701f -> trunk/e6ed4074e8411000eea2f0de0c0829d909e4701f 2025-07-24T03:47:30.2597130Z * [new tag] trunk/e71bb021b9553ddc2db6cb8ea7bf8643552f09fc -> trunk/e71bb021b9553ddc2db6cb8ea7bf8643552f09fc 2025-07-24T03:47:30.2597999Z * [new tag] trunk/e7698ff5cf40729d11df6c32c6df0a163e5d0ce0 -> trunk/e7698ff5cf40729d11df6c32c6df0a163e5d0ce0 2025-07-24T03:47:30.2598857Z * [new tag] trunk/e78f2ac92b709a060aa323d6e527ec2ecc36fb93 -> trunk/e78f2ac92b709a060aa323d6e527ec2ecc36fb93 2025-07-24T03:47:30.2599692Z * [new tag] trunk/e7a66166ce5294a52bf3966aef49562f94343475 -> trunk/e7a66166ce5294a52bf3966aef49562f94343475 2025-07-24T03:47:30.2600535Z * [new tag] trunk/e7da21806fbc96d47ac03ea8f6507deb0ab48481 -> trunk/e7da21806fbc96d47ac03ea8f6507deb0ab48481 2025-07-24T03:47:30.2601385Z * [new tag] trunk/e8217ad8becd2b297682c685a9179997cb0a98cc -> trunk/e8217ad8becd2b297682c685a9179997cb0a98cc 2025-07-24T03:47:30.2602223Z * [new tag] trunk/e882c761dd2bd2f32d1ac5b6f846c9951564e9e7 -> trunk/e882c761dd2bd2f32d1ac5b6f846c9951564e9e7 2025-07-24T03:47:30.2603151Z * [new tag] trunk/e895e9689c625cbcd8f46880115e0d093713fa37 -> trunk/e895e9689c625cbcd8f46880115e0d093713fa37 2025-07-24T03:47:30.2603984Z * [new tag] trunk/e8af168ee09243dd2179ae1cc5c9e8330e2f5614 -> trunk/e8af168ee09243dd2179ae1cc5c9e8330e2f5614 2025-07-24T03:47:30.2604847Z * [new tag] trunk/e8b3dfa7c0b6d74fc84714dbb79cb6a8bad43ae7 -> trunk/e8b3dfa7c0b6d74fc84714dbb79cb6a8bad43ae7 2025-07-24T03:47:30.2605707Z * [new tag] trunk/e8bfce9a43960f417a36636a0e7f6a58b7dc56d2 -> trunk/e8bfce9a43960f417a36636a0e7f6a58b7dc56d2 2025-07-24T03:47:30.2606560Z * [new tag] trunk/e8cf5ff5641c1ce4c3046a85df55b15eaaea38b2 -> trunk/e8cf5ff5641c1ce4c3046a85df55b15eaaea38b2 2025-07-24T03:47:30.2607438Z * [new tag] trunk/e8d29c45e02402bcb4ae7726abd415bebd441852 -> trunk/e8d29c45e02402bcb4ae7726abd415bebd441852 2025-07-24T03:47:30.2608271Z * [new tag] trunk/e90148c91d3b8a759db558374c8539e47338926b -> trunk/e90148c91d3b8a759db558374c8539e47338926b 2025-07-24T03:47:30.2609134Z * [new tag] trunk/e92e3eaf4eb815ea28db9a5af9d9ee48c3f7be3f -> trunk/e92e3eaf4eb815ea28db9a5af9d9ee48c3f7be3f 2025-07-24T03:47:30.2609985Z * [new tag] trunk/e9367a7a4288e626f01fada3912d68756f1ca6d3 -> trunk/e9367a7a4288e626f01fada3912d68756f1ca6d3 2025-07-24T03:47:30.2610816Z * [new tag] trunk/e959dd017d7dcd7c6351c9ef303f3667aebe11f5 -> trunk/e959dd017d7dcd7c6351c9ef303f3667aebe11f5 2025-07-24T03:47:30.2611659Z * [new tag] trunk/e95e8eed0a96f024dc84012494f465b34eae9d22 -> trunk/e95e8eed0a96f024dc84012494f465b34eae9d22 2025-07-24T03:47:30.2612510Z * [new tag] trunk/e96f530af5bf8ceaeaa87ec7f4651490a25bce07 -> trunk/e96f530af5bf8ceaeaa87ec7f4651490a25bce07 2025-07-24T03:47:30.2613452Z * [new tag] trunk/e98dd95446e009ace1722498effbf32250d623e4 -> trunk/e98dd95446e009ace1722498effbf32250d623e4 2025-07-24T03:47:30.2614388Z * [new tag] trunk/e99a2a2dba90c9b6276219104bc99aff2f67e2f7 -> trunk/e99a2a2dba90c9b6276219104bc99aff2f67e2f7 2025-07-24T03:47:30.2615232Z * [new tag] trunk/e99cc126a4f4bd5233ff363f27d14a0fff4b4392 -> trunk/e99cc126a4f4bd5233ff363f27d14a0fff4b4392 2025-07-24T03:47:30.2901465Z * [new tag] trunk/e9fdaf8701b599fd943bb899639b5e8a4966b3c3 -> trunk/e9fdaf8701b599fd943bb899639b5e8a4966b3c3 2025-07-24T03:47:30.2902350Z * [new tag] trunk/ea23eb4b98ae8af40f0c38538a9e63f1b0dc40e2 -> trunk/ea23eb4b98ae8af40f0c38538a9e63f1b0dc40e2 2025-07-24T03:47:30.2903248Z * [new tag] trunk/ea37f720995616d8570045c63486198a021f8285 -> trunk/ea37f720995616d8570045c63486198a021f8285 2025-07-24T03:47:30.2904153Z * [new tag] trunk/ea5b06ed5bc0e84f0d6a88a5b2b12ce71db78ac6 -> trunk/ea5b06ed5bc0e84f0d6a88a5b2b12ce71db78ac6 2025-07-24T03:47:30.2905032Z * [new tag] trunk/ea74fdd24aa7d98433231f4a3d75cfd241d8720e -> trunk/ea74fdd24aa7d98433231f4a3d75cfd241d8720e 2025-07-24T03:47:30.2905887Z * [new tag] trunk/eab45643f22e58ee12d95d8b0162d51ca0a50801 -> trunk/eab45643f22e58ee12d95d8b0162d51ca0a50801 2025-07-24T03:47:30.2906744Z * [new tag] trunk/eabf7cd3c552e6c17321a63d7e5a19da92909910 -> trunk/eabf7cd3c552e6c17321a63d7e5a19da92909910 2025-07-24T03:47:30.2907588Z * [new tag] trunk/eac777c4f46b381106f2f2b78fe05b506f8c558c -> trunk/eac777c4f46b381106f2f2b78fe05b506f8c558c 2025-07-24T03:47:30.2908455Z * [new tag] trunk/eaceb243df6fc17a37a2c1d9f8775d1561a0f67c -> trunk/eaceb243df6fc17a37a2c1d9f8775d1561a0f67c 2025-07-24T03:47:30.2909377Z * [new tag] trunk/ead80f3202b23ad16daa3a250754ddb91d64e9f8 -> trunk/ead80f3202b23ad16daa3a250754ddb91d64e9f8 2025-07-24T03:47:30.2910295Z * [new tag] trunk/eaf32fffb7e83b5331951b254ad213ceb2ae72f8 -> trunk/eaf32fffb7e83b5331951b254ad213ceb2ae72f8 2025-07-24T03:47:30.2911175Z * [new tag] trunk/eaf704914eb63efffafeb402633f76f2cd521ef4 -> trunk/eaf704914eb63efffafeb402633f76f2cd521ef4 2025-07-24T03:47:30.2912044Z * [new tag] trunk/eb152ab1dd9eafc777b6642bb141ab1b8376359a -> trunk/eb152ab1dd9eafc777b6642bb141ab1b8376359a 2025-07-24T03:47:30.2912895Z * [new tag] trunk/eb2af14f8e75c22c0a2fcf407005d2e8173d0df5 -> trunk/eb2af14f8e75c22c0a2fcf407005d2e8173d0df5 2025-07-24T03:47:30.2913752Z * [new tag] trunk/eb331b59fedb7f70229ca491029f2f7f27bbff54 -> trunk/eb331b59fedb7f70229ca491029f2f7f27bbff54 2025-07-24T03:47:30.2914601Z * [new tag] trunk/eb4cf59ecdf69dd53805a37525a7f750c8f1e0dd -> trunk/eb4cf59ecdf69dd53805a37525a7f750c8f1e0dd 2025-07-24T03:47:30.2915452Z * [new tag] trunk/eb7365072315be2bc4259114e25e269801441748 -> trunk/eb7365072315be2bc4259114e25e269801441748 2025-07-24T03:47:30.2916295Z * [new tag] trunk/eb9efb37c8f315f1d30e86d5797490c6a8666889 -> trunk/eb9efb37c8f315f1d30e86d5797490c6a8666889 2025-07-24T03:47:30.2917154Z * [new tag] trunk/eba5fc91ac924a7a05569c33b0f90f0faf22696d -> trunk/eba5fc91ac924a7a05569c33b0f90f0faf22696d 2025-07-24T03:47:30.2918011Z * [new tag] trunk/ebab2799423987a16975ab07ee49dd944e5315e6 -> trunk/ebab2799423987a16975ab07ee49dd944e5315e6 2025-07-24T03:47:30.2918851Z * [new tag] trunk/ebb032a2025684ebc3e1824bef635ef3548366d1 -> trunk/ebb032a2025684ebc3e1824bef635ef3548366d1 2025-07-24T03:47:30.2919694Z * [new tag] trunk/ebf83b8b7772632c0558db9a88281ee10ff2df38 -> trunk/ebf83b8b7772632c0558db9a88281ee10ff2df38 2025-07-24T03:47:30.2920658Z * [new tag] trunk/ec0276103fc023b93c6eb17639d4605656ea4f10 -> trunk/ec0276103fc023b93c6eb17639d4605656ea4f10 2025-07-24T03:47:30.2921507Z * [new tag] trunk/ec08eb8ba22e66b113e4f2aba1f6afb738f9d861 -> trunk/ec08eb8ba22e66b113e4f2aba1f6afb738f9d861 2025-07-24T03:47:30.2922529Z * [new tag] trunk/ec0b5389619eec7d62ae8321407ce436b2593673 -> trunk/ec0b5389619eec7d62ae8321407ce436b2593673 2025-07-24T03:47:30.2923572Z * [new tag] trunk/ec816d73b4c8f74a14e275891939de6cfd6891b6 -> trunk/ec816d73b4c8f74a14e275891939de6cfd6891b6 2025-07-24T03:47:30.2924434Z * [new tag] trunk/ecd73c58eeaf7e919316f9b9596f8c677af96c66 -> trunk/ecd73c58eeaf7e919316f9b9596f8c677af96c66 2025-07-24T03:47:30.2925284Z * [new tag] trunk/ed03492238c9ef76f5c1df6cfa54da83a2a384e1 -> trunk/ed03492238c9ef76f5c1df6cfa54da83a2a384e1 2025-07-24T03:47:30.2926126Z * [new tag] trunk/ed051c308464904e07d33c39524b3931dc8c947a -> trunk/ed051c308464904e07d33c39524b3931dc8c947a 2025-07-24T03:47:30.2926955Z * [new tag] trunk/ed508cc0182b923789555d4e1ec1f8b23707b7db -> trunk/ed508cc0182b923789555d4e1ec1f8b23707b7db 2025-07-24T03:47:30.2927800Z * [new tag] trunk/ed5d6d2a200a0f03b164053322341bb10acc051d -> trunk/ed5d6d2a200a0f03b164053322341bb10acc051d 2025-07-24T03:47:30.2928639Z * [new tag] trunk/ed661a5f11de116539f70882f4f59a61d5e3e209 -> trunk/ed661a5f11de116539f70882f4f59a61d5e3e209 2025-07-24T03:47:30.2929462Z * [new tag] trunk/ed6ae20cf0e31d49d54177251293267205e24021 -> trunk/ed6ae20cf0e31d49d54177251293267205e24021 2025-07-24T03:47:30.3207225Z * [new tag] trunk/ed6df0e324233fda094e3c1cb4de4009d1ba2413 -> trunk/ed6df0e324233fda094e3c1cb4de4009d1ba2413 2025-07-24T03:47:30.3208162Z * [new tag] trunk/ed911747c2a56cf84d648d677403d5bf6b2ebd0b -> trunk/ed911747c2a56cf84d648d677403d5bf6b2ebd0b 2025-07-24T03:47:30.3209005Z * [new tag] trunk/eda0a9cc90b9a63127a49d617329f98b6404e90d -> trunk/eda0a9cc90b9a63127a49d617329f98b6404e90d 2025-07-24T03:47:30.3209861Z * [new tag] trunk/edb92e16ba9ad12bd51c4f73389556e163e9cc08 -> trunk/edb92e16ba9ad12bd51c4f73389556e163e9cc08 2025-07-24T03:47:30.3210720Z * [new tag] trunk/edd45f3a020f892c17672cc2d08f64cb960006ad -> trunk/edd45f3a020f892c17672cc2d08f64cb960006ad 2025-07-24T03:47:30.3211588Z * [new tag] trunk/edd9c09e73aaa8d1a1667fa7ea5a337aa31fa6ec -> trunk/edd9c09e73aaa8d1a1667fa7ea5a337aa31fa6ec 2025-07-24T03:47:30.3212465Z * [new tag] trunk/eddddea9087a8840ce5ae1bbb3c6f59556d7c0f0 -> trunk/eddddea9087a8840ce5ae1bbb3c6f59556d7c0f0 2025-07-24T03:47:30.3213419Z * [new tag] trunk/ede6ead8cd8e925cb093f2b3016342e645bd728d -> trunk/ede6ead8cd8e925cb093f2b3016342e645bd728d 2025-07-24T03:47:30.3214280Z * [new tag] trunk/edf7bb4f514220f96ddfa646ae6e9e930a305ec1 -> trunk/edf7bb4f514220f96ddfa646ae6e9e930a305ec1 2025-07-24T03:47:30.3215119Z * [new tag] trunk/ee0992871c99fc6a1e19eb839ab65391a168d2f8 -> trunk/ee0992871c99fc6a1e19eb839ab65391a168d2f8 2025-07-24T03:47:30.3215952Z * [new tag] trunk/ee4d343499c80be16a58d5ac604da6e2130cd94d -> trunk/ee4d343499c80be16a58d5ac604da6e2130cd94d 2025-07-24T03:47:30.3216809Z * [new tag] trunk/ee56e9f8a8202bfa02c2d9ae3cfa07d4a41ab567 -> trunk/ee56e9f8a8202bfa02c2d9ae3cfa07d4a41ab567 2025-07-24T03:47:30.3217651Z * [new tag] trunk/ee5a434f8ce96a8f13b8c655356222137483c4db -> trunk/ee5a434f8ce96a8f13b8c655356222137483c4db 2025-07-24T03:47:30.3218495Z * [new tag] trunk/ee5c2908cbfcbda6e8a5737d9939d36ba417d627 -> trunk/ee5c2908cbfcbda6e8a5737d9939d36ba417d627 2025-07-24T03:47:30.3219343Z * [new tag] trunk/ee72338f0ca91df825306cb9f780b0274c07e9ae -> trunk/ee72338f0ca91df825306cb9f780b0274c07e9ae 2025-07-24T03:47:30.3220179Z * [new tag] trunk/ee9ac36c2316f430c4de2a0982bde3cb8087cbe7 -> trunk/ee9ac36c2316f430c4de2a0982bde3cb8087cbe7 2025-07-24T03:47:30.3221033Z * [new tag] trunk/eea3bcb3d146f16a8f8c91a9e2a8f1b76c5917f4 -> trunk/eea3bcb3d146f16a8f8c91a9e2a8f1b76c5917f4 2025-07-24T03:47:30.3222721Z * [new tag] trunk/eeaefa133694811aac1fd215bcae2e7f1e098d1d -> trunk/eeaefa133694811aac1fd215bcae2e7f1e098d1d 2025-07-24T03:47:30.3223682Z * [new tag] trunk/eeb0783fe6357fd59a91b65c5dba0a00b21506b7 -> trunk/eeb0783fe6357fd59a91b65c5dba0a00b21506b7 2025-07-24T03:47:30.3224682Z * [new tag] trunk/eecaa0bbc6a39c89366f9ec97797479c27f6d760 -> trunk/eecaa0bbc6a39c89366f9ec97797479c27f6d760 2025-07-24T03:47:30.3225547Z * [new tag] trunk/eeda1a75ace75ce8a6763050fb91d236a6d3287b -> trunk/eeda1a75ace75ce8a6763050fb91d236a6d3287b 2025-07-24T03:47:30.3226395Z * [new tag] trunk/eef253d9f6fc8b9774d199889a817f50e89572c2 -> trunk/eef253d9f6fc8b9774d199889a817f50e89572c2 2025-07-24T03:47:30.3227251Z * [new tag] trunk/ef256ad17b7b4fd9b79c4b580b4023f2c50eef11 -> trunk/ef256ad17b7b4fd9b79c4b580b4023f2c50eef11 2025-07-24T03:47:30.3228101Z * [new tag] trunk/ef38edb2847c87702db7c3a7c71413eb59f40b2b -> trunk/ef38edb2847c87702db7c3a7c71413eb59f40b2b 2025-07-24T03:47:30.3228962Z * [new tag] trunk/ef4cca2d79eba61441da46906b30f8f6165cc455 -> trunk/ef4cca2d79eba61441da46906b30f8f6165cc455 2025-07-24T03:47:30.3229819Z * [new tag] trunk/ef6d2cee7a93c1e8f52a7595b6f630d0fcd83692 -> trunk/ef6d2cee7a93c1e8f52a7595b6f630d0fcd83692 2025-07-24T03:47:30.3230681Z * [new tag] trunk/ef6dfa06a9ff84bf04b0d83cfab4cb396a508a0e -> trunk/ef6dfa06a9ff84bf04b0d83cfab4cb396a508a0e 2025-07-24T03:47:30.3231538Z * [new tag] trunk/ef97bd47131423e0819b293dc227b62d0c376023 -> trunk/ef97bd47131423e0819b293dc227b62d0c376023 2025-07-24T03:47:30.3232370Z * [new tag] trunk/efbf07e7ea46c33c936cac882eb1c8b782d1d070 -> trunk/efbf07e7ea46c33c936cac882eb1c8b782d1d070 2025-07-24T03:47:30.3233226Z * [new tag] trunk/effe376db07c7071fa4d704dd0787a394a5eda50 -> trunk/effe376db07c7071fa4d704dd0787a394a5eda50 2025-07-24T03:47:30.3234079Z * [new tag] trunk/f04fd4dc4eaf16557f9212240bdaa8377d51bad1 -> trunk/f04fd4dc4eaf16557f9212240bdaa8377d51bad1 2025-07-24T03:47:30.3234915Z * [new tag] trunk/f096820d0f845f36529fe774cf761d5fc4ad02a8 -> trunk/f096820d0f845f36529fe774cf761d5fc4ad02a8 2025-07-24T03:47:30.3487775Z * [new tag] trunk/f09a484b8164aaadd57a79354f0ccf47733f365e -> trunk/f09a484b8164aaadd57a79354f0ccf47733f365e 2025-07-24T03:47:30.3488644Z * [new tag] trunk/f0b388665efd20c1ec35fc48afb115a0f15116ce -> trunk/f0b388665efd20c1ec35fc48afb115a0f15116ce 2025-07-24T03:47:30.3489495Z * [new tag] trunk/f0bee87eea03f6ded538590e2a073cc62ecd2818 -> trunk/f0bee87eea03f6ded538590e2a073cc62ecd2818 2025-07-24T03:47:30.3490406Z * [new tag] trunk/f10e4430e272e40b5d7dbdc4bfa34e6d7a124aa5 -> trunk/f10e4430e272e40b5d7dbdc4bfa34e6d7a124aa5 2025-07-24T03:47:30.3491299Z * [new tag] trunk/f1331f3f1b43d1848341a0f0da66a13cb05570d0 -> trunk/f1331f3f1b43d1848341a0f0da66a13cb05570d0 2025-07-24T03:47:30.3492153Z * [new tag] trunk/f140fac8dcfa6ec20d594bc4637417a83bc90036 -> trunk/f140fac8dcfa6ec20d594bc4637417a83bc90036 2025-07-24T03:47:30.3493010Z * [new tag] trunk/f151b201236f959e3874b73dde9bfae5e10dae78 -> trunk/f151b201236f959e3874b73dde9bfae5e10dae78 2025-07-24T03:47:30.3493837Z * [new tag] trunk/f154f9b3040369a7979d5de7acb6fe21433eda83 -> trunk/f154f9b3040369a7979d5de7acb6fe21433eda83 2025-07-24T03:47:30.3494670Z * [new tag] trunk/f16053f0c9a09fa337fbf85aaf64f88712b8dcdb -> trunk/f16053f0c9a09fa337fbf85aaf64f88712b8dcdb 2025-07-24T03:47:30.3495519Z * [new tag] trunk/f168cf49a8e2e81dcd4cd3c631325221a4f3faac -> trunk/f168cf49a8e2e81dcd4cd3c631325221a4f3faac 2025-07-24T03:47:30.3496409Z * [new tag] trunk/f179b7198522e6d93bd103efba1a1ebd5a2cf891 -> trunk/f179b7198522e6d93bd103efba1a1ebd5a2cf891 2025-07-24T03:47:30.3497459Z * [new tag] trunk/f17f6581252ff07e75f33fdce0b4248acdb5da0b -> trunk/f17f6581252ff07e75f33fdce0b4248acdb5da0b 2025-07-24T03:47:30.3498405Z * [new tag] trunk/f1f49e56b079bfc73b1b2fb061d150ec787ee716 -> trunk/f1f49e56b079bfc73b1b2fb061d150ec787ee716 2025-07-24T03:47:30.3499264Z * [new tag] trunk/f2b44424a1f3481ddc066e8dd62c0cafa1298e92 -> trunk/f2b44424a1f3481ddc066e8dd62c0cafa1298e92 2025-07-24T03:47:30.3500119Z * [new tag] trunk/f2d70898c6fad6c6e867d9bf60eced6aacfa9782 -> trunk/f2d70898c6fad6c6e867d9bf60eced6aacfa9782 2025-07-24T03:47:30.3500963Z * [new tag] trunk/f2e712ca14dbbb8435427fd536b0dd63994a9265 -> trunk/f2e712ca14dbbb8435427fd536b0dd63994a9265 2025-07-24T03:47:30.3501811Z * [new tag] trunk/f2ecf6145fde55baa8a91e27b6b3489172f0e639 -> trunk/f2ecf6145fde55baa8a91e27b6b3489172f0e639 2025-07-24T03:47:30.3502700Z * [new tag] trunk/f34335bf3373301ba3af3ff8268cd0cd1715bd2e -> trunk/f34335bf3373301ba3af3ff8268cd0cd1715bd2e 2025-07-24T03:47:30.3503602Z * [new tag] trunk/f34ab1628b6798cc62f55260dfad872f5df8fd94 -> trunk/f34ab1628b6798cc62f55260dfad872f5df8fd94 2025-07-24T03:47:30.3504451Z * [new tag] trunk/f3e6c8e834a49f738e329b802b4b10912e33915f -> trunk/f3e6c8e834a49f738e329b802b4b10912e33915f 2025-07-24T03:47:30.3505291Z * [new tag] trunk/f3ec16c26a24bcbdcb96c692e321be1a4464067c -> trunk/f3ec16c26a24bcbdcb96c692e321be1a4464067c 2025-07-24T03:47:30.3506149Z * [new tag] trunk/f402eed4d9515dee5bb9b11a2b157de57a5988c1 -> trunk/f402eed4d9515dee5bb9b11a2b157de57a5988c1 2025-07-24T03:47:30.3507003Z * [new tag] trunk/f40efde2a474ffd77c021686da2f14864d6aeb6d -> trunk/f40efde2a474ffd77c021686da2f14864d6aeb6d 2025-07-24T03:47:30.3507843Z * [new tag] trunk/f41d017aa6ca1bd121cee6e428875b7fd31a7ad0 -> trunk/f41d017aa6ca1bd121cee6e428875b7fd31a7ad0 2025-07-24T03:47:30.3508739Z * [new tag] trunk/f4376cac54978b9d7c859c1e3495a57d72ab9601 -> trunk/f4376cac54978b9d7c859c1e3495a57d72ab9601 2025-07-24T03:47:30.3509634Z * [new tag] trunk/f4406689b8805ed23dfef34c6320bb99ea6d3767 -> trunk/f4406689b8805ed23dfef34c6320bb99ea6d3767 2025-07-24T03:47:30.3510479Z * [new tag] trunk/f44a9eee4778d2a2aafe3a0beeea7a37ab8d380e -> trunk/f44a9eee4778d2a2aafe3a0beeea7a37ab8d380e 2025-07-24T03:47:30.3511341Z * [new tag] trunk/f45f483884ef524f2d8260dcf2b2ba2c203eab2f -> trunk/f45f483884ef524f2d8260dcf2b2ba2c203eab2f 2025-07-24T03:47:30.3512177Z * [new tag] trunk/f45f6e86b9ef3d9c94b87c2240dbe9a07bb9fd3d -> trunk/f45f6e86b9ef3d9c94b87c2240dbe9a07bb9fd3d 2025-07-24T03:47:30.3513013Z * [new tag] trunk/f48a1576606186cf2104c82be367b617912322de -> trunk/f48a1576606186cf2104c82be367b617912322de 2025-07-24T03:47:30.3513858Z * [new tag] trunk/f4d60a68dd2fb9fda92af83df016f4cfe3af00ba -> trunk/f4d60a68dd2fb9fda92af83df016f4cfe3af00ba 2025-07-24T03:47:30.3514767Z * [new tag] trunk/f4d8bc46c7706f872abcb4ec41f0b32207d5d826 -> trunk/f4d8bc46c7706f872abcb4ec41f0b32207d5d826 2025-07-24T03:47:30.3515674Z * [new tag] trunk/f56bfb3030acff03e21d568089f3af9e09ec7cb2 -> trunk/f56bfb3030acff03e21d568089f3af9e09ec7cb2 2025-07-24T03:47:30.3793809Z * [new tag] trunk/f58a680d09e13658a52c6ba05c63c15759846bcc -> trunk/f58a680d09e13658a52c6ba05c63c15759846bcc 2025-07-24T03:47:30.3794703Z * [new tag] trunk/f59c76b5494f83abbb2ca169e13201439396c1aa -> trunk/f59c76b5494f83abbb2ca169e13201439396c1aa 2025-07-24T03:47:30.3795575Z * [new tag] trunk/f5bbaa22536437e9f689db8ee7a5ca472fdf4bd0 -> trunk/f5bbaa22536437e9f689db8ee7a5ca472fdf4bd0 2025-07-24T03:47:30.3796420Z * [new tag] trunk/f5e1b24945cf7852a1425923ca543e1f83be14b1 -> trunk/f5e1b24945cf7852a1425923ca543e1f83be14b1 2025-07-24T03:47:30.3797493Z * [new tag] trunk/f5e6e52f2504d0d2c553fd292c89d999b2033616 -> trunk/f5e6e52f2504d0d2c553fd292c89d999b2033616 2025-07-24T03:47:30.3799052Z * [new tag] trunk/f5eb42e4c0405141134e9c52919ebb36ec77ca5f -> trunk/f5eb42e4c0405141134e9c52919ebb36ec77ca5f 2025-07-24T03:47:30.3799922Z * [new tag] trunk/f5f4beaf562911b5cf1a9e8b9eae5e5946681f3c -> trunk/f5f4beaf562911b5cf1a9e8b9eae5e5946681f3c 2025-07-24T03:47:30.3800786Z * [new tag] trunk/f63988ae00f856d8a3a6f748310962ba55361f0b -> trunk/f63988ae00f856d8a3a6f748310962ba55361f0b 2025-07-24T03:47:30.3801610Z * [new tag] trunk/f6d138807f138868de0397936e2bee482c1fb987 -> trunk/f6d138807f138868de0397936e2bee482c1fb987 2025-07-24T03:47:30.3802429Z * [new tag] trunk/f6e18bc1054624bb148632a85c10371d6cc62492 -> trunk/f6e18bc1054624bb148632a85c10371d6cc62492 2025-07-24T03:47:30.3803368Z * [new tag] trunk/f70c80105ebc2a118af848c80a18d6efff820f72 -> trunk/f70c80105ebc2a118af848c80a18d6efff820f72 2025-07-24T03:47:30.3804215Z * [new tag] trunk/f7127b9b940a98596599acda1f89fc5153635a5d -> trunk/f7127b9b940a98596599acda1f89fc5153635a5d 2025-07-24T03:47:30.3805086Z * [new tag] trunk/f7130c097efa826313df44f0dcfa7d4d2e4253ec -> trunk/f7130c097efa826313df44f0dcfa7d4d2e4253ec 2025-07-24T03:47:30.3805934Z * [new tag] trunk/f742b32a2ff6326f67512d2b426cdc2da8413a75 -> trunk/f742b32a2ff6326f67512d2b426cdc2da8413a75 2025-07-24T03:47:30.3806780Z * [new tag] trunk/f76f4abf3f10bd36a47e7cebdce90290ce76e564 -> trunk/f76f4abf3f10bd36a47e7cebdce90290ce76e564 2025-07-24T03:47:30.3807636Z * [new tag] trunk/f79689bd3d145e76746e4cf81e99c40df8272a72 -> trunk/f79689bd3d145e76746e4cf81e99c40df8272a72 2025-07-24T03:47:30.3808474Z * [new tag] trunk/f7a5ad6c2987ee5a83aa5d868cee3b8067d3de94 -> trunk/f7a5ad6c2987ee5a83aa5d868cee3b8067d3de94 2025-07-24T03:47:30.3809325Z * [new tag] trunk/f7f550649f129370d47ec9ec7f8383eaa5b2f849 -> trunk/f7f550649f129370d47ec9ec7f8383eaa5b2f849 2025-07-24T03:47:30.3810186Z * [new tag] trunk/f80a61adf57badf999387efe47b8b2ff3388bd96 -> trunk/f80a61adf57badf999387efe47b8b2ff3388bd96 2025-07-24T03:47:30.3811047Z * [new tag] trunk/f80f97d192253336940c67fd9bf6004ff8711088 -> trunk/f80f97d192253336940c67fd9bf6004ff8711088 2025-07-24T03:47:30.3811877Z * [new tag] trunk/f810480dbefabbff6cf0852c9f610f84dd440b8d -> trunk/f810480dbefabbff6cf0852c9f610f84dd440b8d 2025-07-24T03:47:30.3812719Z * [new tag] trunk/f810e98143b7b1fe3436d5315101b22aa8438775 -> trunk/f810e98143b7b1fe3436d5315101b22aa8438775 2025-07-24T03:47:30.3813544Z * [new tag] trunk/f8293116f55a9ad399e4938f0fe3e34c6faa47c4 -> trunk/f8293116f55a9ad399e4938f0fe3e34c6faa47c4 2025-07-24T03:47:30.3814376Z * [new tag] trunk/f85954e043a5b6affb589012e8cc5eff8fdb5358 -> trunk/f85954e043a5b6affb589012e8cc5eff8fdb5358 2025-07-24T03:47:30.3815228Z * [new tag] trunk/f860992db5601a78f73eefc0a56af1d7158d6953 -> trunk/f860992db5601a78f73eefc0a56af1d7158d6953 2025-07-24T03:47:30.3816061Z * [new tag] trunk/f87d1179391d66854e3c6ca20717803cfa22f878 -> trunk/f87d1179391d66854e3c6ca20717803cfa22f878 2025-07-24T03:47:30.3816901Z * [new tag] trunk/f88d7a7a34d5a54d58f0a7edc01ff69f46221b6c -> trunk/f88d7a7a34d5a54d58f0a7edc01ff69f46221b6c 2025-07-24T03:47:30.3817750Z * [new tag] trunk/f8baec8984ed90b526fdc03eec19d8039e7d373b -> trunk/f8baec8984ed90b526fdc03eec19d8039e7d373b 2025-07-24T03:47:30.3818590Z * [new tag] trunk/f8c0a4bd28087b02958b92d7b4f41ebc607292b7 -> trunk/f8c0a4bd28087b02958b92d7b4f41ebc607292b7 2025-07-24T03:47:30.3819429Z * [new tag] trunk/f8cc4c0af802269fbe16a418386a94b3b6547c74 -> trunk/f8cc4c0af802269fbe16a418386a94b3b6547c74 2025-07-24T03:47:30.3820261Z * [new tag] trunk/f92a2035e41699b026abc25a1a8dde6971bfe477 -> trunk/f92a2035e41699b026abc25a1a8dde6971bfe477 2025-07-24T03:47:30.3821219Z * [new tag] trunk/f97f03c7efcf2b7a45384b9094eb6be4cb419546 -> trunk/f97f03c7efcf2b7a45384b9094eb6be4cb419546 2025-07-24T03:47:30.4057498Z * [new tag] trunk/fa0ea57f5e083daab1eb9cda39ab53a5159b077d -> trunk/fa0ea57f5e083daab1eb9cda39ab53a5159b077d 2025-07-24T03:47:30.4058460Z * [new tag] trunk/fa1c20ae9285f7994a73d2d06025065f96b67a57 -> trunk/fa1c20ae9285f7994a73d2d06025065f96b67a57 2025-07-24T03:47:30.4059390Z * [new tag] trunk/fa3c38c7ae17b8d8fccd0958831f9f1ced9e46b3 -> trunk/fa3c38c7ae17b8d8fccd0958831f9f1ced9e46b3 2025-07-24T03:47:30.4060263Z * [new tag] trunk/fa4f07b5b80bdcf99a1c7452de41939d2ab5886f -> trunk/fa4f07b5b80bdcf99a1c7452de41939d2ab5886f 2025-07-24T03:47:30.4061112Z * [new tag] trunk/fa705f791249c5eee912096f1d7ac7b2d5b60e8c -> trunk/fa705f791249c5eee912096f1d7ac7b2d5b60e8c 2025-07-24T03:47:30.4062002Z * [new tag] trunk/fab53dfdf1d89cecd5e82b12cced9b6dd217e87c -> trunk/fab53dfdf1d89cecd5e82b12cced9b6dd217e87c 2025-07-24T03:47:30.4062891Z * [new tag] trunk/fab85fc5f995ef79e67dc4b083f8cfabe7a90798 -> trunk/fab85fc5f995ef79e67dc4b083f8cfabe7a90798 2025-07-24T03:47:30.4063759Z * [new tag] trunk/fac0be7b9c80f20bbff1e813225dcbced7ff4d31 -> trunk/fac0be7b9c80f20bbff1e813225dcbced7ff4d31 2025-07-24T03:47:30.4064689Z * [new tag] trunk/fac0cc16efd342637a3d1953caf2ecfa8a89947c -> trunk/fac0cc16efd342637a3d1953caf2ecfa8a89947c 2025-07-24T03:47:30.4065603Z * [new tag] trunk/fadc936fad0793e931ed2eb89577e1d10d212f71 -> trunk/fadc936fad0793e931ed2eb89577e1d10d212f71 2025-07-24T03:47:30.4066462Z * [new tag] trunk/fb45649df7267e97efffec8305cddcb23e97d53f -> trunk/fb45649df7267e97efffec8305cddcb23e97d53f 2025-07-24T03:47:30.4067313Z * [new tag] trunk/fb462cec8d8674ad547c55dbe90710bde1dc2019 -> trunk/fb462cec8d8674ad547c55dbe90710bde1dc2019 2025-07-24T03:47:30.4068170Z * [new tag] trunk/fb731fe371cb1b5bf95de84b19c213590526acb2 -> trunk/fb731fe371cb1b5bf95de84b19c213590526acb2 2025-07-24T03:47:30.4069034Z * [new tag] trunk/fb75dea2c1b93c78dccf08d5fd5e20b362ecd405 -> trunk/fb75dea2c1b93c78dccf08d5fd5e20b362ecd405 2025-07-24T03:47:30.4069901Z * [new tag] trunk/fb9a5d248f36ddce041025c8fc5be0d8bee454b0 -> trunk/fb9a5d248f36ddce041025c8fc5be0d8bee454b0 2025-07-24T03:47:30.4070878Z * [new tag] trunk/fbbab794ef6befbe7ffab3648e9b1f2042942fed -> trunk/fbbab794ef6befbe7ffab3648e9b1f2042942fed 2025-07-24T03:47:30.4071816Z * [new tag] trunk/fbd88ae2b5f444cb4b419c415258caeaef4b7325 -> trunk/fbd88ae2b5f444cb4b419c415258caeaef4b7325 2025-07-24T03:47:30.4072669Z * [new tag] trunk/fc0376e8b162d8fcf4375ae30566139eae7d48ed -> trunk/fc0376e8b162d8fcf4375ae30566139eae7d48ed 2025-07-24T03:47:30.4073517Z * [new tag] trunk/fc10d4b1d649f1460b587f3ab45ad4403d84518c -> trunk/fc10d4b1d649f1460b587f3ab45ad4403d84518c 2025-07-24T03:47:30.4074363Z * [new tag] trunk/fc177801afcbf12543b5e193e736b155f79d4ad3 -> trunk/fc177801afcbf12543b5e193e736b155f79d4ad3 2025-07-24T03:47:30.4075194Z * [new tag] trunk/fc5a404eb1e28fdb39f5b91d6378699d3b042749 -> trunk/fc5a404eb1e28fdb39f5b91d6378699d3b042749 2025-07-24T03:47:30.4076026Z * [new tag] trunk/fc5ae1229341ca2841a977197c644733c6a5c789 -> trunk/fc5ae1229341ca2841a977197c644733c6a5c789 2025-07-24T03:47:30.4076887Z * [new tag] trunk/fc772692622e89335dc28638c512bb33dbed1729 -> trunk/fc772692622e89335dc28638c512bb33dbed1729 2025-07-24T03:47:30.4077841Z * [new tag] trunk/fca7013f85d4e7ac07bdd461f490aa159feac6a0 -> trunk/fca7013f85d4e7ac07bdd461f490aa159feac6a0 2025-07-24T03:47:30.4078818Z * [new tag] trunk/fcbf7c749a839cc817927ceba8ea2887cc28dbf5 -> trunk/fcbf7c749a839cc817927ceba8ea2887cc28dbf5 2025-07-24T03:47:30.4079909Z * [new tag] trunk/fcc682be4bda58894a15fee1d9041c6043fea66f -> trunk/fcc682be4bda58894a15fee1d9041c6043fea66f 2025-07-24T03:47:30.4080965Z * [new tag] trunk/fd47401536a35fa5fbf68f0b67fdbf94628f5c23 -> trunk/fd47401536a35fa5fbf68f0b67fdbf94628f5c23 2025-07-24T03:47:30.4081924Z * [new tag] trunk/fd4bb29410c035b31ca55262c3012cadb1194aae -> trunk/fd4bb29410c035b31ca55262c3012cadb1194aae 2025-07-24T03:47:30.4082961Z * [new tag] trunk/fd4f704905f95b46c4c8fb4108461ff56ce750c5 -> trunk/fd4f704905f95b46c4c8fb4108461ff56ce750c5 2025-07-24T03:47:30.4083925Z * [new tag] trunk/fd51bcdd21683c715a9b4ef9340c90753964c76f -> trunk/fd51bcdd21683c715a9b4ef9340c90753964c76f 2025-07-24T03:47:30.4084898Z * [new tag] trunk/fd8ea3c8a35e5b4aea3ebd712f2c7ee28c5a3655 -> trunk/fd8ea3c8a35e5b4aea3ebd712f2c7ee28c5a3655 2025-07-24T03:47:30.4085893Z * [new tag] trunk/fda3f3b2ec6c6dc11100cc8ddff07059692d697e -> trunk/fda3f3b2ec6c6dc11100cc8ddff07059692d697e 2025-07-24T03:47:30.4086860Z * [new tag] trunk/fdc5b42a8fa2b15526c81f2c83f614e086056320 -> trunk/fdc5b42a8fa2b15526c81f2c83f614e086056320 2025-07-24T03:47:30.4463008Z * [new tag] trunk/fdf5d97fa8393f56aea2779877efd8a264ad5811 -> trunk/fdf5d97fa8393f56aea2779877efd8a264ad5811 2025-07-24T03:47:30.4463898Z * [new tag] trunk/fe1f1a38dff7c59ec0ec5b05fef058629845d061 -> trunk/fe1f1a38dff7c59ec0ec5b05fef058629845d061 2025-07-24T03:47:30.4464789Z * [new tag] trunk/fe8f556006b3397b7bdf844ba9a6cf329c0c1846 -> trunk/fe8f556006b3397b7bdf844ba9a6cf329c0c1846 2025-07-24T03:47:30.4465640Z * [new tag] trunk/feaa02f9addfc6764843c8b48f8c403de593737c -> trunk/feaa02f9addfc6764843c8b48f8c403de593737c 2025-07-24T03:47:30.4466491Z * [new tag] trunk/febf3c475e6fe369b41ef009f3598659a6df0911 -> trunk/febf3c475e6fe369b41ef009f3598659a6df0911 2025-07-24T03:47:30.4467359Z * [new tag] trunk/fec571cfd458c4644a2f483dbf9f5480feca7939 -> trunk/fec571cfd458c4644a2f483dbf9f5480feca7939 2025-07-24T03:47:30.4468200Z * [new tag] trunk/fec8af8b98f5e17740ff947e9f8a1c447a497413 -> trunk/fec8af8b98f5e17740ff947e9f8a1c447a497413 2025-07-24T03:47:30.4469180Z * [new tag] trunk/fedbd1a48e1e474cf9da5637aae89b5bc4c20626 -> trunk/fedbd1a48e1e474cf9da5637aae89b5bc4c20626 2025-07-24T03:47:30.4470037Z * [new tag] trunk/fee2377f9ea62223f69ea9904c5e25ccb2af5961 -> trunk/fee2377f9ea62223f69ea9904c5e25ccb2af5961 2025-07-24T03:47:30.4470876Z * [new tag] trunk/feea575082439a0496dd404a4925b7d551039065 -> trunk/feea575082439a0496dd404a4925b7d551039065 2025-07-24T03:47:30.4471714Z * [new tag] trunk/fef236da6924bc8105a830f88060df95ea304de7 -> trunk/fef236da6924bc8105a830f88060df95ea304de7 2025-07-24T03:47:30.4472561Z * [new tag] trunk/ff0da08f4bc5ee135b495926cd58a36a1c0e1a5b -> trunk/ff0da08f4bc5ee135b495926cd58a36a1c0e1a5b 2025-07-24T03:47:30.4473409Z * [new tag] trunk/ff611d971fe5362a71c15109cf020d30e6c4b2b9 -> trunk/ff611d971fe5362a71c15109cf020d30e6c4b2b9 2025-07-24T03:47:30.4474243Z * [new tag] trunk/ff7dd1776f9cb8448336338b19b9b53073f2fbda -> trunk/ff7dd1776f9cb8448336338b19b9b53073f2fbda 2025-07-24T03:47:30.4475176Z * [new tag] trunk/ff8b53c056e6556187690a37c944c92feb964d2d -> trunk/ff8b53c056e6556187690a37c944c92feb964d2d 2025-07-24T03:47:30.4476012Z * [new tag] trunk/ffac0de07e0173a073c92c157f43c515009c0de1 -> trunk/ffac0de07e0173a073c92c157f43c515009c0de1 2025-07-24T03:47:30.4476849Z * [new tag] trunk/ffaed8c569406839335bf46dafc4c3e8871e4b8a -> trunk/ffaed8c569406839335bf46dafc4c3e8871e4b8a 2025-07-24T03:47:30.4477711Z * [new tag] trunk/ffc6cbfaf78ca219092ce64dcf113377ae698300 -> trunk/ffc6cbfaf78ca219092ce64dcf113377ae698300 2025-07-24T03:47:30.4478493Z * [new tag] v0.1.1 -> v0.1.1 2025-07-24T03:47:30.4478854Z * [new tag] v0.1.10 -> v0.1.10 2025-07-24T03:47:30.4479316Z * [new tag] v0.1.11 -> v0.1.11 2025-07-24T03:47:30.4479663Z * [new tag] v0.1.12 -> v0.1.12 2025-07-24T03:47:30.4480026Z * [new tag] v0.1.2 -> v0.1.2 2025-07-24T03:47:30.4480372Z * [new tag] v0.1.3 -> v0.1.3 2025-07-24T03:47:30.4480784Z * [new tag] v0.1.4 -> v0.1.4 2025-07-24T03:47:30.4481191Z * [new tag] v0.1.5 -> v0.1.5 2025-07-24T03:47:30.4481528Z * [new tag] v0.1.6 -> v0.1.6 2025-07-24T03:47:30.4481870Z * [new tag] v0.1.7 -> v0.1.7 2025-07-24T03:47:30.4482207Z * [new tag] v0.1.8 -> v0.1.8 2025-07-24T03:47:30.4482563Z * [new tag] v0.1.9 -> v0.1.9 2025-07-24T03:47:30.4482992Z * [new tag] v0.2.0 -> v0.2.0 2025-07-24T03:47:30.4483341Z * [new tag] v0.3.0 -> v0.3.0 2025-07-24T03:47:30.4483695Z * [new tag] v0.3.1 -> v0.3.1 2025-07-24T03:47:30.4484029Z * [new tag] v0.4.0 -> v0.4.0 2025-07-24T03:47:30.4484370Z * [new tag] v0.4.1 -> v0.4.1 2025-07-24T03:47:30.4484706Z * [new tag] v1.0.0 -> v1.0.0 2025-07-24T03:47:30.4485061Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-07-24T03:47:30.4485409Z * [new tag] v1.0.1 -> v1.0.1 2025-07-24T03:47:30.4485774Z * [new tag] v1.0rc0 -> v1.0rc0 2025-07-24T03:47:30.4486130Z * [new tag] v1.0rc1 -> v1.0rc1 2025-07-24T03:47:30.4486475Z * [new tag] v1.1.0 -> v1.1.0 2025-07-24T03:47:30.4486887Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-07-24T03:47:30.4487299Z * [new tag] v1.10.0 -> v1.10.0 2025-07-24T03:47:30.4487665Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-07-24T03:47:30.4488043Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-07-24T03:47:30.4960971Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-07-24T03:47:30.4961492Z * [new tag] v1.10.1 -> v1.10.1 2025-07-24T03:47:30.4961869Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-07-24T03:47:30.4962247Z * [new tag] v1.10.2 -> v1.10.2 2025-07-24T03:47:30.4962650Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-07-24T03:47:30.4963075Z * [new tag] v1.11.0 -> v1.11.0 2025-07-24T03:47:30.4963453Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-07-24T03:47:30.4963814Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-07-24T03:47:30.4964183Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-07-24T03:47:30.4964544Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-07-24T03:47:30.4964913Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-07-24T03:47:30.4965279Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-07-24T03:47:30.4965635Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-07-24T03:47:30.4965995Z * [new tag] v1.12.0 -> v1.12.0 2025-07-24T03:47:30.4966605Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-07-24T03:47:30.4966983Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-07-24T03:47:30.4967510Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-07-24T03:47:30.4967880Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-07-24T03:47:30.4968241Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-07-24T03:47:30.4968602Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-07-24T03:47:30.4968964Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-07-24T03:47:30.4969321Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-07-24T03:47:30.4969686Z * [new tag] v1.12.1 -> v1.12.1 2025-07-24T03:47:30.4970043Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-07-24T03:47:30.4970404Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-07-24T03:47:30.4970777Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-07-24T03:47:30.4971131Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-07-24T03:47:30.4971494Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-07-24T03:47:30.4971849Z * [new tag] v1.13.0 -> v1.13.0 2025-07-24T03:47:30.4972204Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-07-24T03:47:30.4972562Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-07-24T03:47:30.4972973Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-07-24T03:47:30.4973380Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-07-24T03:47:30.4973740Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-07-24T03:47:30.4974106Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-07-24T03:47:30.4974469Z * [new tag] v1.13.1 -> v1.13.1 2025-07-24T03:47:30.4974821Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-07-24T03:47:30.4975196Z * [new tag] v1.2.0 -> v1.2.0 2025-07-24T03:47:30.4975548Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-07-24T03:47:30.4975922Z * [new tag] v1.3.0 -> v1.3.0 2025-07-24T03:47:30.4976278Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-07-24T03:47:30.4976646Z * [new tag] v1.3.1 -> v1.3.1 2025-07-24T03:47:30.4976993Z * [new tag] v1.4.0 -> v1.4.0 2025-07-24T03:47:30.4977337Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-07-24T03:47:30.4977697Z * [new tag] v1.4.1 -> v1.4.1 2025-07-24T03:47:30.4978047Z * [new tag] v1.5.0 -> v1.5.0 2025-07-24T03:47:30.4978413Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-07-24T03:47:30.4978825Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-07-24T03:47:30.4979196Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-07-24T03:47:30.4979612Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-07-24T03:47:30.4979968Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-07-24T03:47:30.4980329Z * [new tag] v1.5.1 -> v1.5.1 2025-07-24T03:47:30.4980685Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-07-24T03:47:30.4981058Z * [new tag] v1.6.0 -> v1.6.0 2025-07-24T03:47:30.4981404Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-07-24T03:47:30.4981900Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-07-24T03:47:30.4982269Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-07-24T03:47:30.4982733Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-07-24T03:47:30.5795501Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-07-24T03:47:30.5795924Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-07-24T03:47:30.5796308Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-07-24T03:47:30.5796679Z * [new tag] v1.7.0 -> v1.7.0 2025-07-24T03:47:30.5797040Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-07-24T03:47:30.5797411Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-07-24T03:47:30.5797767Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-07-24T03:47:30.5798155Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-07-24T03:47:30.5798506Z * [new tag] v1.7.1 -> v1.7.1 2025-07-24T03:47:30.5798875Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-07-24T03:47:30.5799252Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-07-24T03:47:30.5799627Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-07-24T03:47:30.5799987Z * [new tag] v1.8.0 -> v1.8.0 2025-07-24T03:47:30.5800348Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-07-24T03:47:30.5800704Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-07-24T03:47:30.5801084Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-07-24T03:47:30.5801442Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-07-24T03:47:30.5801814Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-07-24T03:47:30.5802180Z * [new tag] v1.8.1 -> v1.8.1 2025-07-24T03:47:30.5802544Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-07-24T03:47:30.5803007Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-07-24T03:47:30.5803371Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-07-24T03:47:30.5803744Z * [new tag] v1.8.2 -> v1.8.2 2025-07-24T03:47:30.5804104Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-07-24T03:47:30.5804491Z * [new tag] v1.9.0 -> v1.9.0 2025-07-24T03:47:30.5804838Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-07-24T03:47:30.5805198Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-07-24T03:47:30.5805553Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-07-24T03:47:30.5805922Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-07-24T03:47:30.5806284Z * [new tag] v1.9.1 -> v1.9.1 2025-07-24T03:47:30.5806637Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-07-24T03:47:30.5807002Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-07-24T03:47:30.5807357Z * [new tag] v2.0.0 -> v2.0.0 2025-07-24T03:47:30.5807716Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-07-24T03:47:30.5808069Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-07-24T03:47:30.5808430Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-07-24T03:47:30.5808799Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-07-24T03:47:30.5809149Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-07-24T03:47:30.5809702Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-07-24T03:47:30.5810053Z * [new tag] v2.0.1 -> v2.0.1 2025-07-24T03:47:30.5810528Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-07-24T03:47:30.5810882Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-07-24T03:47:30.5811246Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-07-24T03:47:30.5811605Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-07-24T03:47:30.5811958Z * [new tag] v2.1.0 -> v2.1.0 2025-07-24T03:47:30.5812322Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-07-24T03:47:30.5812680Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-07-24T03:47:30.5813045Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-07-24T03:47:30.5813409Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-07-24T03:47:30.5813768Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-07-24T03:47:30.5814129Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-07-24T03:47:30.5814483Z * [new tag] v2.1.1 -> v2.1.1 2025-07-24T03:47:30.5814841Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-07-24T03:47:30.5815196Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-07-24T03:47:30.5815553Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-07-24T03:47:30.5815916Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-07-24T03:47:30.5816270Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-07-24T03:47:30.5816636Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-07-24T03:47:30.6298634Z * [new tag] v2.1.2 -> v2.1.2 2025-07-24T03:47:30.6299078Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-07-24T03:47:30.6299463Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-07-24T03:47:30.6299841Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-07-24T03:47:30.6300198Z * [new tag] v2.2.0 -> v2.2.0 2025-07-24T03:47:30.6300550Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-07-24T03:47:30.6300917Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-07-24T03:47:30.6301270Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-07-24T03:47:30.6301641Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-07-24T03:47:30.6302014Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-07-24T03:47:30.6302366Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-07-24T03:47:30.6302740Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-07-24T03:47:30.6303094Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-07-24T03:47:30.6303457Z * [new tag] v2.2.1 -> v2.2.1 2025-07-24T03:47:30.6303806Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-07-24T03:47:30.6304171Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-07-24T03:47:30.6304532Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-07-24T03:47:30.6304882Z * [new tag] v2.2.2 -> v2.2.2 2025-07-24T03:47:30.6305239Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-07-24T03:47:30.6305594Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-07-24T03:47:30.6305954Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-07-24T03:47:30.6306529Z * [new tag] v2.3.0 -> v2.3.0 2025-07-24T03:47:30.6306877Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-07-24T03:47:30.6307359Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-07-24T03:47:30.6307736Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-07-24T03:47:30.6308110Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-07-24T03:47:30.6308489Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-07-24T03:47:30.6308850Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-07-24T03:47:30.6309213Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-07-24T03:47:30.6309569Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-07-24T03:47:30.6309931Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-07-24T03:47:30.6310286Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-07-24T03:47:30.6310645Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-07-24T03:47:30.6311007Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-07-24T03:47:30.6311355Z * [new tag] v2.3.1 -> v2.3.1 2025-07-24T03:47:30.6311707Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-07-24T03:47:30.6312059Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-07-24T03:47:30.6312428Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-07-24T03:47:30.6312781Z * [new tag] v2.4.0 -> v2.4.0 2025-07-24T03:47:30.6313136Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-07-24T03:47:30.6313503Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-07-24T03:47:30.6313864Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-07-24T03:47:30.6314227Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-07-24T03:47:30.6314582Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-07-24T03:47:30.6314941Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-07-24T03:47:30.6315300Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-07-24T03:47:30.6315657Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-07-24T03:47:30.6316016Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-07-24T03:47:30.6316364Z * [new tag] v2.4.1 -> v2.4.1 2025-07-24T03:47:30.6316722Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-07-24T03:47:30.6317076Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-07-24T03:47:30.6317441Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-07-24T03:47:30.6317810Z * [new tag] v2.5.0 -> v2.5.0 2025-07-24T03:47:30.6318157Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-07-24T03:47:30.6318533Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-07-24T03:47:30.6318898Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-07-24T03:47:30.6319270Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-07-24T03:47:30.6319636Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-07-24T03:47:31.2090457Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-07-24T03:47:31.2090899Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-07-24T03:47:31.2091281Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-07-24T03:47:31.2091646Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-07-24T03:47:31.2092222Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-07-24T03:47:31.2092595Z * [new tag] v2.5.1 -> v2.5.1 2025-07-24T03:47:31.2093070Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-07-24T03:47:31.2093437Z * [new tag] v2.6.0 -> v2.6.0 2025-07-24T03:47:31.2093793Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-07-24T03:47:31.2094146Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-07-24T03:47:31.2094514Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-07-24T03:47:31.2094867Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-07-24T03:47:31.2095226Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-07-24T03:47:31.2095578Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-07-24T03:47:31.2095948Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-07-24T03:47:31.2096305Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-07-24T03:47:31.2096655Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-07-24T03:47:31.2097007Z * [new tag] v2.7.0 -> v2.7.0 2025-07-24T03:47:31.2097355Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-07-24T03:47:31.2097728Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-07-24T03:47:31.2098091Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-07-24T03:47:31.2098452Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-07-24T03:47:31.2098815Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-07-24T03:47:31.2099165Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-07-24T03:47:31.2099529Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-07-24T03:47:31.2099881Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-07-24T03:47:31.2100240Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-07-24T03:47:31.2100601Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-07-24T03:47:31.2100952Z * [new tag] v2.7.1 -> v2.7.1 2025-07-24T03:47:31.2101310Z * [new tag] v2.7.1-rc1 -> v2.7.1-rc1 2025-07-24T03:47:31.2101666Z * [new tag] v2.7.1-rc2 -> v2.7.1-rc2 2025-07-24T03:47:31.2102041Z * [new tag] v2.7.1-rc3 -> v2.7.1-rc3 2025-07-24T03:47:31.2102393Z * [new tag] v2.7.1-rc4 -> v2.7.1-rc4 2025-07-24T03:47:31.2102753Z * [new tag] v2.7.1-rc5 -> v2.7.1-rc5 2025-07-24T03:47:31.2103122Z * [new tag] v2.8.0-rc1 -> v2.8.0-rc1 2025-07-24T03:47:31.2103472Z * [new tag] v2.8.0-rc2 -> v2.8.0-rc2 2025-07-24T03:47:31.2103839Z * [new tag] v2.8.0-rc3 -> v2.8.0-rc3 2025-07-24T03:47:31.2104190Z * [new tag] v2.8.0-rc4 -> v2.8.0-rc4 2025-07-24T03:47:31.2104546Z * [new tag] v2.8.0-rc5 -> v2.8.0-rc5 2025-07-24T03:47:31.2104900Z * [new tag] v2.8.0-rc6 -> v2.8.0-rc6 2025-07-24T03:47:31.2105252Z * [new tag] v2.8.0-rc7 -> v2.8.0-rc7 2025-07-24T03:47:31.2105614Z * [new tag] v2.8.0-rc8 -> v2.8.0-rc8 2025-07-24T03:47:31.2105989Z * [new tag] whc_flight_1 -> whc_flight_1 2025-07-24T03:47:31.2106371Z * [new tag] whc_flight_2 -> whc_flight_2 2025-07-24T03:47:31.2106856Z * [new tag] whc_flight_4 -> whc_flight_4 2025-07-24T03:47:31.2321228Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet 27c8ef1839e0747b36769efb192befc9308ff93c^{object} 2025-07-24T03:47:31.2541753Z 27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:47:31.2578437Z ##[endgroup] 2025-07-24T03:47:31.2578888Z ##[group]Determining the checkout info 2025-07-24T03:47:31.2580218Z ##[endgroup] 2025-07-24T03:47:31.2592023Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-07-24T03:47:31.2889736Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-07-24T03:47:31.3144275Z ##[group]Checking out the ref 2025-07-24T03:47:31.3156107Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force 27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:47:32.4359782Z Updating files: 11% (2163/19541) 2025-07-24T03:47:32.5078208Z Updating files: 12% (2345/19541) 2025-07-24T03:47:32.5733475Z Updating files: 13% (2541/19541) 2025-07-24T03:47:32.6402101Z Updating files: 14% (2736/19541) 2025-07-24T03:47:32.7017688Z Updating files: 15% (2932/19541) 2025-07-24T03:47:32.7734787Z Updating files: 16% (3127/19541) 2025-07-24T03:47:32.8580320Z Updating files: 17% (3322/19541) 2025-07-24T03:47:32.9318834Z Updating files: 18% (3518/19541) 2025-07-24T03:47:33.0080762Z Updating files: 19% (3713/19541) 2025-07-24T03:47:33.0808440Z Updating files: 20% (3909/19541) 2025-07-24T03:47:33.1527014Z Updating files: 21% (4104/19541) 2025-07-24T03:47:33.3454005Z Updating files: 22% (4300/19541) 2025-07-24T03:47:33.3690799Z Updating files: 23% (4495/19541) 2025-07-24T03:47:33.4214263Z Updating files: 23% (4560/19541) 2025-07-24T03:47:33.5066430Z Updating files: 24% (4690/19541) 2025-07-24T03:47:33.7091115Z Updating files: 25% (4886/19541) 2025-07-24T03:47:33.7526757Z Updating files: 26% (5081/19541) 2025-07-24T03:47:33.7947382Z Updating files: 27% (5277/19541) 2025-07-24T03:47:33.8775415Z Updating files: 28% (5472/19541) 2025-07-24T03:47:33.9361629Z Updating files: 29% (5667/19541) 2025-07-24T03:47:33.9856120Z Updating files: 30% (5863/19541) 2025-07-24T03:47:34.2124421Z Updating files: 31% (6058/19541) 2025-07-24T03:47:34.4315593Z Updating files: 32% (6254/19541) 2025-07-24T03:47:34.6411928Z Updating files: 32% (6286/19541) 2025-07-24T03:47:34.7728376Z Updating files: 33% (6449/19541) 2025-07-24T03:47:34.8763780Z Updating files: 34% (6644/19541) 2025-07-24T03:47:35.0386554Z Updating files: 35% (6840/19541) 2025-07-24T03:47:35.0865498Z Updating files: 36% (7035/19541) 2025-07-24T03:47:35.1325778Z Updating files: 37% (7231/19541) 2025-07-24T03:47:35.2160295Z Updating files: 38% (7426/19541) 2025-07-24T03:47:35.2616661Z Updating files: 39% (7621/19541) 2025-07-24T03:47:35.4507442Z Updating files: 40% (7817/19541) 2025-07-24T03:47:36.4948652Z Updating files: 40% (7926/19541) 2025-07-24T03:47:36.7446373Z Updating files: 40% (7938/19541) 2025-07-24T03:47:36.8187694Z Updating files: 41% (8012/19541) 2025-07-24T03:47:36.8604699Z Updating files: 42% (8208/19541) 2025-07-24T03:47:36.9460915Z Updating files: 43% (8403/19541) 2025-07-24T03:47:36.9833554Z Updating files: 44% (8599/19541) 2025-07-24T03:47:37.0195580Z Updating files: 45% (8794/19541) 2025-07-24T03:47:37.0904327Z Updating files: 46% (8989/19541) 2025-07-24T03:47:37.1848679Z Updating files: 47% (9185/19541) 2025-07-24T03:47:37.2414662Z Updating files: 48% (9380/19541) 2025-07-24T03:47:37.2918616Z Updating files: 49% (9576/19541) 2025-07-24T03:47:37.3410246Z Updating files: 50% (9771/19541) 2025-07-24T03:47:37.3913664Z Updating files: 51% (9966/19541) 2025-07-24T03:47:37.4039792Z Updating files: 52% (10162/19541) 2025-07-24T03:47:37.4446667Z Updating files: 52% (10211/19541) 2025-07-24T03:47:37.4987191Z Updating files: 53% (10357/19541) 2025-07-24T03:47:37.5884183Z Updating files: 54% (10553/19541) 2025-07-24T03:47:37.6327115Z Updating files: 55% (10748/19541) 2025-07-24T03:47:37.7822888Z Updating files: 56% (10943/19541) 2025-07-24T03:47:37.8260974Z Updating files: 57% (11139/19541) 2025-07-24T03:47:37.8745856Z Updating files: 58% (11334/19541) 2025-07-24T03:47:37.9495531Z Updating files: 59% (11530/19541) 2025-07-24T03:47:38.2727535Z Updating files: 60% (11725/19541) 2025-07-24T03:47:38.3216983Z Updating files: 61% (11921/19541) 2025-07-24T03:47:38.4017729Z Updating files: 62% (12116/19541) 2025-07-24T03:47:38.4041727Z Updating files: 63% (12311/19541) 2025-07-24T03:47:38.4520328Z Updating files: 63% (12321/19541) 2025-07-24T03:47:38.5272572Z Updating files: 64% (12507/19541) 2025-07-24T03:47:38.5792576Z Updating files: 65% (12702/19541) 2025-07-24T03:47:38.6257302Z Updating files: 66% (12898/19541) 2025-07-24T03:47:38.7094121Z Updating files: 67% (13093/19541) 2025-07-24T03:47:38.7520282Z Updating files: 68% (13288/19541) 2025-07-24T03:47:38.8339271Z Updating files: 69% (13484/19541) 2025-07-24T03:47:38.9396927Z Updating files: 70% (13679/19541) 2025-07-24T03:47:39.0325297Z Updating files: 71% (13875/19541) 2025-07-24T03:47:39.1700415Z Updating files: 72% (14070/19541) 2025-07-24T03:47:39.2453961Z Updating files: 73% (14265/19541) 2025-07-24T03:47:39.3798730Z Updating files: 74% (14461/19541) 2025-07-24T03:47:39.4056026Z Updating files: 75% (14656/19541) 2025-07-24T03:47:39.4914093Z Updating files: 75% (14693/19541) 2025-07-24T03:47:39.6250920Z Updating files: 76% (14852/19541) 2025-07-24T03:47:39.7387144Z Updating files: 77% (15047/19541) 2025-07-24T03:47:39.8184175Z Updating files: 78% (15242/19541) 2025-07-24T03:47:39.9590138Z Updating files: 79% (15438/19541) 2025-07-24T03:47:40.0686702Z Updating files: 80% (15633/19541) 2025-07-24T03:47:40.1802101Z Updating files: 81% (15829/19541) 2025-07-24T03:47:40.3454382Z Updating files: 82% (16024/19541) 2025-07-24T03:47:40.4054123Z Updating files: 83% (16220/19541) 2025-07-24T03:47:40.4312548Z Updating files: 83% (16349/19541) 2025-07-24T03:47:40.6244779Z Updating files: 84% (16415/19541) 2025-07-24T03:47:40.7102730Z Updating files: 85% (16610/19541) 2025-07-24T03:47:40.8483145Z Updating files: 86% (16806/19541) 2025-07-24T03:47:40.9348075Z Updating files: 87% (17001/19541) 2025-07-24T03:47:41.2502795Z Updating files: 88% (17197/19541) 2025-07-24T03:47:41.3252293Z Updating files: 89% (17392/19541) 2025-07-24T03:47:41.4071117Z Updating files: 90% (17587/19541) 2025-07-24T03:47:41.4141779Z Updating files: 90% (17766/19541) 2025-07-24T03:47:41.5413644Z Updating files: 91% (17783/19541) 2025-07-24T03:47:41.6227945Z Updating files: 92% (17978/19541) 2025-07-24T03:47:41.7534126Z Updating files: 93% (18174/19541) 2025-07-24T03:47:41.8944752Z Updating files: 94% (18369/19541) 2025-07-24T03:47:41.9951284Z Updating files: 95% (18564/19541) 2025-07-24T03:47:42.1080693Z Updating files: 96% (18760/19541) 2025-07-24T03:47:42.1988650Z Updating files: 97% (18955/19541) 2025-07-24T03:47:42.4709490Z Updating files: 98% (19151/19541) 2025-07-24T03:47:42.4922141Z Updating files: 98% (19301/19541) 2025-07-24T03:47:42.5872343Z Updating files: 99% (19346/19541) 2025-07-24T03:47:42.5872744Z Updating files: 100% (19541/19541) 2025-07-24T03:47:42.5873014Z Updating files: 100% (19541/19541), done. 2025-07-24T03:47:42.6342351Z Note: switching to '27c8ef1839e0747b36769efb192befc9308ff93c'. 2025-07-24T03:47:42.6342734Z 2025-07-24T03:47:42.6342945Z You are in 'detached HEAD' state. You can look around, make experimental 2025-07-24T03:47:42.6343530Z changes and commit them, and you can discard any commits you make in this 2025-07-24T03:47:42.6344066Z state without impacting any branches by switching back to a branch. 2025-07-24T03:47:42.6344371Z 2025-07-24T03:47:42.6344562Z If you want to create a new branch to retain commits you create, you may 2025-07-24T03:47:42.6345041Z do so (now or later) by using -c with the switch command. Example: 2025-07-24T03:47:42.6345314Z 2025-07-24T03:47:42.6345441Z git switch -c 2025-07-24T03:47:42.6345851Z 2025-07-24T03:47:42.6345949Z Or undo this operation with: 2025-07-24T03:47:42.6346113Z 2025-07-24T03:47:42.6346203Z git switch - 2025-07-24T03:47:42.6346319Z 2025-07-24T03:47:42.6346674Z Turn off this advice by setting config variable advice.detachedHead to false 2025-07-24T03:47:42.6347016Z 2025-07-24T03:47:42.6347107Z HEAD is now at 27c8ef1839e Update 2025-07-24T03:47:42.6544571Z ##[endgroup] 2025-07-24T03:47:42.6544982Z ##[group]Setting up auth for fetching submodules 2025-07-24T03:47:42.6557745Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-07-24T03:47:42.6839343Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-07-24T03:47:42.7097460Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-07-24T03:47:42.7354932Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-07-24T03:47:42.7626436Z ##[endgroup] 2025-07-24T03:47:42.7626887Z ##[group]Fetching submodules 2025-07-24T03:47:42.7638191Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-07-24T03:47:43.1655698Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-07-24T03:47:43.6599422Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-07-24T03:47:43.6600447Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-07-24T03:47:43.6601426Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-07-24T03:47:43.6602373Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-07-24T03:47:43.6603281Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-07-24T03:47:43.6604541Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-07-24T03:47:43.6605733Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-07-24T03:47:43.6606569Z Submodule 'third_party/aiter' (https://github.com/ROCm/aiter.git) registered for path 'third_party/aiter' 2025-07-24T03:47:43.6607441Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-07-24T03:47:43.6608461Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-07-24T03:47:43.6609517Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-07-24T03:47:43.6610462Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-07-24T03:47:43.6611448Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-07-24T03:47:43.6612409Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-07-24T03:47:43.6613268Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-07-24T03:47:43.6614225Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-07-24T03:47:43.6615297Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-07-24T03:47:43.6616178Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-07-24T03:47:43.6617322Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:47:43.6618406Z Submodule 'third_party/gloo' (https://github.com/pytorch/gloo) registered for path 'third_party/gloo' 2025-07-24T03:47:43.6619271Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-07-24T03:47:43.6620156Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-07-24T03:47:43.6620972Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-07-24T03:47:43.6621798Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-07-24T03:47:43.6622694Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-07-24T03:47:43.6623646Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-07-24T03:47:43.6624548Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-07-24T03:47:43.6625373Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-07-24T03:47:43.6626371Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-07-24T03:47:43.6627586Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-07-24T03:47:43.6628560Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-07-24T03:47:43.6629555Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-07-24T03:47:43.6630638Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-07-24T03:47:43.6677827Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-07-24T03:47:43.6678838Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-07-24T03:47:43.6679760Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-07-24T03:47:43.6680661Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-07-24T03:47:43.7457754Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-07-24T03:47:44.2323782Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-07-24T03:47:44.2324945Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-07-24T03:47:45.0382552Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-07-24T03:47:50.9325087Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-07-24T03:47:50.9326331Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-07-24T03:47:50.9327338Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-07-24T03:47:50.9328262Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-07-24T03:47:50.9329215Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-07-24T03:47:50.9330189Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-07-24T03:47:50.9331152Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-07-24T03:47:50.9332430Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-07-24T03:47:50.9333416Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-07-24T03:47:50.9334713Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-07-24T03:47:50.9335410Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-07-24T03:47:50.9335962Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-07-24T03:47:50.9336506Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-07-24T03:47:52.9115717Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-07-24T03:47:53.8394316Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-07-24T03:47:53.8395468Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-07-24T03:47:53.8396598Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-07-24T03:48:17.9308347Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-07-24T03:48:17.9309006Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-07-24T03:48:17.9309625Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-07-24T03:48:17.9310250Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-07-24T03:48:17.9310846Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-07-24T03:48:17.9311411Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-07-24T03:48:17.9311991Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-07-24T03:48:17.9312541Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-07-24T03:48:17.9313145Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-07-24T03:48:17.9313742Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-07-24T03:48:17.9314295Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-07-24T03:48:17.9314840Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter'... 2025-07-24T03:48:17.9315441Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-07-24T03:48:17.9316045Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-07-24T03:48:17.9316599Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-07-24T03:48:17.9317150Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-07-24T03:48:18.0378391Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-07-24T03:48:18.1492193Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-07-24T03:48:18.2399495Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-07-24T03:48:18.4529749Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-07-24T03:48:18.9224430Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-07-24T03:48:19.1446600Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-07-24T03:48:26.6334378Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-07-24T03:48:27.4635716Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-07-24T03:48:27.4753813Z Submodule '3rdparty/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:48:30.9558682Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter/3rdparty/composable_kernel'... 2025-07-24T03:48:33.9953726Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-07-24T03:48:34.1536710Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-07-24T03:48:37.4922390Z Submodule path 'third_party/composable_kernel': checked out '434d19f696da62c12b5372b32cbc9ba968588d7e' 2025-07-24T03:48:37.7810068Z Submodule path 'third_party/cpp-httplib': checked out '3af7f2c16147f3fbc6e4d717032daf505dc1652c' 2025-07-24T03:48:38.3153397Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-07-24T03:48:38.5500800Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-07-24T03:48:45.4792485Z Submodule path 'third_party/cutlass': checked out 'b995f933179c22d3fe0d871c3a53d11e4681950f' 2025-07-24T03:48:46.8817057Z Submodule path 'third_party/fbgemm': checked out '157e88b750c452bef2ab4653fe9d1eeb151ce4c3' 2025-07-24T03:48:46.9325382Z Submodule 'external/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/external/asmjit' 2025-07-24T03:48:46.9326587Z Submodule 'external/composable_kernel' (https://github.com/jwfromm/composable_kernel.git) registered for path 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:48:46.9327719Z Submodule 'external/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:48:46.9328701Z Submodule 'external/cutlass' (https://github.com/jwfromm/cutlass) registered for path 'third_party/fbgemm/external/cutlass' 2025-07-24T03:48:46.9329795Z Submodule 'external/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/external/googletest' 2025-07-24T03:48:46.9330948Z Submodule 'external/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:48:46.9332075Z Submodule 'external/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/fbgemm/external/json' 2025-07-24T03:48:58.0876298Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit'... 2025-07-24T03:48:58.0877292Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/hipify_torch'... 2025-07-24T03:48:58.0878116Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cpuinfo'... 2025-07-24T03:48:58.0878841Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/googletest'... 2025-07-24T03:48:58.0879615Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/composable_kernel'... 2025-07-24T03:48:58.0880386Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cutlass'... 2025-07-24T03:48:58.0881087Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/json'... 2025-07-24T03:48:58.5135357Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'e5d7c0bd5d9aec44d68830187138149e6a8c4e32' 2025-07-24T03:49:01.5639499Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out '4a61bdd4bd4ed730e078aebc7c0fcf046ff29406' 2025-07-24T03:49:02.0479692Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-07-24T03:49:02.7045180Z From https://github.com/jwfromm/cutlass 2025-07-24T03:49:02.7045692Z * branch 3ed8d2ec4ba35ef5d9d8353826209b6f868f63d3 -> FETCH_HEAD 2025-07-24T03:49:07.1519281Z Submodule path 'third_party/fbgemm/external/cutlass': checked out '3ed8d2ec4ba35ef5d9d8353826209b6f868f63d3' 2025-07-24T03:49:07.4275311Z Submodule path 'third_party/fbgemm/external/googletest': checked out 'f8d7d77c06936315286eb55f8de22cd23c188571' 2025-07-24T03:49:07.5224874Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-07-24T03:49:08.6466038Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-07-24T03:49:09.2620660Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-07-24T03:49:09.2766018Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:49:09.2767184Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:49:14.6372250Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-07-24T03:49:14.6373235Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-07-24T03:49:17.6946139Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-07-24T03:49:22.6642736Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-07-24T03:49:24.3981119Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-07-24T03:49:24.6501946Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-07-24T03:49:24.8851570Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-07-24T03:49:25.1473774Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-07-24T03:49:25.3679249Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-07-24T03:49:25.4616202Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-07-24T03:49:25.4731168Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-07-24T03:49:40.5636877Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-07-24T03:49:44.9164588Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-07-24T03:49:45.0751825Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-07-24T03:49:45.4838279Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-07-24T03:49:45.5029018Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:49:45.5030295Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:49:45.5031501Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:49:47.5718036Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-07-24T03:49:47.5719750Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-07-24T03:49:47.5721324Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-07-24T03:49:47.9559469Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-07-24T03:49:47.9805583Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:49:47.9806837Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:49:47.9808247Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:49:47.9810660Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:49:47.9811926Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:49:47.9813210Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:49:47.9814518Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:49:47.9815787Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:49:48.0498521Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-07-24T03:49:58.4095167Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-07-24T03:49:58.4096223Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-07-24T03:49:58.4097195Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-07-24T03:49:58.4098180Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-07-24T03:49:58.4099190Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-07-24T03:49:58.4100208Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-07-24T03:49:58.4101190Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-07-24T03:49:59.2378618Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-07-24T03:49:59.4106543Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-07-24T03:49:59.6111893Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-07-24T03:49:59.7072526Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-07-24T03:49:59.7242460Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:50:00.2309353Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-07-24T03:50:00.2853816Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-07-24T03:50:00.4741081Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-07-24T03:50:00.7628444Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-07-24T03:50:01.5159811Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-07-24T03:50:01.6286309Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-07-24T03:50:01.8751426Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-07-24T03:50:02.1227557Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-07-24T03:50:02.4162031Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-07-24T03:50:02.6372159Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-07-24T03:50:03.2856519Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-07-24T03:50:07.0772573Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-07-24T03:50:07.0915452Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-07-24T03:50:08.1390713Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-07-24T03:50:08.4082311Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-07-24T03:50:10.2816205Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-07-24T03:50:10.3063740Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:50:10.3064987Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:50:10.3066108Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:50:10.3067253Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:50:10.3068627Z Submodule 'third_party/opentelemetry-proto' (https://github.com/open-telemetry/opentelemetry-proto) registered for path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:50:10.3070106Z Submodule 'third_party/opentracing-cpp' (https://github.com/opentracing/opentracing-cpp.git) registered for path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:50:10.3071462Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:50:10.3072618Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:50:22.0086364Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-07-24T03:50:22.0087338Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-07-24T03:50:22.0088277Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-07-24T03:50:22.0089232Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-07-24T03:50:22.0090149Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-07-24T03:50:22.0090996Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-07-24T03:50:22.0091876Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-07-24T03:50:22.0092729Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-07-24T03:50:22.1461563Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-07-24T03:50:22.3614613Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-07-24T03:50:22.4511096Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-07-24T03:50:23.2044341Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-07-24T03:50:23.3110762Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-07-24T03:50:23.4276875Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-07-24T03:50:23.5608661Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-07-24T03:50:23.5740498Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:50:23.5741850Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:50:25.7782597Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-07-24T03:50:25.7783729Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-07-24T03:50:26.9629514Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-07-24T03:50:27.1882968Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-07-24T03:50:34.0701467Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-07-24T03:50:34.1502657Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-07-24T03:50:36.6018520Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-07-24T03:50:36.6154826Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:50:36.6155993Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-07-24T03:50:38.1861590Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-07-24T03:50:38.1862479Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-07-24T03:50:38.2753203Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-07-24T03:50:39.0147219Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-07-24T03:50:39.0963606Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-07-24T03:50:39.2132218Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-07-24T03:50:39.6135288Z Submodule path 'third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-07-24T03:50:39.7678417Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-07-24T03:50:40.0482957Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-07-24T03:50:40.2339377Z Submodule path 'third_party/tensorpipe': checked out '52791a2fd214b2a9dc5759d36725909c1daa7f2e' 2025-07-24T03:50:40.2516511Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:50:40.2517677Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:50:40.2518714Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:50:40.2519808Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:50:42.4215560Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-07-24T03:50:42.4216421Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-07-24T03:50:42.4217222Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-07-24T03:50:42.4218020Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-07-24T03:50:43.0519638Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-07-24T03:50:43.1888640Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-07-24T03:50:43.4889866Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '1dff88e5161cba5c59276d2070d2e304e4dcb242' 2025-07-24T03:50:43.6369239Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-07-24T03:50:43.6482888Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:50:44.4258842Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-07-24T03:50:44.4924804Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-07-24T03:50:44.5182859Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-07-24T03:50:45.0550018Z Entering 'android/libs/fbjni' 2025-07-24T03:50:45.0970991Z Entering 'third_party/FP16' 2025-07-24T03:50:45.1426604Z Entering 'third_party/FXdiv' 2025-07-24T03:50:45.1864033Z Entering 'third_party/NNPACK' 2025-07-24T03:50:45.2268316Z Entering 'third_party/NVTX' 2025-07-24T03:50:45.2676810Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:50:45.3112825Z Entering 'third_party/XNNPACK' 2025-07-24T03:50:45.3535011Z Entering 'third_party/aiter' 2025-07-24T03:50:45.3935594Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:50:45.4395224Z Entering 'third_party/benchmark' 2025-07-24T03:50:45.4810048Z Entering 'third_party/composable_kernel' 2025-07-24T03:50:45.5238927Z Entering 'third_party/cpp-httplib' 2025-07-24T03:50:45.5645313Z Entering 'third_party/cpuinfo' 2025-07-24T03:50:45.6054173Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:50:45.6509546Z Entering 'third_party/cutlass' 2025-07-24T03:50:45.6939920Z Entering 'third_party/fbgemm' 2025-07-24T03:50:45.7363190Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:50:45.7782743Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:50:45.8198249Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:50:45.8617705Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:50:45.9038172Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:50:45.9469514Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:50:45.9899264Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:50:46.0338772Z Entering 'third_party/flash-attention' 2025-07-24T03:50:46.0732749Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:50:46.1156267Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:50:46.1601653Z Entering 'third_party/flatbuffers' 2025-07-24T03:50:46.2028418Z Entering 'third_party/fmt' 2025-07-24T03:50:46.2446417Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:50:46.2860104Z Entering 'third_party/gloo' 2025-07-24T03:50:46.3271893Z Entering 'third_party/googletest' 2025-07-24T03:50:46.3704657Z Entering 'third_party/ideep' 2025-07-24T03:50:46.4115987Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:50:46.4574252Z Entering 'third_party/ittapi' 2025-07-24T03:50:46.4993788Z Entering 'third_party/kineto' 2025-07-24T03:50:46.5407383Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:50:46.5811447Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:50:46.6241145Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:50:46.6666834Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:50:46.7139282Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:50:46.7609356Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:50:46.8061965Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:50:46.8503743Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:50:46.8932183Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:50:46.9352164Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:50:46.9839589Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:50:47.0257929Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:50:47.0697831Z Entering 'third_party/kleidiai' 2025-07-24T03:50:47.1113965Z Entering 'third_party/mimalloc' 2025-07-24T03:50:47.1547156Z Entering 'third_party/nlohmann' 2025-07-24T03:50:47.1992126Z Entering 'third_party/onnx' 2025-07-24T03:50:47.2414956Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:50:47.2854637Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:50:47.3253025Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:50:47.3666097Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:50:47.4102304Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:50:47.4505775Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:50:47.4919861Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:50:47.5328838Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:50:47.5756899Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:50:47.6198843Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:50:47.6612314Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:50:47.7036227Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:50:47.7482480Z Entering 'third_party/pocketfft' 2025-07-24T03:50:47.7881702Z Entering 'third_party/protobuf' 2025-07-24T03:50:47.8268371Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:50:47.8681456Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:50:47.9111745Z Entering 'third_party/psimd' 2025-07-24T03:50:47.9513479Z Entering 'third_party/pthreadpool' 2025-07-24T03:50:47.9914674Z Entering 'third_party/pybind11' 2025-07-24T03:50:48.0316514Z Entering 'third_party/python-peachpy' 2025-07-24T03:50:48.0725311Z Entering 'third_party/sleef' 2025-07-24T03:50:48.1141411Z Entering 'third_party/tensorpipe' 2025-07-24T03:50:48.1532031Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:50:48.1939790Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:50:48.2347844Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:50:48.2757939Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:50:48.3145026Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:50:48.3678800Z ##[endgroup] 2025-07-24T03:50:48.3679235Z ##[group]Persisting credentials for submodules 2025-07-24T03:50:48.3693805Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :\"" 2025-07-24T03:50:48.8749539Z Entering 'android/libs/fbjni' 2025-07-24T03:50:48.9390568Z Entering 'third_party/FP16' 2025-07-24T03:50:49.0017229Z Entering 'third_party/FXdiv' 2025-07-24T03:50:49.0662823Z Entering 'third_party/NNPACK' 2025-07-24T03:50:49.1314022Z Entering 'third_party/NVTX' 2025-07-24T03:50:49.1932802Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:50:49.2545786Z Entering 'third_party/XNNPACK' 2025-07-24T03:50:49.3188953Z Entering 'third_party/aiter' 2025-07-24T03:50:49.3781532Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:50:49.4431789Z Entering 'third_party/benchmark' 2025-07-24T03:50:49.5023755Z Entering 'third_party/composable_kernel' 2025-07-24T03:50:49.5710117Z Entering 'third_party/cpp-httplib' 2025-07-24T03:50:49.6348513Z Entering 'third_party/cpuinfo' 2025-07-24T03:50:49.7006917Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:50:49.7653904Z Entering 'third_party/cutlass' 2025-07-24T03:50:49.8304365Z Entering 'third_party/fbgemm' 2025-07-24T03:50:49.8876603Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:50:49.9481655Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:50:50.0105956Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:50:50.0736568Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:50:50.1391743Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:50:50.1987579Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:50:50.2641367Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:50:50.3265859Z Entering 'third_party/flash-attention' 2025-07-24T03:50:50.3842372Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:50:50.4506568Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:50:50.5128858Z Entering 'third_party/flatbuffers' 2025-07-24T03:50:50.5729106Z Entering 'third_party/fmt' 2025-07-24T03:50:50.6317807Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:50:50.6913781Z Entering 'third_party/gloo' 2025-07-24T03:50:50.7505327Z Entering 'third_party/googletest' 2025-07-24T03:50:50.8092307Z Entering 'third_party/ideep' 2025-07-24T03:50:50.8676121Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:50:50.9312480Z Entering 'third_party/ittapi' 2025-07-24T03:50:50.9901338Z Entering 'third_party/kineto' 2025-07-24T03:50:51.0486173Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:50:51.1077760Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:50:51.1691011Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:50:51.2284884Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:50:51.2887622Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:50:51.3480638Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:50:51.4130272Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:50:51.4786186Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:50:51.5426662Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:50:51.6057833Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:50:51.6708864Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:50:51.7339267Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:50:51.7976482Z Entering 'third_party/kleidiai' 2025-07-24T03:50:51.8586497Z Entering 'third_party/mimalloc' 2025-07-24T03:50:51.9209024Z Entering 'third_party/nlohmann' 2025-07-24T03:50:51.9821204Z Entering 'third_party/onnx' 2025-07-24T03:50:52.0446857Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:50:52.1104455Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:50:52.1728213Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:50:52.2406343Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:50:52.3054229Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:50:52.3674871Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:50:52.4301214Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:50:52.4921431Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:50:52.5541636Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:50:52.6147523Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:50:52.6771139Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:50:52.7425551Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:50:52.8093508Z Entering 'third_party/pocketfft' 2025-07-24T03:50:52.8762779Z Entering 'third_party/protobuf' 2025-07-24T03:50:52.9399855Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:50:53.0020352Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:50:53.0659324Z Entering 'third_party/psimd' 2025-07-24T03:50:53.1338393Z Entering 'third_party/pthreadpool' 2025-07-24T03:50:53.1989020Z Entering 'third_party/pybind11' 2025-07-24T03:50:53.2595565Z Entering 'third_party/python-peachpy' 2025-07-24T03:50:53.3227381Z Entering 'third_party/sleef' 2025-07-24T03:50:53.3836025Z Entering 'third_party/tensorpipe' 2025-07-24T03:50:53.4447883Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:50:53.5107157Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:50:53.5748361Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:50:53.6413866Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:50:53.7035358Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:50:53.7797107Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url\"" 2025-07-24T03:50:54.1838491Z Entering 'android/libs/fbjni' 2025-07-24T03:50:54.2453796Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-07-24T03:50:54.2606364Z Entering 'third_party/FP16' 2025-07-24T03:50:54.3189684Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-07-24T03:50:54.3346970Z Entering 'third_party/FXdiv' 2025-07-24T03:50:54.3977993Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-07-24T03:50:54.4123445Z Entering 'third_party/NNPACK' 2025-07-24T03:50:54.4719835Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-07-24T03:50:54.4873457Z Entering 'third_party/NVTX' 2025-07-24T03:50:54.5462149Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-07-24T03:50:54.5613209Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:50:54.6218530Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-07-24T03:50:54.6370835Z Entering 'third_party/XNNPACK' 2025-07-24T03:50:54.6964410Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-07-24T03:50:54.7142651Z Entering 'third_party/aiter' 2025-07-24T03:50:54.7741634Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-07-24T03:50:54.7882741Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:50:54.8473907Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-07-24T03:50:54.8660259Z Entering 'third_party/benchmark' 2025-07-24T03:50:54.9237147Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-07-24T03:50:54.9407587Z Entering 'third_party/composable_kernel' 2025-07-24T03:50:55.0067699Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-07-24T03:50:55.0252925Z Entering 'third_party/cpp-httplib' 2025-07-24T03:50:55.0842202Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-07-24T03:50:55.1000067Z Entering 'third_party/cpuinfo' 2025-07-24T03:50:55.1579191Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-07-24T03:50:55.1729873Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:50:55.2325857Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-07-24T03:50:55.2487628Z Entering 'third_party/cutlass' 2025-07-24T03:50:55.3084943Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-07-24T03:50:55.3245493Z Entering 'third_party/fbgemm' 2025-07-24T03:50:55.3837302Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-07-24T03:50:55.3980762Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:50:55.4547509Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-07-24T03:50:55.4695366Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:50:55.5280417Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-07-24T03:50:55.5445703Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:50:55.6059854Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-07-24T03:50:55.6210983Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:50:55.6827482Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-07-24T03:50:55.6985257Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:50:55.7582730Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-07-24T03:50:55.7734954Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:50:55.8316796Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-07-24T03:50:55.8471524Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:50:55.9133312Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-07-24T03:50:55.9306634Z Entering 'third_party/flash-attention' 2025-07-24T03:50:55.9906063Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-07-24T03:50:56.0072983Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:50:56.0672370Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-07-24T03:50:56.0836269Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:50:56.1433772Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-07-24T03:50:56.1619394Z Entering 'third_party/flatbuffers' 2025-07-24T03:50:56.2226476Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-07-24T03:50:56.2386811Z Entering 'third_party/fmt' 2025-07-24T03:50:56.2966355Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-07-24T03:50:56.3132256Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:50:56.3717402Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-07-24T03:50:56.3875186Z Entering 'third_party/gloo' 2025-07-24T03:50:56.4473068Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-07-24T03:50:56.4624890Z Entering 'third_party/googletest' 2025-07-24T03:50:56.5230453Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-07-24T03:50:56.5384379Z Entering 'third_party/ideep' 2025-07-24T03:50:56.5969002Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-07-24T03:50:56.6119551Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:50:56.6749687Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-07-24T03:50:56.6943797Z Entering 'third_party/ittapi' 2025-07-24T03:50:56.7533910Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-07-24T03:50:56.7709346Z Entering 'third_party/kineto' 2025-07-24T03:50:56.8337281Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-07-24T03:50:56.8473725Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:50:56.9104014Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-07-24T03:50:56.9239210Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:50:56.9832087Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/DCGM/config remote.origin.url 2025-07-24T03:50:56.9986772Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:50:57.0598455Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/cpr/config remote.origin.url 2025-07-24T03:50:57.0749546Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:50:57.1339786Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/fmt/config remote.origin.url 2025-07-24T03:50:57.1507133Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:50:57.2127353Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/config remote.origin.url 2025-07-24T03:50:57.2265368Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:50:57.2885446Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/modules/doc/config remote.origin.url 2025-07-24T03:50:57.3095524Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:50:57.3692196Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/glog/config remote.origin.url 2025-07-24T03:50:57.3855531Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:50:57.4481342Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/googletest/config remote.origin.url 2025-07-24T03:50:57.4636050Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:50:57.5221631Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/json/config remote.origin.url 2025-07-24T03:50:57.5372342Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:50:57.5962680Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/pfs/config remote.origin.url 2025-07-24T03:50:57.6153548Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:50:57.6781720Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-07-24T03:50:57.6941298Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:50:57.7527903Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-07-24T03:50:57.7732125Z Entering 'third_party/kleidiai' 2025-07-24T03:50:57.8334773Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-07-24T03:50:57.8486218Z Entering 'third_party/mimalloc' 2025-07-24T03:50:57.9086223Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-07-24T03:50:57.9248243Z Entering 'third_party/nlohmann' 2025-07-24T03:50:57.9838657Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-07-24T03:50:58.0010281Z Entering 'third_party/onnx' 2025-07-24T03:50:58.0603149Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-07-24T03:50:58.0788720Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:50:58.1385824Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-07-24T03:50:58.1558930Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:50:58.2171460Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-07-24T03:50:58.2312248Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:50:58.2987639Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-07-24T03:50:58.3148389Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:50:58.3776472Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-07-24T03:50:58.3926839Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:50:58.4545315Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-07-24T03:50:58.4707697Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:50:58.5291569Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-07-24T03:50:58.5447492Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:50:58.6033532Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-07-24T03:50:58.6184724Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:50:58.6786095Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-07-24T03:50:58.6939667Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:50:58.7573727Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-07-24T03:50:58.7720032Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:50:58.8336062Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/civetweb/config remote.origin.url 2025-07-24T03:50:58.8493982Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:50:58.9110761Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/googletest/config remote.origin.url 2025-07-24T03:50:58.9299076Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:50:58.9882296Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-07-24T03:50:59.0078063Z Entering 'third_party/pocketfft' 2025-07-24T03:50:59.0712597Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-07-24T03:50:59.0869166Z Entering 'third_party/protobuf' 2025-07-24T03:50:59.1495111Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-07-24T03:50:59.1637131Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:50:59.2231146Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-07-24T03:50:59.2381987Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:50:59.2987801Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-07-24T03:50:59.3159298Z Entering 'third_party/psimd' 2025-07-24T03:50:59.3756129Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-07-24T03:50:59.3904110Z Entering 'third_party/pthreadpool' 2025-07-24T03:50:59.4508188Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-07-24T03:50:59.4662455Z Entering 'third_party/pybind11' 2025-07-24T03:50:59.5251709Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-07-24T03:50:59.5403346Z Entering 'third_party/python-peachpy' 2025-07-24T03:50:59.5987376Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-07-24T03:50:59.6153243Z Entering 'third_party/sleef' 2025-07-24T03:50:59.6745037Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-07-24T03:50:59.6892844Z Entering 'third_party/tensorpipe' 2025-07-24T03:50:59.7484467Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-07-24T03:50:59.7623190Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:50:59.8220984Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-07-24T03:50:59.8377700Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:50:59.8961716Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-07-24T03:50:59.9142023Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:50:59.9766248Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-07-24T03:50:59.9920568Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:51:00.0563686Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-07-24T03:51:00.0704458Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:51:00.1393011Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-07-24T03:51:00.2050567Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:'" 2025-07-24T03:51:00.5941453Z Entering 'android/libs/fbjni' 2025-07-24T03:51:00.6359890Z Entering 'third_party/FP16' 2025-07-24T03:51:00.6766308Z Entering 'third_party/FXdiv' 2025-07-24T03:51:00.7179632Z Entering 'third_party/NNPACK' 2025-07-24T03:51:00.7589879Z Entering 'third_party/NVTX' 2025-07-24T03:51:00.7992964Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:51:00.8450649Z Entering 'third_party/XNNPACK' 2025-07-24T03:51:00.8879915Z Entering 'third_party/aiter' 2025-07-24T03:51:00.9283354Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:51:00.9734291Z Entering 'third_party/benchmark' 2025-07-24T03:51:01.0146357Z Entering 'third_party/composable_kernel' 2025-07-24T03:51:01.0582972Z Entering 'third_party/cpp-httplib' 2025-07-24T03:51:01.1002799Z Entering 'third_party/cpuinfo' 2025-07-24T03:51:01.1455481Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:51:01.1895857Z Entering 'third_party/cutlass' 2025-07-24T03:51:01.2321553Z Entering 'third_party/fbgemm' 2025-07-24T03:51:01.2719506Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:51:01.3149036Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:51:01.3573495Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:51:01.3996926Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:51:01.4434098Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:51:01.4862076Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:51:01.5328196Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:51:01.5776413Z Entering 'third_party/flash-attention' 2025-07-24T03:51:01.6212758Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:51:01.6659638Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:51:01.7114465Z Entering 'third_party/flatbuffers' 2025-07-24T03:51:01.7538382Z Entering 'third_party/fmt' 2025-07-24T03:51:01.7952316Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:51:01.8372985Z Entering 'third_party/gloo' 2025-07-24T03:51:01.8784650Z Entering 'third_party/googletest' 2025-07-24T03:51:01.9193762Z Entering 'third_party/ideep' 2025-07-24T03:51:01.9645098Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:51:02.0084915Z Entering 'third_party/ittapi' 2025-07-24T03:51:02.0559834Z Entering 'third_party/kineto' 2025-07-24T03:51:02.0957432Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:51:02.1357644Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:51:02.1779883Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:51:02.2203204Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:51:02.2615524Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:51:02.3024090Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:51:02.3479787Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:51:02.3906947Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:51:02.4344411Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:51:02.4762476Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:51:02.5222816Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:51:02.5644776Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:51:02.6147432Z Entering 'third_party/kleidiai' 2025-07-24T03:51:02.6563321Z Entering 'third_party/mimalloc' 2025-07-24T03:51:02.6978456Z Entering 'third_party/nlohmann' 2025-07-24T03:51:02.7391063Z Entering 'third_party/onnx' 2025-07-24T03:51:02.7823529Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:51:02.8255005Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:51:02.8706009Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:51:02.9128055Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:51:02.9564379Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:51:02.9977403Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:51:03.0390614Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:51:03.0807829Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:51:03.1221297Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:51:03.1622286Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:51:03.2057957Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:51:03.2516802Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:51:03.3001914Z Entering 'third_party/pocketfft' 2025-07-24T03:51:03.3421498Z Entering 'third_party/protobuf' 2025-07-24T03:51:03.3835211Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:51:03.4258076Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:51:03.4732309Z Entering 'third_party/psimd' 2025-07-24T03:51:03.5201140Z Entering 'third_party/pthreadpool' 2025-07-24T03:51:03.5657944Z Entering 'third_party/pybind11' 2025-07-24T03:51:03.6080584Z Entering 'third_party/python-peachpy' 2025-07-24T03:51:03.6513295Z Entering 'third_party/sleef' 2025-07-24T03:51:03.6924325Z Entering 'third_party/tensorpipe' 2025-07-24T03:51:03.7372682Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:51:03.7803298Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:51:03.8221471Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:51:03.8636580Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:51:03.9038173Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:51:03.9620922Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:'" 2025-07-24T03:51:04.3705223Z Entering 'android/libs/fbjni' 2025-07-24T03:51:04.4127030Z Entering 'third_party/FP16' 2025-07-24T03:51:04.4538550Z Entering 'third_party/FXdiv' 2025-07-24T03:51:04.4953309Z Entering 'third_party/NNPACK' 2025-07-24T03:51:04.5361948Z Entering 'third_party/NVTX' 2025-07-24T03:51:04.5776375Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:51:04.6208875Z Entering 'third_party/XNNPACK' 2025-07-24T03:51:04.6647697Z Entering 'third_party/aiter' 2025-07-24T03:51:04.7044000Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:51:04.7520625Z Entering 'third_party/benchmark' 2025-07-24T03:51:04.7927770Z Entering 'third_party/composable_kernel' 2025-07-24T03:51:04.8381649Z Entering 'third_party/cpp-httplib' 2025-07-24T03:51:04.8829857Z Entering 'third_party/cpuinfo' 2025-07-24T03:51:04.9242859Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:51:04.9680448Z Entering 'third_party/cutlass' 2025-07-24T03:51:05.0103739Z Entering 'third_party/fbgemm' 2025-07-24T03:51:05.0498887Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:51:05.0920410Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:51:05.1350621Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:51:05.1767882Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:51:05.2200301Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:51:05.2612683Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:51:05.3034104Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:51:05.3464527Z Entering 'third_party/flash-attention' 2025-07-24T03:51:05.3859032Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:51:05.4304927Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:51:05.4742636Z Entering 'third_party/flatbuffers' 2025-07-24T03:51:05.5155770Z Entering 'third_party/fmt' 2025-07-24T03:51:05.5563799Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:51:05.5967152Z Entering 'third_party/gloo' 2025-07-24T03:51:05.6377677Z Entering 'third_party/googletest' 2025-07-24T03:51:05.6792864Z Entering 'third_party/ideep' 2025-07-24T03:51:05.7233285Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:51:05.7702754Z Entering 'third_party/ittapi' 2025-07-24T03:51:05.8109423Z Entering 'third_party/kineto' 2025-07-24T03:51:05.8501130Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:51:05.8929630Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:51:05.9366524Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:51:05.9848528Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:51:06.0283254Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:51:06.0704810Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:51:06.1167816Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:51:06.1591598Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:51:06.2012662Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:51:06.2442159Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:51:06.2891668Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:51:06.3308888Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:51:06.3758862Z Entering 'third_party/kleidiai' 2025-07-24T03:51:06.4240727Z Entering 'third_party/mimalloc' 2025-07-24T03:51:06.4659691Z Entering 'third_party/nlohmann' 2025-07-24T03:51:06.5133605Z Entering 'third_party/onnx' 2025-07-24T03:51:06.5557216Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:51:06.6000549Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:51:06.6393577Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:51:06.6901099Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:51:06.7324582Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:51:06.7758844Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:51:06.8175488Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:51:06.8588784Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:51:06.9018623Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:51:06.9413572Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:51:06.9840560Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:51:07.0281731Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:51:07.0734883Z Entering 'third_party/pocketfft' 2025-07-24T03:51:07.1139163Z Entering 'third_party/protobuf' 2025-07-24T03:51:07.1539680Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:51:07.1951501Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:51:07.2390042Z Entering 'third_party/psimd' 2025-07-24T03:51:07.2832241Z Entering 'third_party/pthreadpool' 2025-07-24T03:51:07.3256956Z Entering 'third_party/pybind11' 2025-07-24T03:51:07.3672717Z Entering 'third_party/python-peachpy' 2025-07-24T03:51:07.4102845Z Entering 'third_party/sleef' 2025-07-24T03:51:07.4515178Z Entering 'third_party/tensorpipe' 2025-07-24T03:51:07.4917227Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:51:07.5360232Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:51:07.5783885Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:51:07.6193939Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:51:07.6583787Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:51:07.7170774Z ##[endgroup] 2025-07-24T03:51:07.7478217Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-07-24T03:51:07.7702752Z 27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:51:07.8034538Z Prepare all required actions 2025-07-24T03:51:07.8101032Z ##[group]Run ./.github/actions/setup-win 2025-07-24T03:51:07.8101314Z with: 2025-07-24T03:51:07.8101495Z cuda-version: 12.6 2025-07-24T03:51:07.8101687Z env: 2025-07-24T03:51:07.8101873Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:07.8102091Z ##[endgroup] 2025-07-24T03:51:07.8199809Z ##[group]Run set -euo pipefail 2025-07-24T03:51:07.8200122Z set -euo pipefail 2025-07-24T03:51:07.8200387Z function get_ec2_metadata() { 2025-07-24T03:51:07.8200751Z  # Pulled from instance metadata endpoint for EC2 2025-07-24T03:51:07.8201363Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-07-24T03:51:07.8201889Z  category=$1 2025-07-24T03:51:07.8202777Z  curl -H "X-aws-ec2-metadata-token: $(curl -s -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-metadata-token-ttl-seconds: 30")" -fsSL "http://169.254.169.254/latest/meta-data/${category}" 2025-07-24T03:51:07.8203638Z } 2025-07-24T03:51:07.8203879Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-07-24T03:51:07.8204282Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-07-24T03:51:07.8204728Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-07-24T03:51:07.8205117Z echo "system info $(uname -a)" 2025-07-24T03:51:07.8224836Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:07.8225271Z env: 2025-07-24T03:51:07.8225603Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:07.8225842Z ##[endgroup] 2025-07-24T03:51:07.9593195Z ami-id: ami-0d9ca55f96fe08fd6 2025-07-24T03:51:08.0046113Z instance-id: i-02d30d6e44b6b83c6 2025-07-24T03:51:08.0404717Z instance-type: c5d.4xlarge 2025-07-24T03:51:08.0603311Z system info MSYS_NT-10.0-17763 EC2AMAZ-IFQ8336 3.5.7-463ebcdc.x86_64 2025-03-03 17:26 UTC x86_64 Msys 2025-07-24T03:51:08.0710260Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-07-24T03:51:08.0711265Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-07-24T03:51:08.0728386Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T03:51:08.0728850Z env: 2025-07-24T03:51:08.0729033Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:08.0729438Z ##[endgroup] 2025-07-24T03:51:08.4747115Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T03:51:08.4822210Z Finished 2025-07-24T03:51:08.5143866Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-07-24T03:51:08.5144369Z # Windows conda is baked into the AMI at this location 2025-07-24T03:51:08.5145634Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-07-24T03:51:08.5146492Z  2025-07-24T03:51:08.5146685Z { 2025-07-24T03:51:08.5146956Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-07-24T03:51:08.5147355Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-07-24T03:51:08.5147699Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-07-24T03:51:08.5148008Z } >> "${GITHUB_ENV}" 2025-07-24T03:51:08.5173787Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:08.5174230Z env: 2025-07-24T03:51:08.5174439Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:08.5174669Z ##[endgroup] 2025-07-24T03:51:08.5487916Z ##[group]Run set +e 2025-07-24T03:51:08.5488168Z set +e 2025-07-24T03:51:08.5488383Z set -x 2025-07-24T03:51:08.5488564Z  2025-07-24T03:51:08.5488776Z PYTHON3=$(${CONDA_RUN} which python3) 2025-07-24T03:51:08.5489071Z EXIT_CODE=$? 2025-07-24T03:51:08.5489277Z  2025-07-24T03:51:08.5492017Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-07-24T03:51:08.5492489Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-07-24T03:51:08.5492870Z  2025-07-24T03:51:08.5493075Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-07-24T03:51:08.5493419Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-07-24T03:51:08.5493713Z else 2025-07-24T03:51:08.5494158Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-07-24T03:51:08.5494900Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-07-24T03:51:08.5495573Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-07-24T03:51:08.5496153Z  # needed. In both cases, Python binary is just called python 2025-07-24T03:51:08.5496538Z  PYTHON=$(${CONDA_RUN} which python) 2025-07-24T03:51:08.5496852Z  EXIT_CODE=$? 2025-07-24T03:51:08.5497072Z  2025-07-24T03:51:08.5497275Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-07-24T03:51:08.5497728Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-07-24T03:51:08.5498142Z  2025-07-24T03:51:08.5498396Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-07-24T03:51:08.5498915Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-07-24T03:51:08.5499391Z  # here pointing to Python 2025-07-24T03:51:08.5499685Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-07-24T03:51:08.5499951Z  2025-07-24T03:51:08.5500159Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-07-24T03:51:08.5500490Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-07-24T03:51:08.5500791Z  else 2025-07-24T03:51:08.5501025Z  echo "Found no Python using ${CONDA_RUN}" 2025-07-24T03:51:08.5501329Z  fi 2025-07-24T03:51:08.5501506Z fi 2025-07-24T03:51:08.5521076Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:08.5521514Z env: 2025-07-24T03:51:08.5521707Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:08.5522087Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:08.5522614Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:08.5523248Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:08.5523612Z ##[endgroup] 2025-07-24T03:51:08.5773189Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-07-24T03:51:15.1854422Z which: no python3 in (/c/Jenkins/Miniconda3:/c/Jenkins/Miniconda3/Library/mingw-w64/bin:/c/Jenkins/Miniconda3/Library/usr/bin:/c/Jenkins/Miniconda3/Library/bin:/c/Jenkins/Miniconda3/Scripts:/c/Jenkins/Miniconda3/bin:/c/Jenkins/Miniconda3/condabin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0:/c/Windows/System32/OpenSSH:/c/Program Files/Amazon/cfn-bootstrap:/c/ProgramData/chocolatey/bin:/c/Program Files/Amazon/AWSCLIV2:/cmd:/mingw64/bin:/usr/bin:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Users/runneruser/AppData/Local/Microsoft/WindowsApps) 2025-07-24T03:51:15.1883729Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-07-24T03:51:15.2770359Z + PYTHON3= 2025-07-24T03:51:15.2770626Z + EXIT_CODE=1 2025-07-24T03:51:15.2770827Z + [[ 1 == \0 ]] 2025-07-24T03:51:15.2825837Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-07-24T03:51:17.0509351Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-07-24T03:51:17.0509692Z + EXIT_CODE=0 2025-07-24T03:51:17.0509888Z + [[ 0 == \0 ]] 2025-07-24T03:51:17.0510365Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-07-24T03:51:17.0511927Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-07-24T03:51:17.0635352Z ++ echo /c/Jenkins/Miniconda3/python 2025-07-24T03:51:17.0696708Z ++ sed s/python/python3/ 2025-07-24T03:51:17.0827172Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-07-24T03:51:17.0827644Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-07-24T03:51:17.1026052Z ++ dirname /c/Jenkins/Miniconda3/python 2025-07-24T03:51:17.1102484Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-07-24T03:51:17.1102914Z + echo /c/Jenkins/Miniconda3 2025-07-24T03:51:17.1224145Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-07-24T03:51:17.1224767Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-07-24T03:51:17.1226079Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-07-24T03:51:17.1257647Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:17.1258103Z env: 2025-07-24T03:51:17.1258299Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:17.1258669Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:17.1259212Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:17.1259693Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:17.1260045Z ##[endgroup] 2025-07-24T03:51:17.2288830Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-07-24T03:51:17.2289844Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-07-24T03:51:17.2290689Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-07-24T03:51:17.2291165Z # that it doesn't interfere 2025-07-24T03:51:17.2291682Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-07-24T03:51:17.2308583Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T03:51:17.2309099Z env: 2025-07-24T03:51:17.2309278Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:17.2309754Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:17.2310288Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:17.2310768Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:17.2311360Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:17.2311651Z ##[endgroup] 2025-07-24T03:51:17.6188638Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T03:51:17.6248256Z Finished 2025-07-24T03:51:18.1730271Z ##[group]Run choco install handle -y 2025-07-24T03:51:18.1730613Z choco install handle -y 2025-07-24T03:51:18.1730924Z handle C:\actions-runner\_work\ 2025-07-24T03:51:18.1747718Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T03:51:18.1748189Z env: 2025-07-24T03:51:18.1748401Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:18.1748786Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:18.1749406Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:18.1762290Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:18.1762734Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:18.1763039Z ##[endgroup] 2025-07-24T03:51:18.5608480Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T03:51:18.5660537Z Finished 2025-07-24T03:51:20.5902035Z Chocolatey v2.4.3 2025-07-24T03:51:20.7483457Z Installing the following packages: 2025-07-24T03:51:20.7488865Z handle 2025-07-24T03:51:20.7493072Z By installing, you accept licenses for the packages. 2025-07-24T03:51:22.1213604Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-07-24T03:51:22.2459653Z 2025-07-24T03:51:22.2460480Z Progress: Downloading Handle 5.0... 15% 2025-07-24T03:51:22.2461112Z Progress: Downloading Handle 5.0... 45% 2025-07-24T03:51:22.2462275Z Progress: Downloading Handle 5.0... 75% 2025-07-24T03:51:22.2462717Z Progress: Downloading Handle 5.0... 100% 2025-07-24T03:51:22.4496339Z 2025-07-24T03:51:22.4496757Z handle v5.0.0 [Approved] 2025-07-24T03:51:22.4711451Z handle package files install completed. Performing other installation steps. 2025-07-24T03:51:23.7648165Z Downloading Handle 2025-07-24T03:51:23.7649024Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-07-24T03:51:23.8610972Z 2025-07-24T03:51:23.8630673Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-07-24T03:51:23.8646764Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-07-24T03:51:23.8663194Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-07-24T03:51:23.8683092Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-07-24T03:51:23.8687464Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-07-24T03:51:23.8694816Z Download of Handle.zip (729.82 KB) completed. 2025-07-24T03:51:27.0197801Z Hashes match. 2025-07-24T03:51:27.0510676Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-07-24T03:51:27.7197713Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-07-24T03:51:27.7252402Z HKEY_CURRENT_USER\Software\Sysinternals 2025-07-24T03:51:27.7285098Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-07-24T03:51:28.1656114Z ShimGen has successfully created a shim for handle.exe 2025-07-24T03:51:28.3597159Z ShimGen has successfully created a shim for handle64.exe 2025-07-24T03:51:28.5398858Z ShimGen has successfully created a shim for handle64a.exe 2025-07-24T03:51:28.5672798Z The install of handle was successful. 2025-07-24T03:51:28.5676270Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-07-24T03:51:28.5819870Z 2025-07-24T03:51:28.5820478Z Chocolatey installed 1/1 packages. 2025-07-24T03:51:28.5820947Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-07-24T03:51:28.5831922Z 2025-07-24T03:51:28.5832284Z Enjoy using Chocolatey? Explore more amazing features to take your 2025-07-24T03:51:28.5832684Z experience to the next level at 2025-07-24T03:51:28.5833215Z https://chocolatey.org/compare 2025-07-24T03:51:29.0167738Z 2025-07-24T03:51:29.0168186Z Nthandle v5.0 - Handle viewer 2025-07-24T03:51:29.0168528Z Copyright (C) 1997-2022 Mark Russinovich 2025-07-24T03:51:29.0168850Z Sysinternals - www.sysinternals.com 2025-07-24T03:51:29.0169053Z 2025-07-24T03:51:29.1267099Z powershell.exe pid: 5484 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:51:29.1267800Z handle.exe pid: 3504 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:51:29.1268382Z handle.exe pid: 5008 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:51:29.1268949Z handle64.exe pid: 5800 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:51:29.1639107Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-07-24T03:51:29.1639540Z python3 .github/scripts/parse_ref.py 2025-07-24T03:51:29.1659564Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:29.1660026Z env: 2025-07-24T03:51:29.1660237Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:29.1660639Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:29.1661176Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:29.1661683Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:29.1662087Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:29.1662400Z ##[endgroup] 2025-07-24T03:51:29.2413653Z Setting output tag=ciflow/trunk/149961 2025-07-24T03:51:29.2589397Z Prepare all required actions 2025-07-24T03:51:29.2638858Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-07-24T03:51:29.2639192Z with: 2025-07-24T03:51:29.2639675Z github-token: *** 2025-07-24T03:51:29.2639885Z env: 2025-07-24T03:51:29.2640065Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:29.2646405Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:29.2646970Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:29.2647447Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:29.2647858Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:29.2648152Z ##[endgroup] 2025-07-24T03:51:29.2781799Z ##[group]Run set -eux 2025-07-24T03:51:29.2782043Z set -eux 2025-07-24T03:51:29.2782453Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-07-24T03:51:29.2803103Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:29.2803550Z env: 2025-07-24T03:51:29.2803743Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:29.2804116Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:29.2804651Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:29.2805143Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:29.2805544Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:29.2806061Z GITHUB_TOKEN: *** 2025-07-24T03:51:29.2806265Z ##[endgroup] 2025-07-24T03:51:29.3005053Z + python3 .github/scripts/get_workflow_job_id.py 16487210679 i-02d30d6e44b6b83c6 2025-07-24T03:51:29.8821793Z Setting output job-id=46614187338 2025-07-24T03:51:29.8822208Z Setting output job-name=win-vs2022-cuda12.6-py3 / build 2025-07-24T03:51:29.9145706Z Prepare all required actions 2025-07-24T03:51:29.9146310Z Getting action download info 2025-07-24T03:51:30.0493636Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-07-24T03:51:30.3511681Z ##[group]Run ./.github/actions/filter-test-configs 2025-07-24T03:51:30.3512071Z with: 2025-07-24T03:51:30.3512454Z github-token: *** 2025-07-24T03:51:30.3512695Z job-name: win-vs2022-cuda12.6-py3 / build 2025-07-24T03:51:30.3513130Z env: 2025-07-24T03:51:30.3513312Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:30.3513683Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:30.3514208Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:30.3514694Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:30.3515087Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:30.3515381Z ##[endgroup] 2025-07-24T03:51:30.3613818Z ##[group]Run nick-fields/retry@v3.0.0 2025-07-24T03:51:30.3614098Z with: 2025-07-24T03:51:30.3614279Z shell: bash 2025-07-24T03:51:30.3614462Z timeout_minutes: 10 2025-07-24T03:51:30.3614671Z max_attempts: 5 2025-07-24T03:51:30.3614864Z retry_wait_seconds: 30 2025-07-24T03:51:30.3615620Z command: set -eux # PyYAML 6.0 doesn't work with MacOS x86 anymore # This must run on Python-3.7 (AmazonLinux2) so can't use request=3.32.2 python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-07-24T03:51:30.3616467Z polling_interval_seconds: 1 2025-07-24T03:51:30.3616711Z warning_on_retry: true 2025-07-24T03:51:30.3616938Z continue_on_error: false 2025-07-24T03:51:30.3617155Z env: 2025-07-24T03:51:30.3617346Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:30.3617759Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:30.3618288Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:30.3618825Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:30.3619223Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:30.3619711Z GITHUB_TOKEN: *** 2025-07-24T03:51:30.3619907Z ##[endgroup] 2025-07-24T03:51:30.4860158Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-07-24T03:51:35.0047706Z Collecting requests==2.27.1 2025-07-24T03:51:35.2029573Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-07-24T03:51:35.3199706Z Collecting pyyaml==6.0.1 2025-07-24T03:51:35.3246814Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl.metadata (2.1 kB) 2025-07-24T03:51:35.3487638Z Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (1.26.19) 2025-07-24T03:51:35.3504836Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2025.4.26) 2025-07-24T03:51:35.3510628Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2.0.4) 2025-07-24T03:51:35.3523527Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-07-24T03:51:35.3840594Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-07-24T03:51:35.4729792Z ---------------------------------------- 63.1/63.1 kB 678.1 kB/s eta 0:00:00 2025-07-24T03:51:35.4784256Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl (152 kB) 2025-07-24T03:51:35.5230213Z ---------------------------------------- 152.8/152.8 kB 3.0 MB/s eta 0:00:00 2025-07-24T03:51:36.8047228Z Installing collected packages: requests, pyyaml 2025-07-24T03:51:36.8048988Z Attempting uninstall: requests 2025-07-24T03:51:36.8059571Z Found existing installation: requests 2.32.3 2025-07-24T03:51:36.8138975Z Uninstalling requests-2.32.3: 2025-07-24T03:51:36.8162647Z Successfully uninstalled requests-2.32.3 2025-07-24T03:51:36.8900291Z Attempting uninstall: pyyaml 2025-07-24T03:51:36.8906247Z Found existing installation: PyYAML 6.0.2 2025-07-24T03:51:36.8985639Z Uninstalling PyYAML-6.0.2: 2025-07-24T03:51:36.9015088Z Successfully uninstalled PyYAML-6.0.2 2025-07-24T03:51:37.0163656Z Successfully installed pyyaml-6.0.1 requests-2.27.1 2025-07-24T03:51:37.4895302Z Command completed after 1 attempt(s). 2025-07-24T03:51:37.5062372Z ##[group]Run set -x 2025-07-24T03:51:37.5062641Z set -x 2025-07-24T03:51:37.5063076Z  2025-07-24T03:51:37.5063442Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-07-24T03:51:37.5063907Z # in runner workspace 2025-07-24T03:51:37.5064292Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-07-24T03:51:37.5084780Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:37.5085249Z env: 2025-07-24T03:51:37.5085442Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:37.5085941Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:37.5086537Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:37.5087032Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:37.5087450Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:37.5087759Z ##[endgroup] 2025-07-24T03:51:37.5299387Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-07-24T03:51:37.5746152Z Setting output tag=ciflow/trunk/149961 2025-07-24T03:51:37.5923544Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-07-24T03:51:37.5923927Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-07-24T03:51:37.5924258Z echo "Job name: ${JOB_NAME}" 2025-07-24T03:51:37.5924534Z  2025-07-24T03:51:37.5924889Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-07-24T03:51:37.5925370Z # in runner workspace 2025-07-24T03:51:37.5925766Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-07-24T03:51:37.5926236Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-07-24T03:51:37.5926547Z  --job-name "${JOB_NAME}" \ 2025-07-24T03:51:37.5926842Z  --test-matrix "" \ 2025-07-24T03:51:37.5927125Z  --selected-test-configs "" \ 2025-07-24T03:51:37.5927432Z  --pr-number "${PR_NUMBER}" \ 2025-07-24T03:51:37.5927737Z  --tag "${TAG}" \ 2025-07-24T03:51:37.5927993Z  --event-name "${EVENT_NAME}" \ 2025-07-24T03:51:37.5928303Z  --schedule "${SCHEDULE}" \ 2025-07-24T03:51:37.5928588Z  --branch "${HEAD_BRANCH}" 2025-07-24T03:51:37.5948200Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:37.5948644Z env: 2025-07-24T03:51:37.5948848Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:37.5949250Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:37.5949804Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:37.5950306Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:37.5950714Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:37.5951243Z GITHUB_TOKEN: *** 2025-07-24T03:51:37.5951481Z JOB_NAME: win-vs2022-cuda12.6-py3 / build 2025-07-24T03:51:37.5951797Z PR_NUMBER: 2025-07-24T03:51:37.5951994Z TAG: ciflow/trunk/149961 2025-07-24T03:51:37.5952243Z EVENT_NAME: push 2025-07-24T03:51:37.5952467Z SCHEDULE: 2025-07-24T03:51:37.5952663Z HEAD_BRANCH: 2025-07-24T03:51:37.5952872Z ##[endgroup] 2025-07-24T03:51:37.6180766Z Workflow: trunk 2025-07-24T03:51:37.6181132Z Job name: win-vs2022-cuda12.6-py3 / build 2025-07-24T03:51:37.9686525Z C:\actions-runner\_work\pytorch\pytorch\.github\scripts\filter_test_configs.py:565: UserWarning: Invalid test matrix input '', exiting 2025-07-24T03:51:37.9688841Z warnings.warn(f"Invalid test matrix input '{args.test_matrix}', exiting") 2025-07-24T03:51:37.9689283Z Setting output is-test-matrix-empty=True 2025-07-24T03:51:37.9932703Z ##[group]Run echo "Filtered matrix:" 2025-07-24T03:51:37.9933035Z echo "Filtered matrix:" 2025-07-24T03:51:37.9933303Z echo "" 2025-07-24T03:51:37.9933503Z  2025-07-24T03:51:37.9933688Z echo 2025-07-24T03:51:37.9934083Z echo "Is the current job unstable? " 2025-07-24T03:51:37.9934380Z  2025-07-24T03:51:37.9934545Z echo 2025-07-24T03:51:37.9934763Z echo "Is keep-going label set? " 2025-07-24T03:51:37.9935034Z  2025-07-24T03:51:37.9935208Z echo 2025-07-24T03:51:37.9935401Z echo "Reenabled issues? " 2025-07-24T03:51:37.9955216Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:37.9955661Z env: 2025-07-24T03:51:37.9955873Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:37.9956249Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:37.9956899Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:37.9957386Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:37.9957782Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:37.9958082Z ##[endgroup] 2025-07-24T03:51:38.0156029Z Filtered matrix: 2025-07-24T03:51:38.0156504Z 2025-07-24T03:51:38.0156615Z 2025-07-24T03:51:38.0156853Z Is the current job unstable? 2025-07-24T03:51:38.0157108Z 2025-07-24T03:51:38.0157476Z Is keep-going label set? 2025-07-24T03:51:38.0157686Z 2025-07-24T03:51:38.0157769Z Reenabled issues? 2025-07-24T03:51:38.0302306Z Prepare all required actions 2025-07-24T03:51:38.0302717Z Getting action download info 2025-07-24T03:51:38.1557839Z ##[group]Run ./.github/actions/pytest-cache-download 2025-07-24T03:51:38.1558168Z with: 2025-07-24T03:51:38.1558363Z cache_dir: .pytest_cache 2025-07-24T03:51:38.1558639Z job_identifier: trunk_win-vs2022-cuda12.6-py3 2025-07-24T03:51:38.1558959Z s3_bucket: gha-artifacts 2025-07-24T03:51:38.1559174Z env: 2025-07-24T03:51:38.1559362Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:38.1559736Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:38.1560262Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:38.1560769Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:38.1561161Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:38.1561455Z ##[endgroup] 2025-07-24T03:51:38.1670618Z ##[group]Run nick-fields/retry@v3.0.0 2025-07-24T03:51:38.1670942Z with: 2025-07-24T03:51:38.1671114Z shell: bash 2025-07-24T03:51:38.1671307Z timeout_minutes: 5 2025-07-24T03:51:38.1671511Z max_attempts: 5 2025-07-24T03:51:38.1671717Z retry_wait_seconds: 30 2025-07-24T03:51:38.1697352Z command: set -eu python3 -m pip install boto3==1.35.42 2025-07-24T03:51:38.1697717Z polling_interval_seconds: 1 2025-07-24T03:51:38.1697961Z warning_on_retry: true 2025-07-24T03:51:38.1698195Z continue_on_error: false 2025-07-24T03:51:38.1698419Z env: 2025-07-24T03:51:38.1698599Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:38.1698977Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:38.1699521Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:38.1700011Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:38.1700404Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:38.1700710Z ##[endgroup] 2025-07-24T03:51:39.8673413Z Collecting boto3==1.35.42 2025-07-24T03:51:40.0635561Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-07-24T03:51:40.8059321Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-07-24T03:51:40.8111791Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-07-24T03:51:40.9538099Z Requirement already satisfied: jmespath<2.0.0,>=0.7.1 in c:\jenkins\miniconda3\lib\site-packages (from boto3==1.35.42) (1.0.1) 2025-07-24T03:51:40.9817739Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-07-24T03:51:40.9866529Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-07-24T03:51:41.0004942Z Requirement already satisfied: python-dateutil<3.0.0,>=2.1 in c:\jenkins\miniconda3\lib\site-packages (from botocore<1.36.0,>=1.35.42->boto3==1.35.42) (2.9.0.post0) 2025-07-24T03:51:41.0017806Z Requirement already satisfied: urllib3<1.27,>=1.25.4 in c:\jenkins\miniconda3\lib\site-packages (from botocore<1.36.0,>=1.35.42->boto3==1.35.42) (1.26.19) 2025-07-24T03:51:41.1757868Z Requirement already satisfied: six>=1.5 in c:\jenkins\miniconda3\lib\site-packages (from python-dateutil<3.0.0,>=2.1->botocore<1.36.0,>=1.35.42->boto3==1.35.42) (1.17.0) 2025-07-24T03:51:41.2021516Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-07-24T03:51:41.3034026Z ---------------------------------------- 139.2/139.2 kB 1.4 MB/s eta 0:00:00 2025-07-24T03:51:41.3079696Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-07-24T03:51:41.4486580Z ---------------------------------------- 13.3/13.3 MB 131.0 MB/s eta 0:00:00 2025-07-24T03:51:41.4534541Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-07-24T03:51:41.4623245Z ---------------------------------------- 83.2/83.2 kB ? eta 0:00:00 2025-07-24T03:51:42.3585680Z Installing collected packages: botocore, s3transfer, boto3 2025-07-24T03:51:42.3586324Z Attempting uninstall: botocore 2025-07-24T03:51:42.3595432Z Found existing installation: botocore 1.37.10 2025-07-24T03:51:42.5779376Z Uninstalling botocore-1.37.10: 2025-07-24T03:51:42.6677545Z Successfully uninstalled botocore-1.37.10 2025-07-24T03:51:45.1499547Z Attempting uninstall: s3transfer 2025-07-24T03:51:45.1509953Z Found existing installation: s3transfer 0.11.2 2025-07-24T03:51:45.1603125Z Uninstalling s3transfer-0.11.2: 2025-07-24T03:51:45.1677957Z Successfully uninstalled s3transfer-0.11.2 2025-07-24T03:51:45.2441420Z Attempting uninstall: boto3 2025-07-24T03:51:45.2450734Z Found existing installation: boto3 1.37.10 2025-07-24T03:51:45.2633227Z Uninstalling boto3-1.37.10: 2025-07-24T03:51:45.2689300Z Successfully uninstalled boto3-1.37.10 2025-07-24T03:51:45.4450113Z Successfully installed boto3-1.35.42 botocore-1.35.99 s3transfer-0.10.4 2025-07-24T03:51:46.3474612Z Command completed after 1 attempt(s). 2025-07-24T03:51:46.3636960Z ##[group]Run python3 .github/scripts/pytest_cache.py \ 2025-07-24T03:51:46.3638811Z python3 .github/scripts/pytest_cache.py \ 2025-07-24T03:51:46.3639163Z  --download \ 2025-07-24T03:51:46.3639443Z  --cache_dir $GITHUB_WORKSPACE/$CACHE_DIR \ 2025-07-24T03:51:46.3639796Z  --pr_identifier $GITHUB_REF \ 2025-07-24T03:51:46.3640115Z  --job_identifier $JOB_IDENTIFIER \ 2025-07-24T03:51:46.3640437Z  --temp_dir $RUNNER_TEMP \ 2025-07-24T03:51:46.3640717Z  --repo $REPO \ 2025-07-24T03:51:46.3640970Z  --bucket $BUCKET \ 2025-07-24T03:51:46.3687539Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:46.3690044Z env: 2025-07-24T03:51:46.3690257Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:46.3690685Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:46.3691228Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:46.3691711Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:46.3692139Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:46.3692449Z CACHE_DIR: .pytest_cache 2025-07-24T03:51:46.3692737Z JOB_IDENTIFIER: trunk_win-vs2022-cuda12.6-py3 2025-07-24T03:51:46.3693046Z REPO: pytorch/pytorch 2025-07-24T03:51:46.3693288Z BUCKET: gha-artifacts 2025-07-24T03:51:46.3693506Z ##[endgroup] 2025-07-24T03:51:47.5965954Z PR identifier for `refs/tags/ciflow/trunk/149961` is `8d7c20a62ddb2b486f64b70ef7147183` 2025-07-24T03:51:47.5967703Z Downloading cache with args Namespace(upload=False, download=True, cache_dir='C:\\actions-runner\\_work\\pytorch\\pytorch/.pytest_cache', pr_identifier='refs/tags/ciflow/trunk/149961', job_identifier='trunk_win-vs2022-cuda12.6-py3', sha=None, test_config=None, shard=None, repo='pytorch/pytorch', temp_dir='C:\\actions-runner\\_work\\_temp', bucket='gha-artifacts') 2025-07-24T03:51:47.5970035Z There were no files matching the prefix `pytest_cache/pytorch/pytorch/8d7c20a62ddb2b486f64b70ef7147183/trunk_win-vs2022-cuda12_6-py3` in bucket `gha-artifacts` 2025-07-24T03:51:47.6790691Z ##[group]Run .ci/pytorch/win-build.sh 2025-07-24T03:51:47.6791043Z .ci/pytorch/win-build.sh 2025-07-24T03:51:47.6812893Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:47.6813339Z env: 2025-07-24T03:51:47.6813523Z GIT_DEFAULT_BRANCH: main 2025-07-24T03:51:47.6813901Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:51:47.6816422Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:51:47.6816919Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:51:47.6817313Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:51:47.6817713Z PYTORCH_FINAL_PACKAGE_DIR: /c/16487210679/build-results/ 2025-07-24T03:51:47.6818050Z BRANCH: 2025-07-24T03:51:47.6818258Z BUILD_ENVIRONMENT: win-vs2022-cuda12.6-py3 2025-07-24T03:51:47.6818553Z BUILD_WHEEL: 1 2025-07-24T03:51:47.6818747Z MAX_JOBS: 8 2025-07-24T03:51:47.6818965Z CUDA_VERSION: 12.6 2025-07-24T03:51:47.6819173Z PYTHON_VERSION: 3.9 2025-07-24T03:51:47.6819408Z SCCACHE_BUCKET: ossci-compiler-cache 2025-07-24T03:51:47.6819693Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-24T03:51:47.6819950Z SCCACHE_REGION: us-east-1 2025-07-24T03:51:47.6820184Z VC_PRODUCT: BuildTools 2025-07-24T03:51:47.6820408Z VC_VERSION: 2025-07-24T03:51:47.6820583Z VC_YEAR: 2022 2025-07-24T03:51:47.6820909Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-07-24T03:51:47.6821317Z AWS_DEFAULT_REGION: us-east-1 2025-07-24T03:51:47.6821557Z PR_NUMBER: 2025-07-24T03:51:47.6821791Z SHA1: 27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:51:47.6822077Z DEBUG: 0 2025-07-24T03:51:47.6822269Z TORCH_CUDA_ARCH_LIST: 8.6 2025-07-24T03:51:47.6822483Z USE_CUDA: 1 2025-07-24T03:51:47.6822665Z USE_XPU: 0 2025-07-24T03:51:47.6822838Z XPU_VERSION: 2025-07-24T03:51:47.6823042Z OUR_GITHUB_JOB_ID: 46614187338 2025-07-24T03:51:47.6823280Z ##[endgroup] 2025-07-24T03:51:47.7602701Z ++ [[ win-vs2022-cuda12.6-py3 == *rocm* ]] 2025-07-24T03:51:47.7603087Z ++ BUILD_TEST_LIBTORCH=0 2025-07-24T03:51:47.7603482Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common-build.sh 2025-07-24T03:51:47.7606099Z ++ [[ win-vs2022-cuda12.6-py3 != *win-* ]] 2025-07-24T03:51:47.7606935Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-07-24T03:51:47.7607466Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-07-24T03:51:47.7668655Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-07-24T03:51:47.7775701Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-07-24T03:51:47.7776176Z + export TMP_DIR_WIN 2025-07-24T03:51:47.7776499Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/16487210679/build-results/ 2025-07-24T03:51:47.7776922Z + PYTORCH_FINAL_PACKAGE_DIR=/c/16487210679/build-results/ 2025-07-24T03:51:47.7779213Z + [[ -n /c/16487210679/build-results/ ]] 2025-07-24T03:51:47.7779499Z + mkdir -p /c/16487210679/build-results/ 2025-07-24T03:51:47.7926444Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-07-24T03:51:47.7927201Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-07-24T03:51:47.7927661Z + set +ex 2025-07-24T03:51:48.8715684Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-07-24T03:51:48.8865233Z 2025-07-24T03:51:48.8866037Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" (set BUILD_TYPE=debug ) ELSE (set BUILD_TYPE=release ) 2025-07-24T03:51:48.8869382Z 2025-07-24T03:51:48.8873368Z C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-07-24T03:51:48.8875934Z 2025-07-24T03:51:48.8876468Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-07-24T03:51:48.8877106Z 2025-07-24T03:51:48.8877649Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_magma.bat 2025-07-24T03:51:48.8886680Z 2025-07-24T03:51:48.8886977Z C:\actions-runner\_work\pytorch\pytorch>if "12.6" == "cpu" ( 2025-07-24T03:51:48.8887367Z echo skip magma installation for cpu builds 2025-07-24T03:51:48.8887685Z exit /b 0 2025-07-24T03:51:48.8887857Z ) 2025-07-24T03:51:48.8888067Z 2025-07-24T03:51:48.8888401Z C:\actions-runner\_work\pytorch\pytorch>rem remove dot in cuda_version, fox example 11.1 to 111 2025-07-24T03:51:48.8889759Z 2025-07-24T03:51:48.8890038Z C:\actions-runner\_work\pytorch\pytorch>if not "1" == "1" (exit /b 0 ) 2025-07-24T03:51:48.8891642Z 2025-07-24T03:51:48.8891883Z C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-07-24T03:51:48.8892355Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-07-24T03:51:48.8892730Z exit /b 1 2025-07-24T03:51:48.8892912Z ) 2025-07-24T03:51:48.8893055Z 2025-07-24T03:51:48.8893616Z C:\actions-runner\_work\pytorch\pytorch>set VERSION_SUFFIX=126 2025-07-24T03:51:48.8895653Z 2025-07-24T03:51:48.8896091Z C:\actions-runner\_work\pytorch\pytorch>set CUDA_SUFFIX=cuda126 2025-07-24T03:51:48.8898366Z 2025-07-24T03:51:48.8898594Z C:\actions-runner\_work\pytorch\pytorch>if "cuda126" == "" ( 2025-07-24T03:51:48.8899120Z echo unknown CUDA version, please set `CUDA_VERSION` higher than 10.2 2025-07-24T03:51:48.8899504Z exit /b 1 2025-07-24T03:51:48.8899689Z ) 2025-07-24T03:51:48.8901875Z 2025-07-24T03:51:48.8902127Z C:\actions-runner\_work\pytorch\pytorch>if "" == "" ( 2025-07-24T03:51:48.8903858Z if "win-vs2022-cuda12.6-py3" == "" (curl --retry 3 --retry-all-errors -k https://s3.amazonaws.com/ossci-windows/magma_2.5.4_cuda126_release.7z --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z & REM @lint-ignore ) else (aws s3 cp s3://ossci-windows/magma_2.5.4_cuda126_release.7z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z --quiet ) 2025-07-24T03:51:48.8905502Z if errorlevel 1 exit /b 2025-07-24T03:51:48.8905746Z if not errorlevel 0 exit /b 2025-07-24T03:51:48.8906419Z 7z x -aoa C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z -oC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma 2025-07-24T03:51:48.8907116Z if errorlevel 1 exit /b 2025-07-24T03:51:48.8907362Z if not errorlevel 0 exit /b 2025-07-24T03:51:48.8907594Z ) 2025-07-24T03:51:51.3008312Z 2025-07-24T03:51:51.3008888Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-07-24T03:51:51.3009205Z 2025-07-24T03:51:51.3009315Z Scanning the drive for archives: 2025-07-24T03:51:51.3009584Z 1 file, 62070579 bytes (60 MiB) 2025-07-24T03:51:51.3009749Z 2025-07-24T03:51:51.3010095Z Extracting archive: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z 2025-07-24T03:51:52.6369338Z -- 2025-07-24T03:51:52.6370124Z Path = C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z 2025-07-24T03:51:52.6370604Z Type = 7z 2025-07-24T03:51:52.6371615Z Physical Size = 62070579 2025-07-24T03:51:52.6372383Z Headers Size = 931 2025-07-24T03:51:52.6372586Z Method = LZMA2:24 2025-07-24T03:51:52.6372783Z Solid = + 2025-07-24T03:51:52.6373700Z Blocks = 1 2025-07-24T03:51:52.6373837Z 2025-07-24T03:51:52.6373941Z Everything is Ok 2025-07-24T03:51:52.6374067Z 2025-07-24T03:51:52.6374152Z Folders: 2 2025-07-24T03:51:52.6374324Z Files: 68 2025-07-24T03:51:52.6374511Z Size: 144236024 2025-07-24T03:51:52.6374728Z Compressed: 62070579 2025-07-24T03:51:52.6396148Z 2025-07-24T03:51:52.6396740Z C:\actions-runner\_work\pytorch\pytorch>set MAGMA_HOME=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma 2025-07-24T03:51:52.6399398Z 2025-07-24T03:51:52.6399652Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-07-24T03:51:52.6400602Z 2025-07-24T03:51:52.6402204Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-07-24T03:51:52.6402542Z 2025-07-24T03:51:52.6403105Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_sccache.bat 2025-07-24T03:51:52.6414337Z 2025-07-24T03:51:52.6414953Z C:\actions-runner\_work\pytorch\pytorch>mkdir C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin 2025-07-24T03:51:52.6419651Z 2025-07-24T03:51:52.6420383Z C:\actions-runner\_work\pytorch\pytorch>if "" == "" ( 2025-07-24T03:51:52.6420916Z IF EXIST C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ( 2025-07-24T03:51:52.6421391Z taskkill /im sccache.exe /f /t || ver 1>nul 2025-07-24T03:51:52.6421903Z del C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe || ver 1>nul 2025-07-24T03:51:52.6422355Z ) 2025-07-24T03:51:52.6423648Z if "win-vs2022-cuda12.6-py3" == "" (curl --retry 3 --retry-all-errors -k https://s3.amazonaws.com/ossci-windows/sccache-v0.7.4.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ) else (aws s3 cp s3://ossci-windows/sccache-v0.7.4.exe C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ) 2025-07-24T03:51:52.6425082Z ) 2025-07-24T03:51:53.9549121Z Completed 256.0 KiB/18.8 MiB (767.9 KiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9558629Z Completed 512.0 KiB/18.8 MiB (1.5 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9575476Z Completed 768.0 KiB/18.8 MiB (2.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9576081Z Completed 1.0 MiB/18.8 MiB (2.9 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9584853Z Completed 1.2 MiB/18.8 MiB (3.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9585642Z Completed 1.5 MiB/18.8 MiB (4.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9590741Z Completed 1.8 MiB/18.8 MiB (5.1 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9597947Z Completed 2.0 MiB/18.8 MiB (5.8 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9602658Z Completed 2.2 MiB/18.8 MiB (6.5 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9606559Z Completed 2.5 MiB/18.8 MiB (7.3 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9614182Z Completed 2.8 MiB/18.8 MiB (8.0 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9620355Z Completed 3.0 MiB/18.8 MiB (8.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9622162Z Completed 3.2 MiB/18.8 MiB (9.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9630426Z Completed 3.5 MiB/18.8 MiB (10.1 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9635068Z Completed 3.8 MiB/18.8 MiB (10.8 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9641697Z Completed 4.0 MiB/18.8 MiB (11.5 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9642860Z Completed 4.2 MiB/18.8 MiB (12.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9649265Z Completed 4.5 MiB/18.8 MiB (12.9 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9654617Z Completed 4.8 MiB/18.8 MiB (13.6 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9659370Z Completed 5.0 MiB/18.8 MiB (14.3 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9669742Z Completed 5.2 MiB/18.8 MiB (15.0 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9671720Z Completed 5.5 MiB/18.8 MiB (15.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9675194Z Completed 5.8 MiB/18.8 MiB (16.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9686479Z Completed 6.0 MiB/18.8 MiB (17.1 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9691969Z Completed 6.2 MiB/18.8 MiB (17.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9700756Z Completed 6.5 MiB/18.8 MiB (18.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9703412Z Completed 6.8 MiB/18.8 MiB (19.1 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9710214Z Completed 7.0 MiB/18.8 MiB (19.8 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9718599Z Completed 7.2 MiB/18.8 MiB (20.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9721278Z Completed 7.5 MiB/18.8 MiB (21.1 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9730853Z Completed 7.8 MiB/18.8 MiB (21.8 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9736828Z Completed 8.0 MiB/18.8 MiB (22.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9740000Z Completed 8.2 MiB/18.8 MiB (23.1 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9747227Z Completed 8.5 MiB/18.8 MiB (23.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9749284Z Completed 8.6 MiB/18.8 MiB (23.9 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9751586Z Completed 8.8 MiB/18.8 MiB (24.6 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9761784Z Completed 9.1 MiB/18.8 MiB (25.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9763516Z Completed 9.3 MiB/18.8 MiB (25.9 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9770500Z Completed 9.6 MiB/18.8 MiB (26.5 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9776742Z Completed 9.8 MiB/18.8 MiB (27.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9782673Z Completed 10.1 MiB/18.8 MiB (27.8 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9786800Z Completed 10.3 MiB/18.8 MiB (28.5 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9791248Z Completed 10.6 MiB/18.8 MiB (29.1 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9796955Z Completed 10.8 MiB/18.8 MiB (29.8 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9801090Z Completed 11.1 MiB/18.8 MiB (30.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9808460Z Completed 11.3 MiB/18.8 MiB (31.1 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9813255Z Completed 11.6 MiB/18.8 MiB (31.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9818968Z Completed 11.8 MiB/18.8 MiB (32.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9822510Z Completed 12.1 MiB/18.8 MiB (33.0 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9826999Z Completed 12.3 MiB/18.8 MiB (33.6 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9830929Z Completed 12.6 MiB/18.8 MiB (34.3 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9839776Z Completed 12.8 MiB/18.8 MiB (34.9 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9856397Z Completed 13.1 MiB/18.8 MiB (35.5 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9857087Z Completed 13.3 MiB/18.8 MiB (36.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9857566Z Completed 13.6 MiB/18.8 MiB (36.8 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9860841Z Completed 13.8 MiB/18.8 MiB (37.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9868157Z Completed 14.1 MiB/18.8 MiB (38.0 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9872433Z Completed 14.3 MiB/18.8 MiB (38.6 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9876631Z Completed 14.6 MiB/18.8 MiB (39.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9881168Z Completed 14.8 MiB/18.8 MiB (39.9 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9884972Z Completed 15.1 MiB/18.8 MiB (40.5 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9889639Z Completed 15.3 MiB/18.8 MiB (41.1 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9896039Z Completed 15.6 MiB/18.8 MiB (41.7 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9898753Z Completed 15.8 MiB/18.8 MiB (42.3 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9904847Z Completed 16.1 MiB/18.8 MiB (43.0 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9907635Z Completed 16.3 MiB/18.8 MiB (43.6 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9914483Z Completed 16.6 MiB/18.8 MiB (44.2 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9920240Z Completed 16.8 MiB/18.8 MiB (44.8 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9932537Z Completed 17.1 MiB/18.8 MiB (45.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9944480Z Completed 17.3 MiB/18.8 MiB (45.9 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9961174Z Completed 17.6 MiB/18.8 MiB (46.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9968091Z Completed 17.8 MiB/18.8 MiB (46.9 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9989623Z Completed 18.1 MiB/18.8 MiB (47.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:53.9995130Z Completed 18.3 MiB/18.8 MiB (47.8 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:54.0036072Z Completed 18.6 MiB/18.8 MiB (48.4 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:54.0044514Z Completed 18.8 MiB/18.8 MiB (48.6 MiB/s) with 1 file(s) remaining 2025-07-24T03:51:54.0045095Z download: s3://ossci-windows/sccache-v0.7.4.exe to build\win_tmp\bin\sccache.exe 2025-07-24T03:51:54.1219227Z 2025-07-24T03:51:54.1219946Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-07-24T03:51:54.1220303Z 2025-07-24T03:51:54.1220514Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-07-24T03:51:54.1221877Z 2025-07-24T03:51:54.1222346Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" ( 2025-07-24T03:51:54.1222758Z set CUDA_VERSION=xpu 2025-07-24T03:51:54.1223293Z call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\..\windows\internal\xpu_install.bat 2025-07-24T03:51:54.1223889Z if errorlevel 1 exit /b 1 2025-07-24T03:51:54.1224120Z ) 2025-07-24T03:51:54.1224240Z 2025-07-24T03:51:54.1224823Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-07-24T03:51:54.1236000Z 2025-07-24T03:51:54.1236712Z C:\actions-runner\_work\pytorch\pytorch>if "win-vs2022-cuda12.6-py3" == "" (set CONDA_PARENT_DIR=C:\actions-runner\_work\pytorch\pytorch ) else (set CONDA_PARENT_DIR=C:\Jenkins ) 2025-07-24T03:51:54.1239974Z 2025-07-24T03:51:54.1240346Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-07-24T03:51:54.1243386Z 2025-07-24T03:51:54.1243783Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-07-24T03:51:54.1244983Z curl --retry 3 --retry-all-errors -k https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe 2025-07-24T03:51:54.1245992Z if errorlevel 1 exit /b 2025-07-24T03:51:54.1246260Z if not errorlevel 0 exit /b 2025-07-24T03:51:54.1247083Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /AddToPath=0 /D=C:\Jenkins\Miniconda3 2025-07-24T03:51:54.1247907Z if errorlevel 1 exit /b 2025-07-24T03:51:54.1248150Z if not errorlevel 0 exit /b 2025-07-24T03:51:54.1248382Z ) 2025-07-24T03:51:54.1248488Z 2025-07-24T03:51:54.1248844Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-07-24T03:51:55.7895248Z Chocolatey v2.4.3 2025-07-24T03:51:55.9414199Z Upgrading the following packages: 2025-07-24T03:51:55.9419319Z cmake 2025-07-24T03:51:55.9423113Z By upgrading, you accept licenses for the packages. 2025-07-24T03:51:56.3242212Z cmake is not installed. Installing... 2025-07-24T03:51:57.2407695Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-07-24T03:51:58.0694435Z 2025-07-24T03:51:58.0694899Z cmake.install v3.27.9 [Approved] 2025-07-24T03:51:58.0902348Z cmake.install package files upgrade completed. Performing other installation steps. 2025-07-24T03:51:58.7747580Z Installing 64-bit cmake.install... 2025-07-24T03:52:12.7885853Z cmake.install has been installed. 2025-07-24T03:52:12.8687000Z cmake.install may be able to be automatically uninstalled. 2025-07-24T03:52:12.8737550Z Environment Vars (like PATH) have changed. Close/reopen your shell to 2025-07-24T03:52:12.8738112Z see the changes (or in powershell/cmd.exe just type `refreshenv`). 2025-07-24T03:52:13.0980355Z The upgrade of cmake.install was successful. 2025-07-24T03:52:13.0982237Z Deployed to 'C:\Program Files\CMake\' 2025-07-24T03:52:13.1021018Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-07-24T03:52:13.1785239Z 2025-07-24T03:52:13.1785649Z cmake v3.27.9 [Approved] 2025-07-24T03:52:13.1804531Z cmake package files upgrade completed. Performing other installation steps. 2025-07-24T03:52:13.2623088Z The upgrade of cmake was successful. 2025-07-24T03:52:13.2627209Z Deployed to 'C:\ProgramData\chocolatey\lib\cmake' 2025-07-24T03:52:13.2713031Z 2025-07-24T03:52:13.2713408Z Chocolatey upgraded 2/2 packages. 2025-07-24T03:52:13.2713853Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-07-24T03:52:13.2721500Z 2025-07-24T03:52:13.2721754Z Enjoy using Chocolatey? Explore more amazing features to take your 2025-07-24T03:52:13.2722213Z experience to the next level at 2025-07-24T03:52:13.2722520Z https://chocolatey.org/compare 2025-07-24T03:52:14.0712024Z Collecting mkl==2024.2.0 2025-07-24T03:52:14.2676019Z Downloading mkl-2024.2.0-py2.py3-none-win_amd64.whl.metadata (1.4 kB) 2025-07-24T03:52:14.2941553Z Collecting mkl-static==2024.2.0 2025-07-24T03:52:14.2997910Z Downloading mkl_static-2024.2.0-py2.py3-none-win_amd64.whl.metadata (1.5 kB) 2025-07-24T03:52:14.3267558Z Collecting mkl-include==2024.2.0 2025-07-24T03:52:14.3327784Z Downloading mkl_include-2024.2.0-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-07-24T03:52:14.3719455Z Collecting intel-openmp>=2023 (from mkl==2024.2.0) 2025-07-24T03:52:14.3773606Z Downloading intel_openmp-2025.2.0-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-07-24T03:52:14.4045854Z Collecting tbb==2021.* (from mkl==2024.2.0) 2025-07-24T03:52:14.4154539Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl.metadata (1.1 kB) 2025-07-24T03:52:14.5135299Z Collecting tbb-devel==2021.* (from mkl-static==2024.2.0) 2025-07-24T03:52:14.5187006Z Downloading tbb_devel-2021.13.1-py3-none-win_amd64.whl.metadata (1.2 kB) 2025-07-24T03:52:14.5461070Z Collecting intel-cmplr-lib-ur==2025.2.0 (from intel-openmp>=2023->mkl==2024.2.0) 2025-07-24T03:52:14.5525359Z Downloading intel_cmplr_lib_ur-2025.2.0-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-07-24T03:52:14.5726437Z Collecting umf==0.11.* (from intel-cmplr-lib-ur==2025.2.0->intel-openmp>=2023->mkl==2024.2.0) 2025-07-24T03:52:14.5783870Z Downloading umf-0.11.0-py2.py3-none-win_amd64.whl.metadata (1.1 kB) 2025-07-24T03:52:14.5989726Z Collecting tcmlib>=1.4 (from umf==0.11.*->intel-cmplr-lib-ur==2025.2.0->intel-openmp>=2023->mkl==2024.2.0) 2025-07-24T03:52:14.6043756Z Downloading tcmlib-1.4.0-py2.py3-none-win_amd64.whl.metadata (1.0 kB) 2025-07-24T03:52:14.7265641Z Downloading mkl-2024.2.0-py2.py3-none-win_amd64.whl (161.5 MB) 2025-07-24T03:52:17.9389291Z ---------------------------------------- 161.5/161.5 MB 4.3 MB/s eta 0:00:00 2025-07-24T03:52:17.9465618Z Downloading mkl_static-2024.2.0-py2.py3-none-win_amd64.whl (207.3 MB) 2025-07-24T03:52:23.3663853Z ---------------------------------------- 207.3/207.3 MB 2.3 MB/s eta 0:00:00 2025-07-24T03:52:23.3788179Z Downloading mkl_include-2024.2.0-py2.py3-none-win_amd64.whl (1.3 MB) 2025-07-24T03:52:23.4693506Z ---------------------------------------- 1.3/1.3 MB 16.9 MB/s eta 0:00:00 2025-07-24T03:52:23.4764290Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl (286 kB) 2025-07-24T03:52:23.4876477Z --------------------------------------- 286.9/286.9 kB 17.3 MB/s eta 0:00:00 2025-07-24T03:52:23.4960871Z Downloading tbb_devel-2021.13.1-py3-none-win_amd64.whl (5.7 MB) 2025-07-24T03:52:23.6017692Z ---------------------------------------- 5.7/5.7 MB 51.9 MB/s eta 0:00:00 2025-07-24T03:52:23.6089904Z Downloading intel_openmp-2025.2.0-py2.py3-none-win_amd64.whl (34.0 MB) 2025-07-24T03:52:23.9142873Z ---------------------------------------- 34.0/34.0 MB 50.4 MB/s eta 0:00:00 2025-07-24T03:52:23.9216046Z Downloading intel_cmplr_lib_ur-2025.2.0-py2.py3-none-win_amd64.whl (1.2 MB) 2025-07-24T03:52:23.9458871Z ---------------------------------------- 1.2/1.2 MB 72.4 MB/s eta 0:00:00 2025-07-24T03:52:23.9517076Z Downloading umf-0.11.0-py2.py3-none-win_amd64.whl (231 kB) 2025-07-24T03:52:23.9620813Z --------------------------------------- 231.7/231.7 kB 13.8 MB/s eta 0:00:00 2025-07-24T03:52:23.9685037Z Downloading tcmlib-1.4.0-py2.py3-none-win_amd64.whl (370 kB) 2025-07-24T03:52:23.9791030Z --------------------------------------- 370.3/370.3 kB 24.0 MB/s eta 0:00:00 2025-07-24T03:52:25.9900586Z Installing collected packages: tcmlib, tbb, mkl-include, umf, tbb-devel, intel-cmplr-lib-ur, intel-openmp, mkl-static, mkl 2025-07-24T03:52:34.8630598Z Successfully installed intel-cmplr-lib-ur-2025.2.0 intel-openmp-2025.2.0 mkl-2024.2.0 mkl-include-2024.2.0 mkl-static-2024.2.0 tbb-2021.13.1 tbb-devel-2021.13.1 tcmlib-1.4.0 umf-0.11.0 2025-07-24T03:52:35.2944963Z ********************************************************************** 2025-07-24T03:52:35.2945411Z ** Visual Studio 2022 Developer Command Prompt v17.8.22 2025-07-24T03:52:35.2945813Z ** Copyright (c) 2022 Microsoft Corporation 2025-07-24T03:52:35.2946128Z ********************************************************************** 2025-07-24T03:52:35.8076097Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-07-24T03:52:35.8117758Z 2025-07-24T03:52:35.8118379Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-07-24T03:52:35.8121784Z 2025-07-24T03:52:35.8122083Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "1" == "1" goto cuda_build_end 2025-07-24T03:52:35.8123321Z 2025-07-24T03:52:35.8124048Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-24T03:52:35.8126451Z 2025-07-24T03:52:35.8126784Z (base) C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-07-24T03:52:35.8127416Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-07-24T03:52:35.8127820Z goto fail 2025-07-24T03:52:35.8127999Z ) 2025-07-24T03:52:35.8128117Z 2025-07-24T03:52:35.8128423Z (base) C:\actions-runner\_work\pytorch\pytorch>rem version transformer, for example 10.1 to 10_1. 2025-07-24T03:52:35.8129599Z 2025-07-24T03:52:35.8129951Z (base) C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-07-24T03:52:35.8130469Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-07-24T03:52:35.8130858Z goto fail 2025-07-24T03:52:35.8131027Z ) 2025-07-24T03:52:35.8131133Z 2025-07-24T03:52:35.8131332Z (base) C:\actions-runner\_work\pytorch\pytorch>set VERSION_SUFFIX=12_6 2025-07-24T03:52:35.8133529Z 2025-07-24T03:52:35.8133962Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-24T03:52:35.8136499Z 2025-07-24T03:52:35.8136950Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDNN_LIB_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 2025-07-24T03:52:35.8139801Z 2025-07-24T03:52:35.8140489Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_TOOLKIT_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-24T03:52:35.8142811Z 2025-07-24T03:52:35.8143331Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDNN_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-24T03:52:35.8145962Z 2025-07-24T03:52:35.8154009Z (base) C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\libnvvp;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-07-24T03:52:35.8161804Z 2025-07-24T03:52:35.8162012Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-07-24T03:52:35.8162337Z 2025-07-24T03:52:35.8170088Z (base) C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin;C:\Program Files\CMake\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\libnvvp;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-07-24T03:52:35.8178740Z 2025-07-24T03:52:35.8179025Z (base) C:\actions-runner\_work\pytorch\pytorch>if "8.6" == "" set TORCH_CUDA_ARCH_LIST=8.6 2025-07-24T03:52:35.8179409Z 2025-07-24T03:52:35.8179616Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IDLE_TIMEOUT=0 2025-07-24T03:52:35.8179948Z 2025-07-24T03:52:35.8180191Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-07-24T03:52:35.8180561Z 2025-07-24T03:52:35.8180768Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-07-24T03:52:35.8318672Z Stopping sccache server... 2025-07-24T03:52:36.8339715Z sccache: error: couldn't connect to server 2025-07-24T03:52:36.8341999Z sccache: caused by: No connection could be made because the target machine actively refused it. (os error 10061) 2025-07-24T03:52:36.8369945Z 2025-07-24T03:52:36.8370348Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --start-server 2025-07-24T03:52:36.8469652Z sccache: Starting the server... 2025-07-24T03:52:36.9693019Z 2025-07-24T03:52:36.9693578Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --zero-stats 2025-07-24T03:52:36.9812958Z Compile requests 0 2025-07-24T03:52:36.9813312Z Compile requests executed 0 2025-07-24T03:52:36.9813612Z Cache hits 0 2025-07-24T03:52:36.9813890Z Cache misses 0 2025-07-24T03:52:36.9814175Z Cache timeouts 0 2025-07-24T03:52:36.9814446Z Cache read errors 0 2025-07-24T03:52:36.9814707Z Forced recaches 0 2025-07-24T03:52:36.9814981Z Cache write errors 0 2025-07-24T03:52:36.9815252Z Compilation failures 0 2025-07-24T03:52:36.9815544Z Cache errors 0 2025-07-24T03:52:36.9815829Z Non-cacheable compilations 0 2025-07-24T03:52:36.9816105Z Non-cacheable calls 0 2025-07-24T03:52:36.9816385Z Non-compilation calls 0 2025-07-24T03:52:36.9816659Z Unsupported compiler calls 0 2025-07-24T03:52:36.9816942Z Average cache write 0.000 s 2025-07-24T03:52:36.9817223Z Average compiler 0.000 s 2025-07-24T03:52:36.9817509Z Average cache read hit 0.000 s 2025-07-24T03:52:36.9817810Z Failed distributed compilations 0 2025-07-24T03:52:36.9818204Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-07-24T03:52:36.9818622Z Version (client) 0.7.4 2025-07-24T03:52:36.9835361Z 2025-07-24T03:52:36.9835960Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_C_COMPILER_LAUNCHER=sccache 2025-07-24T03:52:36.9838119Z 2025-07-24T03:52:36.9838507Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-07-24T03:52:36.9840988Z 2025-07-24T03:52:36.9841228Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_GENERATOR=Ninja 2025-07-24T03:52:36.9845468Z 2025-07-24T03:52:36.9845851Z (base) C:\actions-runner\_work\pytorch\pytorch>if "1" == "1" ( 2025-07-24T03:52:36.9846234Z 2025-07-24T03:52:36.9846394Z 2025-07-24T03:52:36.9846565Z 2025-07-24T03:52:36.9847361Z curl -kL https://github.com/peterjc123/randomtemp-rust/releases/download/v0.4/randomtemp.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\randomtemp.exe 2025-07-24T03:52:36.9848514Z if errorlevel 1 goto fail 2025-07-24T03:52:36.9848910Z if not errorlevel 0 goto fail 2025-07-24T03:52:36.9851017Z echo @"C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\randomtemp.exe" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe" "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin\nvcc.exe" %* 1>"C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat" 2025-07-24T03:52:36.9852417Z cat C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-07-24T03:52:36.9853046Z set CUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-07-24T03:52:36.9853915Z for /F "usebackq delims=" %n in (`cygpath -m "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin\nvcc.exe"`) do set CMAKE_CUDA_COMPILER=%n 2025-07-24T03:52:36.9855147Z set CMAKE_CUDA_COMPILER_LAUNCHER=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/randomtemp.exe;C:/actions-runner/_work/pytorch/pytorch/build/win_tmp\bin\sccache.exe 2025-07-24T03:52:36.9855979Z ) 2025-07-24T03:52:36.9856256Z The system cannot find the drive specified. 2025-07-24T03:52:36.9856579Z The system cannot find the drive specified. 2025-07-24T03:52:36.9856935Z The system cannot find the drive specified. 2025-07-24T03:52:37.6329149Z % Total % Received % Xferd Average Speed Time Time Time Current 2025-07-24T03:52:37.6329671Z Dload Upload Total Spent Left Speed 2025-07-24T03:52:37.6329923Z 2025-07-24T03:52:37.7267984Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-07-24T03:52:37.7268452Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-07-24T03:52:37.7268818Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-07-24T03:52:37.7479290Z 2025-07-24T03:52:37.7479923Z 100 303k 100 303k 0 0 2140k 0 --:--:-- --:--:-- --:--:-- 2140k 2025-07-24T03:52:37.7654255Z @"C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\randomtemp.exe" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe" "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin\nvcc.exe" %* 2025-07-24T03:52:37.7882244Z 2025-07-24T03:52:37.7883220Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_CUDA_COMPILER=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe 2025-07-24T03:52:37.7887839Z 2025-07-24T03:52:37.7888272Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-07-24T03:52:37.8083104Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-07-24T03:52:37.8084134Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-3-azure-eastus.actions.githubusercontent.com/79//idtoken/462206c4-f316-434a-914e-4c0fe68d812b/9cb27151-45e4-51fb-aa46-05dbd7ace68a?api-version=2.0 2025-07-24T03:52:37.8085252Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-07-24T03:52:37.8085667Z ALLUSERSPROFILE=C:\ProgramData 2025-07-24T03:52:37.8086055Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-07-24T03:52:37.8086508Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-07-24T03:52:37.8086822Z AWS_DEFAULT_REGION=us-east-1 2025-07-24T03:52:37.8087060Z AWS_EXECUTION_ENV=EC2 2025-07-24T03:52:37.8087268Z BRANCH= 2025-07-24T03:52:37.8087475Z BUILD_ENVIRONMENT=win-vs2022-cuda12.6-py3 2025-07-24T03:52:37.8087765Z BUILD_TYPE=release 2025-07-24T03:52:37.8087960Z BUILD_WHEEL=1 2025-07-24T03:52:37.8088145Z CI=true 2025-07-24T03:52:37.8088510Z CMAKE_CUDA_COMPILER=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe 2025-07-24T03:52:37.8089526Z CMAKE_CUDA_COMPILER_LAUNCHER=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/randomtemp.exe;C:/actions-runner/_work/pytorch/pytorch/build/win_tmp\bin\sccache.exe 2025-07-24T03:52:37.8090374Z CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-07-24T03:52:37.8090645Z CMAKE_C_COMPILER_LAUNCHER=sccache 2025-07-24T03:52:37.8090909Z CMAKE_GENERATOR=Ninja 2025-07-24T03:52:37.8091130Z CommandPromptType=Native 2025-07-24T03:52:37.8091681Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-07-24T03:52:37.8092078Z COMPUTERNAME=EC2AMAZ-IFQ8336 2025-07-24T03:52:37.8092344Z COMSPEC=C:\Windows\system32\cmd.exe 2025-07-24T03:52:37.8092772Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T03:52:37.8093378Z CONDA_DEFAULT_ENV=base 2025-07-24T03:52:37.8093658Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-07-24T03:52:37.8094066Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T03:52:37.8094439Z CONDA_PARENT_DIR=C:\Jenkins 2025-07-24T03:52:37.8094706Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-07-24T03:52:37.8094975Z CONDA_PROMPT_MODIFIER=(base) 2025-07-24T03:52:37.8095276Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-07-24T03:52:37.8095724Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T03:52:37.8096124Z CONDA_SHLVL=1 2025-07-24T03:52:37.8096494Z CUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-07-24T03:52:37.8097073Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-24T03:52:37.8097554Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-24T03:52:37.8098056Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-07-24T03:52:37.8098555Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-07-24T03:52:37.8098935Z CUDA_SUFFIX=cuda126 2025-07-24T03:52:37.8099286Z CUDA_TOOLKIT_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-24T03:52:37.8099694Z CUDA_VERSION=12.6 2025-07-24T03:52:37.8099931Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-07-24T03:52:37.8100316Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-07-24T03:52:37.8100724Z CommonProgramW6432=C:\Program Files\Common Files 2025-07-24T03:52:37.8101172Z CUDNN_LIB_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 2025-07-24T03:52:37.8101701Z CUDNN_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-24T03:52:37.8102071Z DEBUG=0 2025-07-24T03:52:37.8102406Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-07-24T03:52:37.8102846Z DISTUTILS_USE_SDK=1 2025-07-24T03:52:37.8103101Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-07-24T03:52:37.8103416Z EC2LAUNCH_TELEMETRY=1 2025-07-24T03:52:37.8103801Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-07-24T03:52:37.8106094Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-07-24T03:52:37.8108374Z Framework40Version=v4.0 2025-07-24T03:52:37.8108660Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-07-24T03:52:37.8109047Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-07-24T03:52:37.8109405Z FrameworkVersion=v4.0.30319 2025-07-24T03:52:37.8109656Z FrameworkVersion64=v4.0.30319 2025-07-24T03:52:37.8109899Z GITHUB_ACTION=build 2025-07-24T03:52:37.8110096Z GITHUB_ACTIONS=true 2025-07-24T03:52:37.8110299Z GITHUB_ACTION_REF= 2025-07-24T03:52:37.8110510Z GITHUB_ACTION_REPOSITORY= 2025-07-24T03:52:37.8110747Z GITHUB_ACTOR=pytorch-bot[bot] 2025-07-24T03:52:37.8111001Z GITHUB_ACTOR_ID=54816060 2025-07-24T03:52:37.8111365Z GITHUB_API_URL=https://api.github.com 2025-07-24T03:52:37.8111651Z GITHUB_BASE_REF= 2025-07-24T03:52:37.8112101Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_a4e9d087-7fbf-4c7e-b641-565e3c0dddef 2025-07-24T03:52:37.8112777Z GITHUB_EVENT_NAME=push 2025-07-24T03:52:37.8113130Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-07-24T03:52:37.8113612Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-07-24T03:52:37.8113936Z GITHUB_HEAD_REF= 2025-07-24T03:52:37.8114235Z GITHUB_JOB=build 2025-07-24T03:52:37.8114710Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_a4e9d087-7fbf-4c7e-b641-565e3c0dddef 2025-07-24T03:52:37.8115503Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_a4e9d087-7fbf-4c7e-b641-565e3c0dddef 2025-07-24T03:52:37.8116054Z GITHUB_REF=refs/tags/ciflow/trunk/149961 2025-07-24T03:52:37.8116345Z GITHUB_REF_NAME=ciflow/trunk/149961 2025-07-24T03:52:37.8116624Z GITHUB_REF_PROTECTED=false 2025-07-24T03:52:37.8116850Z GITHUB_REF_TYPE=tag 2025-07-24T03:52:37.8117073Z GITHUB_REPOSITORY=pytorch/pytorch 2025-07-24T03:52:37.8117342Z GITHUB_REPOSITORY_ID=65600975 2025-07-24T03:52:37.8117597Z GITHUB_REPOSITORY_OWNER=pytorch 2025-07-24T03:52:37.8117861Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-07-24T03:52:37.8118121Z GITHUB_RETENTION_DAYS=90 2025-07-24T03:52:37.8118352Z GITHUB_RUN_ATTEMPT=1 2025-07-24T03:52:37.8118558Z GITHUB_RUN_ID=16487210679 2025-07-24T03:52:37.8118789Z GITHUB_RUN_NUMBER=137322 2025-07-24T03:52:37.8119026Z GITHUB_SERVER_URL=https://github.com 2025-07-24T03:52:37.8119339Z GITHUB_SHA=27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:52:37.8119913Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_a4e9d087-7fbf-4c7e-b641-565e3c0dddef 2025-07-24T03:52:37.8120767Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_a4e9d087-7fbf-4c7e-b641-565e3c0dddef 2025-07-24T03:52:37.8121371Z GITHUB_TRIGGERING_ACTOR=pytorch-bot[bot] 2025-07-24T03:52:37.8121651Z GITHUB_WORKFLOW=trunk 2025-07-24T03:52:37.8122090Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/tags/ciflow/trunk/149961 2025-07-24T03:52:37.8122682Z GITHUB_WORKFLOW_SHA=27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:52:37.8123121Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:52:37.8123461Z GIT_DEFAULT_BRANCH=main 2025-07-24T03:52:37.8123688Z HOME=C:\Users\runneruser 2025-07-24T03:52:37.8125733Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-07-24T03:52:37.8128085Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-07-24T03:52:37.8129441Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-07-24T03:52:37.8131724Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-07-24T03:52:37.8133249Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-07-24T03:52:37.8133676Z MAGMA_HOME=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma 2025-07-24T03:52:37.8134062Z MAX_JOBS=8 2025-07-24T03:52:37.8134447Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-07-24T03:52:37.8134826Z NUMBER_OF_PROCESSORS=16 2025-07-24T03:52:37.8135045Z OS=Windows_NT 2025-07-24T03:52:37.8135239Z OUR_GITHUB_JOB_ID=46614187338 2025-07-24T03:52:37.8142867Z PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin;C:\Program Files\CMake\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\libnvvp;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-07-24T03:52:37.8150607Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-07-24T03:52:37.8150964Z Platform=x64 2025-07-24T03:52:37.8151284Z PROCESSOR_ARCHITECTURE=AMD64 2025-07-24T03:52:37.8151683Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 4, GenuineIntel 2025-07-24T03:52:37.8152087Z PROCESSOR_LEVEL=6 2025-07-24T03:52:37.8152306Z PROCESSOR_REVISION=5504 2025-07-24T03:52:37.8152547Z PROGRAMFILES=C:\Program Files 2025-07-24T03:52:37.8152807Z PROMPT=(base) $P$G 2025-07-24T03:52:37.8153021Z PR_NUMBER= 2025-07-24T03:52:37.8153487Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-07-24T03:52:37.8154046Z PUBLIC=C:\Users\Public 2025-07-24T03:52:37.8154410Z *** 2025-07-24T03:52:37.8154588Z PYTHON_VERSION=3.9 2025-07-24T03:52:37.8154851Z PYTORCH_FINAL_PACKAGE_DIR=C:/16487210679/build-results/ 2025-07-24T03:52:37.8155202Z ProgramData=C:\ProgramData 2025-07-24T03:52:37.8155469Z ProgramFiles(x86)=C:\Program Files (x86) 2025-07-24T03:52:37.8155761Z ProgramW6432=C:\Program Files 2025-07-24T03:52:37.8156013Z RUNNER_ARCH=X64 2025-07-24T03:52:37.8156219Z RUNNER_ENVIRONMENT=self-hosted 2025-07-24T03:52:37.8156484Z RUNNER_NAME=i-02d30d6e44b6b83c6 2025-07-24T03:52:37.8156722Z RUNNER_OS=Windows 2025-07-24T03:52:37.8156955Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-07-24T03:52:37.8157277Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-07-24T03:52:37.8157703Z RUNNER_TRACKING_ID=github_ebe556ae-e070-4870-afe4-82f74a8c1e77 2025-07-24T03:52:37.8158109Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-07-24T03:52:37.8158446Z SCCACHE_BUCKET=ossci-compiler-cache 2025-07-24T03:52:37.8158717Z SCCACHE_IDLE_TIMEOUT=0 2025-07-24T03:52:37.8158970Z SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-07-24T03:52:37.8159345Z SCCACHE_REGION=us-east-1 2025-07-24T03:52:37.8159610Z SCCACHE_S3_KEY_PREFIX=trunk 2025-07-24T03:52:37.8160044Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-07-24T03:52:37.8160565Z SHA1=27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:52:37.8160945Z SHLVL=2 2025-07-24T03:52:37.8161215Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-07-24T03:52:37.8161570Z SYSTEMDRIVE=C: 2025-07-24T03:52:37.8161765Z SYSTEMROOT=C:\Windows 2025-07-24T03:52:37.8162020Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:52:37.8162302Z TERM=xterm-256color 2025-07-24T03:52:37.8162546Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:52:37.8162856Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T03:52:37.8163231Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-07-24T03:52:37.8163673Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-07-24T03:52:37.8164065Z TORCH_CUDA_ARCH_LIST=8.6 2025-07-24T03:52:37.8164294Z UCRTVersion=10.0.19041.0 2025-07-24T03:52:37.8164595Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-07-24T03:52:37.8164966Z UPDATEFILE=update.finished 2025-07-24T03:52:37.8165201Z USERDOMAIN=EC2AMAZ-IFQ8336 2025-07-24T03:52:37.8165439Z USERNAME=runneruser 2025-07-24T03:52:37.8165653Z USERPROFILE=C:\Users\runneruser 2025-07-24T03:52:37.8165892Z USE_CUDA=1 2025-07-24T03:52:37.8166056Z USE_XPU=0 2025-07-24T03:52:37.8166444Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-07-24T03:52:37.8167074Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-07-24T03:52:37.8167749Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\ 2025-07-24T03:52:37.8168530Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.38.33130\ 2025-07-24T03:52:37.8169056Z VCToolsVersion=14.38.33130 2025-07-24T03:52:37.8169295Z VC_PRODUCT=BuildTools 2025-07-24T03:52:37.8169497Z VC_VERSION= 2025-07-24T03:52:37.8169672Z VC_YEAR=2022 2025-07-24T03:52:37.8169866Z VERBOSE_ARG='SilentlyContinue' 2025-07-24T03:52:37.8170117Z VERSION_SUFFIX=12_6 2025-07-24T03:52:37.8170322Z VisualStudioVersion=17.0 2025-07-24T03:52:37.8170758Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-07-24T03:52:37.8171236Z VSCMD_ARG_app_plat=Desktop 2025-07-24T03:52:37.8171463Z VSCMD_ARG_HOST_ARCH=x64 2025-07-24T03:52:37.8171681Z VSCMD_ARG_TGT_ARCH=x64 2025-07-24T03:52:37.8171882Z VSCMD_VER=17.8.22 2025-07-24T03:52:37.8172224Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-07-24T03:52:37.8172631Z WINDIR=C:\Windows 2025-07-24T03:52:37.8173213Z WindowsLibPath=C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0 2025-07-24T03:52:37.8173951Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-07-24T03:52:37.8174387Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-07-24T03:52:37.8174737Z WindowsSDKLibVersion=10.0.19041.0\ 2025-07-24T03:52:37.8175149Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-07-24T03:52:37.8175597Z WindowsSDKVersion=10.0.19041.0\ 2025-07-24T03:52:37.8176097Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-07-24T03:52:37.8176871Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-07-24T03:52:37.8177369Z XPU_VERSION= 2025-07-24T03:52:37.8177758Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-07-24T03:52:37.8178254Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-07-24T03:52:37.8178502Z __DOTNET_ADD_64BIT=1 2025-07-24T03:52:37.8178722Z __DOTNET_PREFERRED_BITNESS=64 2025-07-24T03:52:37.8182196Z __VSCMD_PREINIT_PATH=C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-07-24T03:52:37.8185402Z 2025-07-24T03:52:37.8185625Z (base) C:\actions-runner\_work\pytorch\pytorch>python setup.py bdist_wheel 2025-07-24T03:52:38.1424352Z Building wheel torch-2.9.0a0+git27c8ef1 2025-07-24T03:52:38.2277611Z -- Building version 2.9.0a0+git27c8ef1 2025-07-24T03:52:38.3848943Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\_msvccompiler.py:12: UserWarning: _get_vc_env is private; find an alternative (pypa/distutils#340) 2025-07-24T03:52:38.3849748Z warnings.warn( 2025-07-24T03:52:38.4199681Z Cloning into 'nccl'... 2025-07-24T03:52:38.9573219Z Note: switching to '3ea7eedf3b9b94f1d9f99f4e55536dfcbd23c1ca'. 2025-07-24T03:52:38.9573562Z 2025-07-24T03:52:38.9573826Z You are in 'detached HEAD' state. You can look around, make experimental 2025-07-24T03:52:38.9574400Z changes and commit them, and you can discard any commits you make in this 2025-07-24T03:52:38.9574925Z state without impacting any branches by switching back to a branch. 2025-07-24T03:52:38.9575232Z 2025-07-24T03:52:38.9575423Z If you want to create a new branch to retain commits you create, you may 2025-07-24T03:52:38.9575934Z do so (now or later) by using -c with the switch command. Example: 2025-07-24T03:52:38.9576201Z 2025-07-24T03:52:38.9576298Z git switch -c 2025-07-24T03:52:38.9576487Z 2025-07-24T03:52:38.9576580Z Or undo this operation with: 2025-07-24T03:52:38.9576745Z 2025-07-24T03:52:38.9576821Z git switch - 2025-07-24T03:52:38.9576958Z 2025-07-24T03:52:38.9577185Z Turn off this advice by setting config variable advice.detachedHead to false 2025-07-24T03:52:38.9577521Z 2025-07-24T03:52:38.9625201Z cmake -GNinja -DBUILD_ENVIRONMENT=win-vs2022-cuda12.6-py3 -DBUILD_PYTHON=True -DBUILD_TEST=True -DBUILD_TYPE=release -DBUILD_WHEEL=1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_CUDA_COMPILER=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe -DCMAKE_CUDA_COMPILER_LAUNCHER=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/randomtemp.exe;C:/actions-runner/_work/pytorch/pytorch/build/win_tmp\bin\sccache.exe -DCMAKE_CXX_COMPILER_LAUNCHER=sccache -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_GENERATOR=Ninja -DCMAKE_INSTALL_PREFIX=C:\actions-runner\_work\pytorch\pytorch\torch -DCMAKE_PREFIX_PATH=C:\Jenkins\Miniconda3\Lib\site-packages -DCUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat -DCUDNN_LIBRARY=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 -DPython_EXECUTABLE=C:\Jenkins\Miniconda3\python.exe -DTORCH_BUILD_VERSION=2.9.0a0+git27c8ef1 -DTORCH_CUDA_ARCH_LIST=8.6 -DUSE_CUDA=1 -DUSE_NUMPY=True -DUSE_XPU=0 C:\actions-runner\_work\pytorch\pytorch 2025-07-24T03:52:46.3390187Z -- The CXX compiler identification is MSVC 19.38.33145.0 2025-07-24T03:52:46.5318486Z -- The C compiler identification is MSVC 19.38.33145.0 2025-07-24T03:52:46.5545933Z -- Detecting CXX compiler ABI info 2025-07-24T03:52:52.8297346Z -- Detecting CXX compiler ABI info - done 2025-07-24T03:52:52.8322268Z -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe - skipped 2025-07-24T03:52:52.8327004Z -- Detecting CXX compile features 2025-07-24T03:52:52.8341825Z -- Detecting CXX compile features - done 2025-07-24T03:52:52.8453972Z -- Detecting C compiler ABI info 2025-07-24T03:52:53.1853847Z -- Detecting C compiler ABI info - done 2025-07-24T03:52:53.1879152Z -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe - skipped 2025-07-24T03:52:53.1883140Z -- Detecting C compile features 2025-07-24T03:52:53.1894871Z -- Detecting C compile features - done 2025-07-24T03:52:53.1948825Z -- Not forcing any particular BLAS to be found 2025-07-24T03:52:53.2055171Z CMake Warning at CMakeLists.txt:418 (message): 2025-07-24T03:52:53.2055606Z TensorPipe cannot be used on Windows. Set it to OFF 2025-07-24T03:52:53.2055869Z 2025-07-24T03:52:53.2055873Z 2025-07-24T03:52:53.2055997Z CMake Warning at CMakeLists.txt:420 (message): 2025-07-24T03:52:53.2056358Z KleidiAI cannot be used on Windows. Set it to OFF 2025-07-24T03:52:53.2056621Z 2025-07-24T03:52:53.2056625Z 2025-07-24T03:52:53.2122378Z -- Performing Test C_HAS_AVX_1 2025-07-24T03:52:53.8308860Z -- Performing Test C_HAS_AVX_1 - Success 2025-07-24T03:52:53.8313711Z -- Performing Test C_HAS_AVX2_1 2025-07-24T03:52:54.2539175Z -- Performing Test C_HAS_AVX2_1 - Success 2025-07-24T03:52:54.2544013Z -- Performing Test C_HAS_AVX512_1 2025-07-24T03:52:54.6645945Z -- Performing Test C_HAS_AVX512_1 - Success 2025-07-24T03:52:54.6650598Z -- Performing Test CXX_HAS_AVX_1 2025-07-24T03:52:55.1197078Z -- Performing Test CXX_HAS_AVX_1 - Success 2025-07-24T03:52:55.1201714Z -- Performing Test CXX_HAS_AVX2_1 2025-07-24T03:52:55.5898627Z -- Performing Test CXX_HAS_AVX2_1 - Success 2025-07-24T03:52:55.5903256Z -- Performing Test CXX_HAS_AVX512_1 2025-07-24T03:52:55.9683797Z -- Performing Test CXX_HAS_AVX512_1 - Success 2025-07-24T03:52:55.9685503Z -- Current compiler supports avx2 extension. Will build perfkernels. 2025-07-24T03:52:55.9691472Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS 2025-07-24T03:52:56.5809733Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Success 2025-07-24T03:52:56.5810306Z -- Current compiler supports avx512f extension. Will build fbgemm. 2025-07-24T03:52:56.5833808Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-07-24T03:52:56.9300478Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Failed 2025-07-24T03:52:56.9326165Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-07-24T03:52:57.2651741Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Failed 2025-07-24T03:52:57.2659451Z -- Could not find hardware support for NEON on this machine. 2025-07-24T03:52:57.2659836Z -- No OMAP3 processor on this machine. 2025-07-24T03:52:57.2660195Z -- No OMAP4 processor on this machine. 2025-07-24T03:52:57.2660693Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-07-24T03:52:57.2748334Z -- Performing Test HAS/UTF_8 2025-07-24T03:52:57.6070405Z -- Performing Test HAS/UTF_8 - Success 2025-07-24T03:52:58.4643899Z -- Found CUDA: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 (found version "12.6") 2025-07-24T03:53:04.5116700Z -- The CUDA compiler identification is NVIDIA 12.6.85 2025-07-24T03:53:04.5353186Z -- Detecting CUDA compiler ABI info 2025-07-24T03:53:12.8116088Z -- Detecting CUDA compiler ABI info - done 2025-07-24T03:53:12.8465139Z -- Check for working CUDA compiler: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe - skipped 2025-07-24T03:53:15.1514198Z -- Detecting CUDA compile features 2025-07-24T03:53:15.1527384Z -- Detecting CUDA compile features - done 2025-07-24T03:53:15.1595184Z -- Found CUDAToolkit: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include (found version "12.6.85") 2025-07-24T03:53:16.3235692Z -- PyTorch: CUDA detected: 12.6 2025-07-24T03:53:16.3236238Z -- PyTorch: CUDA nvcc is: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-07-24T03:53:16.3237180Z -- PyTorch: CUDA toolkit directory: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-07-24T03:53:16.9154047Z -- PyTorch: Header version is: 12.6 2025-07-24T03:53:17.3727699Z -- Found Python: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter 2025-07-24T03:53:17.3770291Z CMake Warning at cmake/public/cuda.cmake:140 (message): 2025-07-24T03:53:17.3770731Z Failed to compute shorthash for libnvrtc.so 2025-07-24T03:53:17.3771055Z Call Stack (most recent call first): 2025-07-24T03:53:17.3771344Z cmake/Dependencies.cmake:44 (include) 2025-07-24T03:53:17.3771648Z CMakeLists.txt:865 (include) 2025-07-24T03:53:17.3771818Z 2025-07-24T03:53:17.3771824Z 2025-07-24T03:53:17.3821565Z -- Found CUDNN: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudnn.lib 2025-07-24T03:53:17.4192643Z -- Could NOT find CUSPARSELT (missing: CUSPARSELT_LIBRARY_PATH CUSPARSELT_INCLUDE_PATH) 2025-07-24T03:53:17.4193265Z CMake Warning at cmake/public/cuda.cmake:226 (message): 2025-07-24T03:53:17.4193699Z Cannot find cuSPARSELt library. Turning the option off 2025-07-24T03:53:17.4194050Z Call Stack (most recent call first): 2025-07-24T03:53:17.4194352Z cmake/Dependencies.cmake:44 (include) 2025-07-24T03:53:17.4194647Z CMakeLists.txt:865 (include) 2025-07-24T03:53:17.4194828Z 2025-07-24T03:53:17.4194833Z 2025-07-24T03:53:17.4528226Z -- Could NOT find CUDSS (missing: CUDSS_LIBRARY_PATH CUDSS_INCLUDE_PATH) 2025-07-24T03:53:17.4528841Z CMake Warning at cmake/public/cuda.cmake:242 (message): 2025-07-24T03:53:17.4529237Z Cannot find CUDSS library. Turning the option off 2025-07-24T03:53:17.4529586Z Call Stack (most recent call first): 2025-07-24T03:53:17.4529870Z cmake/Dependencies.cmake:44 (include) 2025-07-24T03:53:17.4530172Z CMakeLists.txt:865 (include) 2025-07-24T03:53:17.4530338Z 2025-07-24T03:53:17.4530343Z 2025-07-24T03:53:17.4530498Z -- USE_CUFILE is set to 0. Compiling without cuFile support 2025-07-24T03:53:17.4537121Z CMake Warning at cmake/public/cuda.cmake:317 (message): 2025-07-24T03:53:17.4537618Z pytorch is not compatible with `CMAKE_CUDA_ARCHITECTURES` and will ignore 2025-07-24T03:53:17.4538108Z its value. Please configure `TORCH_CUDA_ARCH_LIST` instead. 2025-07-24T03:53:17.4538501Z Call Stack (most recent call first): 2025-07-24T03:53:17.4538783Z cmake/Dependencies.cmake:44 (include) 2025-07-24T03:53:17.4539075Z CMakeLists.txt:865 (include) 2025-07-24T03:53:17.4539240Z 2025-07-24T03:53:17.4539244Z 2025-07-24T03:53:17.4539435Z -- Added CUDA NVCC flags for: -gencode;arch=compute_86,code=sm_86 2025-07-24T03:53:17.4563587Z -- Building using own protobuf under third_party per request. 2025-07-24T03:53:17.4563984Z -- Use custom protobuf build. 2025-07-24T03:53:17.4586968Z CMake Deprecation Warning at third_party/protobuf/cmake/CMakeLists.txt:2 (cmake_minimum_required): 2025-07-24T03:53:17.4587673Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-24T03:53:17.4588159Z CMake. 2025-07-24T03:53:17.4588322Z 2025-07-24T03:53:17.4588532Z Update the VERSION argument value or use a ... suffix to tell 2025-07-24T03:53:17.4589063Z CMake that the project does not need compatibility with older versions. 2025-07-24T03:53:17.4589374Z 2025-07-24T03:53:17.4589394Z 2025-07-24T03:53:17.4606680Z -- 2025-07-24T03:53:17.4606985Z -- 3.13.0.0 2025-07-24T03:53:17.4625024Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-07-24T03:53:17.6306986Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed 2025-07-24T03:53:17.6309223Z -- Looking for pthread_create in pthreads 2025-07-24T03:53:17.8110212Z -- Looking for pthread_create in pthreads - not found 2025-07-24T03:53:17.8111274Z -- Looking for pthread_create in pthread 2025-07-24T03:53:17.9884803Z -- Looking for pthread_create in pthread - not found 2025-07-24T03:53:17.9902500Z -- Found Threads: TRUE 2025-07-24T03:53:18.0435458Z -- Caffe2 protobuf include directory: $$ 2025-07-24T03:53:18.0474146Z -- Trying to find preferred BLAS backend of choice: MKL 2025-07-24T03:53:18.0499174Z -- MKL_THREADING = OMP 2025-07-24T03:53:18.0502595Z -- Looking for sys/types.h 2025-07-24T03:53:18.3974587Z -- Looking for sys/types.h - found 2025-07-24T03:53:18.3975935Z -- Looking for stdint.h 2025-07-24T03:53:18.7318012Z -- Looking for stdint.h - found 2025-07-24T03:53:18.7319751Z -- Looking for stddef.h 2025-07-24T03:53:19.0662626Z -- Looking for stddef.h - found 2025-07-24T03:53:19.0663444Z -- Check size of void* 2025-07-24T03:53:19.4212641Z -- Check size of void* - done 2025-07-24T03:53:19.4437824Z -- Looking for cblas_sgemm 2025-07-24T03:53:20.0070411Z -- Looking for cblas_sgemm - found 2025-07-24T03:53:20.0074858Z -- Looking for cblas_gemm_bf16bf16f32 2025-07-24T03:53:20.5614532Z -- Looking for cblas_gemm_bf16bf16f32 - found 2025-07-24T03:53:20.5615369Z -- Looking for cblas_gemm_f16f16f32 2025-07-24T03:53:21.1168502Z -- Looking for cblas_gemm_f16f16f32 - found 2025-07-24T03:53:21.1515297Z -- MKL libraries: C:/Jenkins/Miniconda3/Library/lib/mkl_intel_lp64.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_thread.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_core.lib;C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib 2025-07-24T03:53:21.1516439Z CMake Warning (dev) in cmake/Dependencies.cmake: 2025-07-24T03:53:21.1516792Z A logical block opening on the line 2025-07-24T03:53:21.1516984Z 2025-07-24T03:53:21.1517217Z C:/actions-runner/_work/pytorch/pytorch/cmake/Dependencies.cmake:261 (if) 2025-07-24T03:53:21.1517564Z 2025-07-24T03:53:21.1517657Z closes on the line 2025-07-24T03:53:21.1517792Z 2025-07-24T03:53:21.1518034Z C:/actions-runner/_work/pytorch/pytorch/cmake/Dependencies.cmake:263 (endif) 2025-07-24T03:53:21.1518452Z 2025-07-24T03:53:21.1518547Z with mis-matching arguments. 2025-07-24T03:53:21.1518853Z Call Stack (most recent call first): 2025-07-24T03:53:21.1519152Z CMakeLists.txt:865 (include) 2025-07-24T03:53:21.1519518Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:53:21.1531680Z 2025-07-24T03:53:21.1531967Z -- MKL include directory: C:/Jenkins/Miniconda3/Library/include 2025-07-24T03:53:21.1532364Z -- MKL OpenMP type: Intel 2025-07-24T03:53:21.1532746Z -- MKL OpenMP library: C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib 2025-07-24T03:53:21.3399649Z -- The ASM compiler identification is MSVC 2025-07-24T03:53:21.3416362Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe 2025-07-24T03:53:21.3537279Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-07-24T03:53:21.3598733Z -- Generating microkernels.cmake 2025-07-24T03:53:26.2027839Z Duplicate microkernel definition: src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-avx256vnni.c and src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-avxvnni.c (1th function) 2025-07-24T03:53:26.2029294Z Duplicate microkernel definition: src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-avxvnni.c and src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-scalar.c 2025-07-24T03:53:26.2030160Z No microkernel found in src\reference\binary-elementwise.cc 2025-07-24T03:53:26.2030598Z No microkernel found in src\reference\packing.cc 2025-07-24T03:53:26.2030998Z No microkernel found in src\reference\unary-elementwise.cc 2025-07-24T03:53:26.3271042Z -- Found Git: C:/Program Files/Git/cmd/git.exe (found version "2.49.0.windows.1") 2025-07-24T03:53:26.3810659Z -- Google Benchmark version: v1.9.3, normalized to 1.9.3 2025-07-24T03:53:26.3825519Z -- Looking for shm_open in rt 2025-07-24T03:53:26.5772689Z -- Looking for shm_open in rt - not found 2025-07-24T03:53:26.5799012Z -- Performing Test HAVE_CXX_FLAG_WX 2025-07-24T03:53:26.9204584Z -- Performing Test HAVE_CXX_FLAG_WX - Success 2025-07-24T03:53:26.9208468Z -- Compiling and running to test HAVE_STD_REGEX 2025-07-24T03:53:28.7580906Z -- Performing Test HAVE_STD_REGEX -- success 2025-07-24T03:53:28.7582098Z -- Compiling and running to test HAVE_GNU_POSIX_REGEX 2025-07-24T03:53:28.8822301Z -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile 2025-07-24T03:53:28.8822856Z -- Compiling and running to test HAVE_POSIX_REGEX 2025-07-24T03:53:28.9845897Z -- Performing Test HAVE_POSIX_REGEX -- failed to compile 2025-07-24T03:53:28.9846873Z -- Compiling and running to test HAVE_STEADY_CLOCK 2025-07-24T03:53:29.7196278Z -- Performing Test HAVE_STEADY_CLOCK -- success 2025-07-24T03:53:29.7234883Z -- Compiling and running to test HAVE_PTHREAD_AFFINITY 2025-07-24T03:53:29.8259663Z -- Performing Test HAVE_PTHREAD_AFFINITY -- failed to compile 2025-07-24T03:53:29.8477718Z CMake Warning (dev) at third_party/fbgemm/CMakeLists.txt:97 (find_package): 2025-07-24T03:53:29.8478322Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-07-24T03:53:29.8478861Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-07-24T03:53:29.8479414Z the cmake_policy command to set the policy and suppress this warning. 2025-07-24T03:53:29.8479724Z 2025-07-24T03:53:29.8479920Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:53:29.8480246Z 2025-07-24T03:53:29.8990949Z -- Found PythonInterp: C:/Jenkins/Miniconda3/python.exe (found version "3.9.19") 2025-07-24T03:53:29.9018406Z -- Performing Test COMPILER_SUPPORTS_AVX512 2025-07-24T03:53:30.2450632Z -- Performing Test COMPILER_SUPPORTS_AVX512 - Success 2025-07-24T03:53:30.2460384Z -- Performing Test HAVE_GNU_F2H_IEEE 2025-07-24T03:53:30.3949693Z -- Performing Test HAVE_GNU_F2H_IEEE - Failed 2025-07-24T03:53:30.3987777Z -- Check OMP with lib C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib and flags -openmp:experimental 2025-07-24T03:53:30.7264741Z -- Check OMP with lib C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib and flags -openmp:experimental 2025-07-24T03:53:31.4198021Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-07-24T03:53:31.4198862Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-07-24T03:53:31.4199392Z does not match the name of the calling package (OpenMP). This can lead to 2025-07-24T03:53:31.4199988Z problems in calling code that expects `find_package` result variables 2025-07-24T03:53:31.4200410Z (e.g., `_FOUND`) to follow a certain pattern. 2025-07-24T03:53:31.4200786Z Call Stack (most recent call first): 2025-07-24T03:53:31.4201192Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-07-24T03:53:31.4201672Z third_party/fbgemm/CMakeLists.txt:148 (find_package) 2025-07-24T03:53:31.4202124Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:53:31.4202437Z 2025-07-24T03:53:31.4202550Z -- Found OpenMP_C: -openmp:experimental 2025-07-24T03:53:31.8083383Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-07-24T03:53:31.8084256Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-07-24T03:53:31.8084801Z does not match the name of the calling package (OpenMP). This can lead to 2025-07-24T03:53:31.8085417Z problems in calling code that expects `find_package` result variables 2025-07-24T03:53:31.8085851Z (e.g., `_FOUND`) to follow a certain pattern. 2025-07-24T03:53:31.8087450Z Call Stack (most recent call first): 2025-07-24T03:53:31.8087871Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-07-24T03:53:31.8088349Z third_party/fbgemm/CMakeLists.txt:148 (find_package) 2025-07-24T03:53:31.8088811Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:53:31.8089126Z 2025-07-24T03:53:31.8089250Z -- Found OpenMP_CXX: -openmp:experimental 2025-07-24T03:53:31.8099507Z -- Found OpenMP: TRUE 2025-07-24T03:53:31.8101108Z -- OpenMP found! OpenMP_C_INCLUDE_DIRS = 2025-07-24T03:53:32.1195645Z -- ========== 2025-07-24T03:53:32.1195959Z -- CMAKE_BUILD_TYPE = Release 2025-07-24T03:53:32.1196289Z -- CMAKE_CXX_FLAGS_DEBUG is /Ob0 /Od /RTC1 /bigobj 2025-07-24T03:53:32.1196666Z -- CMAKE_CXX_FLAGS_RELEASE is /O2 /Ob2 /DNDEBUG /bigobj 2025-07-24T03:53:32.1196984Z -- ========== 2025-07-24T03:53:32.1411558Z ** AsmJit Summary ** 2025-07-24T03:53:32.1412058Z ASMJIT_DIR=C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit 2025-07-24T03:53:32.1412518Z ASMJIT_TEST=FALSE 2025-07-24T03:53:32.1412755Z ASMJIT_TARGET_TYPE=SHARED 2025-07-24T03:53:32.1412992Z ASMJIT_DEPS= 2025-07-24T03:53:32.1413187Z ASMJIT_LIBS=asmjit 2025-07-24T03:53:32.1413396Z ASMJIT_CFLAGS= 2025-07-24T03:53:32.1413854Z ASMJIT_PRIVATE_CFLAGS=-MP;-GF;-Zc:__cplusplus;-Zc:inline;-Zc:strictStrings;-Zc:threadSafeInit-;-W4 2025-07-24T03:53:32.1414347Z ASMJIT_PRIVATE_CFLAGS_DBG=-GS 2025-07-24T03:53:32.1414619Z ASMJIT_PRIVATE_CFLAGS_REL=-GS-;-O2;-Oi 2025-07-24T03:53:32.1519336Z -- Performing Test HAS_WNO_DEPRECATED_ENUM_ENUM_CONVERSION 2025-07-24T03:53:32.2346015Z -- Performing Test HAS_WNO_DEPRECATED_ENUM_ENUM_CONVERSION - Failed 2025-07-24T03:53:32.2373006Z -- Performing Test HAS_WNO_DEPRECATED_ANON_ENUM_ENUM_CONVERSION 2025-07-24T03:53:32.3282018Z -- Performing Test HAS_WNO_DEPRECATED_ANON_ENUM_ENUM_CONVERSION - Failed 2025-07-24T03:53:32.3309043Z -- Performing Test HAS_WNO_ERROR_DEPRECATED_ENUM_ENUM_CONVERSION 2025-07-24T03:53:32.4163742Z -- Performing Test HAS_WNO_ERROR_DEPRECATED_ENUM_ENUM_CONVERSION - Failed 2025-07-24T03:53:32.4448121Z CMake Deprecation Warning at third_party/FP16/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-07-24T03:53:32.4448781Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-24T03:53:32.4449178Z CMake. 2025-07-24T03:53:32.4449289Z 2025-07-24T03:53:32.4449497Z Update the VERSION argument value or use a ... suffix to tell 2025-07-24T03:53:32.4450047Z CMake that the project does not need compatibility with older versions. 2025-07-24T03:53:32.4450360Z 2025-07-24T03:53:32.4450365Z 2025-07-24T03:53:32.4523546Z CMake Deprecation Warning at third_party/psimd/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-07-24T03:53:32.4524333Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-24T03:53:32.4524713Z CMake. 2025-07-24T03:53:32.4524857Z 2025-07-24T03:53:32.4525075Z Update the VERSION argument value or use a ... suffix to tell 2025-07-24T03:53:32.4525594Z CMake that the project does not need compatibility with older versions. 2025-07-24T03:53:32.4525902Z 2025-07-24T03:53:32.4525906Z 2025-07-24T03:53:32.4579593Z -- Using third party subdirectory Eigen. 2025-07-24T03:53:36.1251747Z -- Found Python: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter Development.Module NumPy 2025-07-24T03:53:36.1254650Z -- Using third_party/pybind11. 2025-07-24T03:53:36.1256049Z -- pybind11 include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-07-24T03:53:36.1308194Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-07-24T03:53:36.1308711Z -- Using third_party/opentelemetry-cpp. 2025-07-24T03:53:36.1309384Z -- opentelemetry api include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-07-24T03:53:36.6974408Z -- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS) 2025-07-24T03:53:37.1230409Z -- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS) 2025-07-24T03:53:37.1239668Z -- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND) 2025-07-24T03:53:37.1244247Z CMake Warning at cmake/Dependencies.cmake:922 (message): 2025-07-24T03:53:37.1244714Z Not compiling with MPI. Suppress this warning with -DUSE_MPI=OFF 2025-07-24T03:53:37.1245119Z Call Stack (most recent call first): 2025-07-24T03:53:37.1245623Z CMakeLists.txt:865 (include) 2025-07-24T03:53:37.1245808Z 2025-07-24T03:53:37.1245813Z 2025-07-24T03:53:37.1305287Z -- Adding OpenMP CXX_FLAGS: -openmp:experimental 2025-07-24T03:53:37.1305806Z -- Will link against OpenMP libraries: C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib 2025-07-24T03:53:37.1316109Z -- Found nvtx3: C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX/c/include 2025-07-24T03:53:37.1348385Z -- Found CUB: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-07-24T03:53:37.1371968Z -- MSVC detected 2025-07-24T03:53:37.1372190Z -- Set USE_REDIS OFF 2025-07-24T03:53:37.1372745Z -- Set USE_IBVERBS OFF 2025-07-24T03:53:37.1373043Z -- Set USE_NCCL OFF 2025-07-24T03:53:37.1373253Z -- Set USE_RCCL OFF 2025-07-24T03:53:37.1373455Z -- Set USE_LIBUV OFF 2025-07-24T03:53:37.1375414Z -- Gloo build as SHARED library 2025-07-24T03:53:37.1423097Z -- Found CUDAToolkit: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include (found suitable version "12.6.85", minimum required is "7.0") 2025-07-24T03:53:38.2590083Z -- CUDA detected: 12.6.85 2025-07-24T03:53:38.2727125Z -- GLOO_USE_TORCH_DTYPES : 1 C:/actions-runner/_work/pytorch/pytorch;C:/actions-runner/_work/pytorch/pytorch/build 2025-07-24T03:53:38.7389879Z -- Found Python3: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter 2025-07-24T03:53:38.7402980Z -- ONNX_PROTOC_EXECUTABLE: $ 2025-07-24T03:53:38.7403444Z -- Protobuf_VERSION: Protobuf_VERSION_NOTFOUND 2025-07-24T03:53:38.7407401Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-07-24T03:53:38.7415269Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-07-24T03:53:38.7422677Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-07-24T03:53:38.9764799Z -- 2025-07-24T03:53:38.9765077Z -- ******** Summary ******** 2025-07-24T03:53:38.9765380Z -- CMake version : 3.27.9 2025-07-24T03:53:38.9765757Z -- CMake command : C:/Program Files/CMake/bin/cmake.exe 2025-07-24T03:53:38.9766169Z -- System : Windows 2025-07-24T03:53:38.9766823Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe 2025-07-24T03:53:38.9767499Z -- C++ compiler version : 19.38.33145.0 2025-07-24T03:53:38.9768124Z -- CXX flags : /DWIN32 /D_WINDOWS /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL /EHsc /wd26812 2025-07-24T03:53:38.9768710Z -- Build type : Release 2025-07-24T03:53:38.9769108Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 2025-07-24T03:53:38.9770674Z -- CMAKE_PREFIX_PATH : C:\Jenkins\Miniconda3\Lib\site-packages;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-07-24T03:53:38.9772281Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-07-24T03:53:38.9773149Z -- CMAKE_MODULE_PATH : C:/actions-runner/_work/pytorch/pytorch/cmake/Modules;C:/actions-runner/_work/pytorch/pytorch/cmake/public/../Modules_CUDA_fix 2025-07-24T03:53:38.9773919Z -- 2025-07-24T03:53:38.9774142Z -- ONNX version : 1.18.0 2025-07-24T03:53:38.9774511Z -- ONNX NAMESPACE : onnx_torch 2025-07-24T03:53:38.9774849Z -- ONNX_USE_LITE_PROTO : OFF 2025-07-24T03:53:38.9775144Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-07-24T03:53:38.9775446Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-07-24T03:53:38.9775981Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-07-24T03:53:38.9776275Z -- ONNX_WERROR : OFF 2025-07-24T03:53:38.9776561Z -- ONNX_BUILD_TESTS : OFF 2025-07-24T03:53:38.9776838Z -- BUILD_SHARED_LIBS : OFF 2025-07-24T03:53:38.9777102Z -- 2025-07-24T03:53:38.9777557Z -- Protobuf compiler : $ 2025-07-24T03:53:38.9777954Z -- Protobuf includes : 2025-07-24T03:53:38.9778249Z -- Protobuf libraries : 2025-07-24T03:53:38.9778529Z -- ONNX_BUILD_PYTHON : OFF 2025-07-24T03:53:38.9778919Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-07-24T03:53:38.9779315Z -- Adding -DNDEBUG to compile flags 2025-07-24T03:53:38.9818116Z -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 2025-07-24T03:53:39.0876409Z -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 - False 2025-07-24T03:53:39.0876869Z -- Compiling with MAGMA support 2025-07-24T03:53:39.0877366Z -- MAGMA INCLUDE DIRECTORIES: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/magma/include 2025-07-24T03:53:39.0878074Z -- MAGMA LIBRARIES: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/magma/lib/magma.lib 2025-07-24T03:53:39.0878552Z -- MAGMA V2 check: 0 2025-07-24T03:53:39.0882599Z -- Could not find hardware support for NEON on this machine. 2025-07-24T03:53:39.0882971Z -- No OMAP3 processor on this machine. 2025-07-24T03:53:39.0883276Z -- No OMAP4 processor on this machine. 2025-07-24T03:53:39.0898905Z -- Looking for sbgemm_ 2025-07-24T03:53:44.4976030Z -- Looking for sbgemm_ - not found 2025-07-24T03:53:44.4986262Z -- Found a library with LAPACK API (mkl). 2025-07-24T03:53:44.4987829Z disabling ROCM because NOT USE_ROCM is set 2025-07-24T03:53:44.4988184Z -- MIOpen not found. Compiling without MIOpen support 2025-07-24T03:53:44.4997233Z -- Will build oneDNN UKERNEL 2025-07-24T03:53:44.5095607Z -- MKLDNN_CPU_RUNTIME = OMP 2025-07-24T03:53:44.5117014Z -- DNNL_TARGET_ARCH: X64 2025-07-24T03:53:44.5148004Z -- DNNL_LIBRARY_NAME: dnnl 2025-07-24T03:53:44.5247485Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-07-24T03:53:44.5248284Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-07-24T03:53:44.5248829Z does not match the name of the calling package (OpenMP). This can lead to 2025-07-24T03:53:44.5249338Z problems in calling code that expects `find_package` result variables 2025-07-24T03:53:44.5249764Z (e.g., `_FOUND`) to follow a certain pattern. 2025-07-24T03:53:44.5250079Z Call Stack (most recent call first): 2025-07-24T03:53:44.5250480Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-07-24T03:53:44.5250993Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-07-24T03:53:44.5251425Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-07-24T03:53:44.5251874Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:53:44.5252186Z 2025-07-24T03:53:44.5252307Z -- Found OpenMP_C: -openmp:experimental 2025-07-24T03:53:44.5258525Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-07-24T03:53:44.5259287Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-07-24T03:53:44.5259813Z does not match the name of the calling package (OpenMP). This can lead to 2025-07-24T03:53:44.5260334Z problems in calling code that expects `find_package` result variables 2025-07-24T03:53:44.5260757Z (e.g., `_FOUND`) to follow a certain pattern. 2025-07-24T03:53:44.5261060Z Call Stack (most recent call first): 2025-07-24T03:53:44.5261466Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-07-24T03:53:44.5261980Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-07-24T03:53:44.5262637Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-07-24T03:53:44.5263071Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:53:44.5263387Z 2025-07-24T03:53:44.5263506Z -- Found OpenMP_CXX: -openmp:experimental 2025-07-24T03:53:44.5708126Z -- Enabled testing coverage: CI 2025-07-24T03:53:44.5719913Z -- Enabled workload: TRAINING 2025-07-24T03:53:44.5720194Z -- Enabled primitives: ALL 2025-07-24T03:53:44.5720465Z -- Enabled primitive CPU ISA: ALL 2025-07-24T03:53:44.5720840Z -- Enabled primitive GPU ISA: ALL 2025-07-24T03:53:44.5721250Z -- Enabled GeMM kernels ISA: ALL 2025-07-24T03:53:44.5839379Z -- Primitive cache is enabled 2025-07-24T03:53:44.5839781Z -- Experimental functionality for ukernels is enabled 2025-07-24T03:53:44.6503976Z -- The ASM_MASM compiler identification is MSVC 2025-07-24T03:53:44.7017943Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/ml64.exe 2025-07-24T03:53:44.7284454Z -- Graph component is enabled 2025-07-24T03:53:44.7400046Z -- Graph compiler backend is disabled. 2025-07-24T03:53:44.7538803Z -- Found MKL-DNN: TRUE 2025-07-24T03:53:44.7637181Z -- {fmt} version: 11.2.0 2025-07-24T03:53:44.7637486Z -- Build type: Release 2025-07-24T03:53:44.7725500Z -- Using Kineto with CUPTI support 2025-07-24T03:53:44.7727862Z -- Configuring Kineto dependency: 2025-07-24T03:53:44.7728341Z -- KINETO_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-07-24T03:53:44.7728843Z -- KINETO_BUILD_TESTS = OFF 2025-07-24T03:53:44.7729120Z -- KINETO_LIBRARY_TYPE = static 2025-07-24T03:53:44.7729507Z -- CUDA_SOURCE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-07-24T03:53:44.7730083Z -- CUDA_INCLUDE_DIRS = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-07-24T03:53:44.7732106Z -- CUPTI_INCLUDE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/include 2025-07-24T03:53:44.7732883Z -- CUDA_cupti_LIBRARY = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/lib64/cupti.lib 2025-07-24T03:53:44.7733422Z -- Found CUPTI 2025-07-24T03:53:44.7800278Z CMake Warning (dev) at third_party/kineto/libkineto/CMakeLists.txt:15 (find_package): 2025-07-24T03:53:44.7800893Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-07-24T03:53:44.7801425Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-07-24T03:53:44.7801945Z the cmake_policy command to set the policy and suppress this warning. 2025-07-24T03:53:44.7802255Z 2025-07-24T03:53:44.7802462Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:53:44.7802767Z 2025-07-24T03:53:44.8365779Z -- ROCM_SOURCE_DIR = 2025-07-24T03:53:44.9779542Z -- Kineto: FMT_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt 2025-07-24T03:53:44.9780222Z -- Kineto: FMT_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt/include 2025-07-24T03:53:44.9780957Z -- CUPTI_INCLUDE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/include 2025-07-24T03:53:44.9781495Z -- ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-07-24T03:53:44.9782106Z -- DYNOLOG_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-07-24T03:53:44.9783076Z -- IPCFABRIC_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-07-24T03:53:44.9811133Z -- Configured Kineto 2025-07-24T03:53:44.9867840Z -- Performing Test HAS/WD4624 2025-07-24T03:53:45.3485614Z -- Performing Test HAS/WD4624 - Success 2025-07-24T03:53:45.3512172Z -- Performing Test HAS/WD4068 2025-07-24T03:53:45.7139518Z -- Performing Test HAS/WD4068 - Success 2025-07-24T03:53:45.7165652Z -- Performing Test HAS/WD4067 2025-07-24T03:53:46.0724954Z -- Performing Test HAS/WD4067 - Success 2025-07-24T03:53:46.0752995Z -- Performing Test HAS/WD4267 2025-07-24T03:53:46.4309642Z -- Performing Test HAS/WD4267 - Success 2025-07-24T03:53:46.4335579Z -- Performing Test HAS/WD4661 2025-07-24T03:53:46.7989342Z -- Performing Test HAS/WD4661 - Success 2025-07-24T03:53:46.8015202Z -- Performing Test HAS/WD4717 2025-07-24T03:53:47.1634570Z -- Performing Test HAS/WD4717 - Success 2025-07-24T03:53:47.1660491Z -- Performing Test HAS/WD4244 2025-07-24T03:53:47.5251101Z -- Performing Test HAS/WD4244 - Success 2025-07-24T03:53:47.5277617Z -- Performing Test HAS/WD4804 2025-07-24T03:53:47.9256277Z -- Performing Test HAS/WD4804 - Success 2025-07-24T03:53:47.9283266Z -- Performing Test HAS/WD4273 2025-07-24T03:53:48.3062573Z -- Performing Test HAS/WD4273 - Success 2025-07-24T03:53:48.3089292Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-07-24T03:53:48.3935995Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-07-24T03:53:49.6159380Z -- 2025-07-24T03:53:49.6160196Z -- Architecture: x64 2025-07-24T03:53:49.6163868Z -- Use the C++ compiler to compile (MI_USE_CXX=ON) 2025-07-24T03:53:49.6170694Z -- 2025-07-24T03:53:49.6170899Z -- Library name : mimalloc 2025-07-24T03:53:49.6171152Z -- Version : 2.2.4 2025-07-24T03:53:49.6171382Z -- Build type : release 2025-07-24T03:53:49.6172001Z -- C++ Compiler : C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe 2025-07-24T03:53:49.6172636Z -- Compiler flags : /Zc:__cplusplus 2025-07-24T03:53:49.6173011Z -- Compiler defines : MI_CMAKE_BUILD_TYPE=release;MI_BUILD_RELEASE 2025-07-24T03:53:49.6173457Z -- Link libraries : psapi;shell32;user32;advapi32;bcrypt 2025-07-24T03:53:49.6173800Z -- Build targets : static 2025-07-24T03:53:49.6174030Z -- 2025-07-24T03:53:49.6288078Z -- don't use NUMA 2025-07-24T03:53:49.6346329Z -- Looking for backtrace 2025-07-24T03:53:49.7446614Z -- Looking for backtrace - not found 2025-07-24T03:53:49.7539573Z -- Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR) 2025-07-24T03:53:54.5417151Z -- headers outputs: 2025-07-24T03:53:56.7589809Z -- sources outputs: 2025-07-24T03:53:58.4368827Z -- declarations_yaml outputs: 2025-07-24T03:53:58.4454125Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT 2025-07-24T03:54:03.8211901Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT - Failed 2025-07-24T03:54:04.0491969Z -- Using ATen parallel backend: OMP 2025-07-24T03:54:04.6336376Z -- Found OpenSSL: C:/Jenkins/Miniconda3/Library/lib/libcrypto.lib (found version "3.0.16") 2025-07-24T03:54:04.7305952Z -- Check size of long double 2025-07-24T03:54:05.0843347Z -- Check size of long double - done 2025-07-24T03:54:05.0848712Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-07-24T03:54:05.2226303Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-07-24T03:54:05.2230164Z -- Performing Test COMPILER_SUPPORTS_SSE2 2025-07-24T03:54:05.6227033Z -- Performing Test COMPILER_SUPPORTS_SSE2 - Success 2025-07-24T03:54:05.6230604Z -- Performing Test COMPILER_SUPPORTS_SSE4 2025-07-24T03:54:06.0209661Z -- Performing Test COMPILER_SUPPORTS_SSE4 - Success 2025-07-24T03:54:06.0212996Z -- Performing Test COMPILER_SUPPORTS_AVX 2025-07-24T03:54:06.4298277Z -- Performing Test COMPILER_SUPPORTS_AVX - Success 2025-07-24T03:54:06.4301682Z -- Performing Test COMPILER_SUPPORTS_FMA4 2025-07-24T03:54:06.8837199Z -- Performing Test COMPILER_SUPPORTS_FMA4 - Success 2025-07-24T03:54:06.8841865Z -- Performing Test COMPILER_SUPPORTS_AVX2 2025-07-24T03:54:07.2891677Z -- Performing Test COMPILER_SUPPORTS_AVX2 - Success 2025-07-24T03:54:07.2895437Z -- Performing Test COMPILER_SUPPORTS_AVX512F 2025-07-24T03:54:07.6858041Z -- Performing Test COMPILER_SUPPORTS_AVX512F - Success 2025-07-24T03:54:07.6903322Z -- Found OpenMP_C: -openmp:experimental (found version "2.0") 2025-07-24T03:54:07.6916121Z -- Found OpenMP_CXX: -openmp:experimental (found version "2.0") 2025-07-24T03:54:07.6926935Z -- Found OpenMP: TRUE (found version "2.0") 2025-07-24T03:54:07.6932178Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-07-24T03:54:08.0676367Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Success 2025-07-24T03:54:08.0678845Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-07-24T03:54:08.1943460Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-07-24T03:54:08.1946649Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-07-24T03:54:08.3268400Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-07-24T03:54:08.3272162Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-07-24T03:54:08.5856862Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Failed 2025-07-24T03:54:08.5859553Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-07-24T03:54:08.6889394Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-07-24T03:54:08.7862006Z Target system: Windows-10.0.17763 2025-07-24T03:54:08.7862370Z -- Configuring build for SLEEF-v3.8.0 2025-07-24T03:54:08.7862677Z Target processor: AMD64 2025-07-24T03:54:08.7862958Z Host system: Windows-10.0.17763 2025-07-24T03:54:08.7863232Z Host processor: AMD64 2025-07-24T03:54:08.7863857Z Detected C compiler: MSVC @ C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe 2025-07-24T03:54:08.7864526Z CMake: 3.27.9 2025-07-24T03:54:08.7864802Z Make program: C:/Jenkins/Miniconda3/Library/bin/ninja.exe 2025-07-24T03:54:08.7865337Z -- Using option `/D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_DEPRECATE ` to compile libsleef 2025-07-24T03:54:08.7865803Z -- Building shared libs : OFF 2025-07-24T03:54:08.7866073Z -- Building static test bins: OFF 2025-07-24T03:54:08.7866342Z -- MPFR : LIB_MPFR-NOTFOUND 2025-07-24T03:54:08.7866572Z -- GMP : LIBGMP-NOTFOUND 2025-07-24T03:54:08.7866807Z -- RT : 2025-07-24T03:54:08.7867000Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-07-24T03:54:08.7867239Z -- OPENSSL : 3.0.16 2025-07-24T03:54:08.7867447Z -- SDE : SDE_COMMAND-NOTFOUND 2025-07-24T03:54:08.7867708Z -- COMPILER_SUPPORTS_OPENMP : FALSE 2025-07-24T03:54:08.8454652Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-07-24T03:54:08.8455291Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-07-24T03:54:08.8456129Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-07-24T03:54:08.8456865Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-07-24T03:54:09.5385657Z -- NVSHMEM not found, not building with NVSHMEM support. 2025-07-24T03:54:09.7627414Z CMake Warning at CMakeLists.txt:1265 (message): 2025-07-24T03:54:09.7627922Z Generated cmake files are only fully tested if one builds with system glog, 2025-07-24T03:54:09.7628574Z gflags, and protobuf. Other settings may generate files that are not well 2025-07-24T03:54:09.7628966Z tested. 2025-07-24T03:54:09.7629083Z 2025-07-24T03:54:09.7629088Z 2025-07-24T03:54:09.7660566Z -- 2025-07-24T03:54:09.7660811Z -- ******** Summary ******** 2025-07-24T03:54:09.7661127Z -- General: 2025-07-24T03:54:09.7661326Z -- CMake version : 3.27.9 2025-07-24T03:54:09.7661727Z -- CMake command : C:/Program Files/CMake/bin/cmake.exe 2025-07-24T03:54:09.7662115Z -- System : Windows 2025-07-24T03:54:09.7662853Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe 2025-07-24T03:54:09.7663533Z -- C++ compiler id : MSVC 2025-07-24T03:54:09.7663858Z -- C++ compiler version : 19.38.33145.0 2025-07-24T03:54:09.7664158Z -- Using ccache if found : OFF 2025-07-24T03:54:09.7666037Z -- CXX flags : /DWIN32 /D_WINDOWS /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOROCTRACER -DLIBKINETO_NOXPUPTI=ON -DUSE_FBGEMM -DUSE_XNNPACK -DSYMBOLICATE_MOBILE_DEBUG_HANDLE /wd4624 /wd4068 /wd4067 /wd4267 /wd4661 /wd4717 /wd4244 /wd4804 /wd4273 2025-07-24T03:54:09.7667754Z -- Shared LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-07-24T03:54:09.7668444Z -- Static LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-07-24T03:54:09.7669109Z -- Module LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-07-24T03:54:09.7669545Z -- Build type : Release 2025-07-24T03:54:09.7670757Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;ONNX_NAMESPACE=onnx_torch;_CRT_SECURE_NO_DEPRECATE=1;IDEEP_USE_MKL;USE_EXTERNAL_MZCRC;MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS;EXPORT_AOTI_FUNCTIONS;WIN32_LEAN_AND_MEAN;_UCRT_LEGACY_INFINITY;NOMINMAX;USE_MIMALLOC 2025-07-24T03:54:09.7673278Z -- CMAKE_PREFIX_PATH : C:\Jenkins\Miniconda3\Lib\site-packages;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-07-24T03:54:09.7675009Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-07-24T03:54:09.7675472Z -- USE_GOLD_LINKER : OFF 2025-07-24T03:54:09.7675764Z -- 2025-07-24T03:54:09.7675953Z -- TORCH_VERSION : 2.9.0 2025-07-24T03:54:09.7676278Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-07-24T03:54:09.7676617Z -- BUILD_BINARY : OFF 2025-07-24T03:54:09.7676879Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-07-24T03:54:09.7677191Z -- Link local protobuf : ON 2025-07-24T03:54:09.7677448Z -- BUILD_PYTHON : True 2025-07-24T03:54:09.7677753Z -- Python version : 3.9.19 2025-07-24T03:54:09.7678130Z -- Python executable : C:\Jenkins\Miniconda3\python.exe 2025-07-24T03:54:09.7678576Z -- Python library : C:/Jenkins/Miniconda3/libs/python39.lib 2025-07-24T03:54:09.7679053Z -- Python includes : C:/Jenkins/Miniconda3/include 2025-07-24T03:54:09.7679477Z -- Python site-package : C:\Jenkins\Miniconda3\Lib\site-packages 2025-07-24T03:54:09.7679859Z -- BUILD_SHARED_LIBS : ON 2025-07-24T03:54:09.7680127Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-07-24T03:54:09.7680417Z -- BUILD_TEST : True 2025-07-24T03:54:09.7680669Z -- BUILD_JNI : OFF 2025-07-24T03:54:09.7680921Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-07-24T03:54:09.7681192Z -- BUILD_LITE_INTERPRETER: OFF 2025-07-24T03:54:09.7681436Z -- INTERN_BUILD_MOBILE : 2025-07-24T03:54:09.7681694Z -- TRACING_BASED : OFF 2025-07-24T03:54:09.7681927Z -- USE_BLAS : 1 2025-07-24T03:54:09.7682167Z -- BLAS : mkl 2025-07-24T03:54:09.7682407Z -- BLAS_HAS_SBGEMM : 2025-07-24T03:54:09.7682649Z -- USE_LAPACK : 1 2025-07-24T03:54:09.7682893Z -- LAPACK : mkl 2025-07-24T03:54:09.7683122Z -- USE_ASAN : OFF 2025-07-24T03:54:09.7683362Z -- USE_TSAN : OFF 2025-07-24T03:54:09.7683605Z -- USE_CPP_CODE_COVERAGE : OFF 2025-07-24T03:54:09.7683855Z -- USE_CUDA : 1 2025-07-24T03:54:09.7684150Z -- CUDA static link : OFF 2025-07-24T03:54:09.7684398Z -- USE_CUDNN : ON 2025-07-24T03:54:09.7684693Z -- USE_CUSPARSELT : OFF 2025-07-24T03:54:09.7684951Z -- USE_CUDSS : OFF 2025-07-24T03:54:09.7685253Z -- USE_CUFILE : OFF 2025-07-24T03:54:09.7685486Z -- CUDA version : 12.6 2025-07-24T03:54:09.7685746Z -- USE_FLASH_ATTENTION : OFF 2025-07-24T03:54:09.7685993Z -- USE_MEM_EFF_ATTENTION : ON 2025-07-24T03:54:09.7686253Z -- cuDNN version : 9.10.2 2025-07-24T03:54:09.7686654Z -- CUDA root directory : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-07-24T03:54:09.7687286Z -- CUDA library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cuda.lib 2025-07-24T03:54:09.7687962Z -- cudart library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudart.lib 2025-07-24T03:54:09.7688789Z -- cublas library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cublas.lib 2025-07-24T03:54:09.7689580Z -- cufft library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cufft.lib 2025-07-24T03:54:09.7690246Z -- curand library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/curand.lib 2025-07-24T03:54:09.7691016Z -- cusparse library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cusparse.lib 2025-07-24T03:54:09.7691812Z -- cuDNN library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudnn.lib 2025-07-24T03:54:09.7692455Z -- nvrtc : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/nvrtc.lib 2025-07-24T03:54:09.7693083Z -- CUDA include path : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-07-24T03:54:09.7693706Z -- NVCC executable : C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-07-24T03:54:09.7694347Z -- CUDA compiler : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe 2025-07-24T03:54:09.7698386Z -- CUDA flags : -DLIBCUDACXX_ENABLE_SIMPLIFIED_COMPLEX_OPERATIONS -Xcompiler /Zc:__cplusplus -Xcompiler /w -w -Xcompiler /FS -Xfatbin -compress-all -DONNX_NAMESPACE=onnx_torch --use-local-env -gencode arch=compute_86,code=sm_86 -Xcudafe --diag_suppress=cc_clobber_ignored,--diag_suppress=field_without_dll_interface,--diag_suppress=base_class_has_different_dll_interface,--diag_suppress=dll_interface_conflict_none_assumed,--diag_suppress=dll_interface_conflict_dllexport_assumed,--diag_suppress=bad_friend_decl --Werror cross-execution-space-call --no-host-device-move-forward --expt-relaxed-constexpr --expt-extended-lambda -Xcompiler=/wd4819,/wd4503,/wd4190,/wd4244,/wd4251,/wd4275,/wd4522 -Wno-deprecated-gpu-targets --expt-extended-lambda -DCUB_WRAPPED_NAMESPACE=at_cuda_detail -DCUDA_HAS_FP16=1 -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ -D__CUDA_NO_BFLOAT16_CONVERSIONS__ 2025-07-24T03:54:09.7702045Z -- CUDA host compiler : 2025-07-24T03:54:09.7702303Z -- CUDA --device-c : OFF 2025-07-24T03:54:09.7702565Z -- USE_TENSORRT : 2025-07-24T03:54:09.7702816Z -- USE_XPU : 0 2025-07-24T03:54:09.7703053Z -- USE_ROCM : OFF 2025-07-24T03:54:09.7703305Z -- BUILD_NVFUSER : 2025-07-24T03:54:09.7703537Z -- USE_EIGEN_FOR_BLAS : 2025-07-24T03:54:09.7703778Z -- USE_FBGEMM : ON 2025-07-24T03:54:09.7704020Z -- USE_FAKELOWP : OFF 2025-07-24T03:54:09.7704281Z -- USE_KINETO : ON 2025-07-24T03:54:09.7704514Z -- USE_GFLAGS : OFF 2025-07-24T03:54:09.7704754Z -- USE_GLOG : OFF 2025-07-24T03:54:09.7704985Z -- USE_LITE_PROTO : OFF 2025-07-24T03:54:09.7705250Z -- USE_PYTORCH_METAL : OFF 2025-07-24T03:54:09.7705513Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-07-24T03:54:09.7705788Z -- USE_MPS : OFF 2025-07-24T03:54:09.7706030Z -- CAN_COMPILE_METAL : 2025-07-24T03:54:09.7706268Z -- USE_MKL : ON 2025-07-24T03:54:09.7706509Z -- USE_STATIC_MKL : OFF 2025-07-24T03:54:09.7706750Z -- USE_MKLDNN : ON 2025-07-24T03:54:09.7706992Z -- USE_MKLDNN_ACL : OFF 2025-07-24T03:54:09.7707229Z -- USE_MKLDNN_CBLAS : OFF 2025-07-24T03:54:09.7707468Z -- USE_UCC : OFF 2025-07-24T03:54:09.7707700Z -- USE_ITT : ON 2025-07-24T03:54:09.7707929Z -- USE_XCCL : OFF 2025-07-24T03:54:09.7708303Z -- USE_NCCL : OFF 2025-07-24T03:54:09.7708583Z -- Found NVSHMEM : 2025-07-24T03:54:09.7708849Z -- USE_NNPACK : OFF 2025-07-24T03:54:09.7709081Z -- USE_NUMPY : ON 2025-07-24T03:54:09.7709382Z -- USE_OBSERVERS : ON 2025-07-24T03:54:09.7709736Z -- USE_OPENCL : OFF 2025-07-24T03:54:09.7709979Z -- USE_OPENMP : ON 2025-07-24T03:54:09.7710210Z -- USE_MIMALLOC : ON 2025-07-24T03:54:09.7710472Z -- USE_MIMALLOC_ON_MKL : OFF 2025-07-24T03:54:09.7710732Z -- USE_VULKAN : OFF 2025-07-24T03:54:09.7711053Z -- USE_PROF : OFF 2025-07-24T03:54:09.7711303Z -- USE_PYTORCH_QNNPACK : OFF 2025-07-24T03:54:09.7711544Z -- USE_XNNPACK : ON 2025-07-24T03:54:09.7711793Z -- USE_DISTRIBUTED : ON 2025-07-24T03:54:09.7712029Z -- USE_MPI : OFF 2025-07-24T03:54:09.7712284Z -- USE_GLOO : ON 2025-07-24T03:54:09.7712531Z -- USE_GLOO_WITH_OPENSSL : OFF 2025-07-24T03:54:09.7712797Z -- USE_GLOO_IBVERBS : OFF 2025-07-24T03:54:09.7713048Z -- USE_TENSORPIPE : OFF 2025-07-24T03:54:09.7713364Z -- Public Dependencies : caffe2::mkl 2025-07-24T03:54:09.7714156Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;XNNPACK;microkernels-prod;fbgemm;ittnotify;fp16;caffe2::openmp;gloo;fmt::fmt-header-only;kineto 2025-07-24T03:54:09.7714933Z -- Public CUDA Deps. : 2025-07-24T03:54:09.7717167Z -- Private CUDA Deps. : caffe2::curand;caffe2::cufft;caffe2::cublas;torch::cudnn;gloo_cuda;fmt::fmt-header-only;C:/Jenkins/Miniconda3/Library/lib/mkl_lapack95_lp64.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_lp64.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_thread.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_core.lib;C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudart_static.lib;CUDA::cusparse;CUDA::cufft;CUDA::cusolver;torch::magma;ATEN_CUDA_FILES_GEN_LIB 2025-07-24T03:54:09.7719473Z -- USE_COREML_DELEGATE : OFF 2025-07-24T03:54:09.7719734Z -- BUILD_LAZY_TS_BACKEND : ON 2025-07-24T03:54:09.7720006Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-07-24T03:54:09.7789831Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-07-24T03:54:09.8641475Z -- Performing Test HAS_WMISSING_PROTOTYPES - Failed 2025-07-24T03:54:09.8668152Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-07-24T03:54:09.9537536Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Failed 2025-07-24T03:54:09.9623515Z -- Configuring done (91.0s) 2025-07-24T03:54:17.6232523Z -- Generating done (6.5s) 2025-07-24T03:54:17.8905728Z CMake Warning: 2025-07-24T03:54:17.8906144Z Manually-specified variables were not used by the project: 2025-07-24T03:54:17.8906449Z 2025-07-24T03:54:17.8906559Z BUILD_ENVIRONMENT 2025-07-24T03:54:17.8906776Z BUILD_TYPE 2025-07-24T03:54:17.8906979Z BUILD_WHEEL 2025-07-24T03:54:17.8907101Z 2025-07-24T03:54:17.8907106Z 2025-07-24T03:54:17.8937003Z -- Build files have been written to: C:/actions-runner/_work/pytorch/pytorch/build 2025-07-24T03:54:17.9921919Z cmake --build . --target install --config Release -j 8 2025-07-24T03:54:24.5881254Z [1/4] Generating ATen declarations_yaml 2025-07-24T03:54:32.0673072Z [2/4] Generating ATen headers 2025-07-24T03:54:33.2035478Z [3/4] Generating ATen sources 2025-07-24T03:54:38.6920238Z [1/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-07-24T03:54:38.6961185Z [2/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\arena.cc.obj 2025-07-24T03:54:38.7034398Z [3/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any_lite.cc.obj 2025-07-24T03:54:38.7053524Z [4/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-07-24T03:54:38.7130819Z [5/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-07-24T03:54:38.7216299Z [6/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-07-24T03:54:38.7306698Z [7/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-07-24T03:54:38.7429152Z [8/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set.cc.obj 2025-07-24T03:54:38.9742444Z [9/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-07-24T03:54:38.9970216Z [10/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-07-24T03:54:39.0048340Z [11/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-07-24T03:54:39.0254761Z [12/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-07-24T03:54:39.0519778Z [13/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-07-24T03:54:39.0653824Z [14/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message_lite.cc.obj 2025-07-24T03:54:39.0744004Z [15/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\parse_context.cc.obj 2025-07-24T03:54:39.2617822Z [16/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-07-24T03:54:39.2818555Z [17/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-07-24T03:54:39.3195762Z [18/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-07-24T03:54:39.3210658Z [19/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-07-24T03:54:39.3326836Z [20/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-07-24T03:54:39.3401549Z [21/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-07-24T03:54:39.5498862Z [22/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-07-24T03:54:39.5770898Z [23/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-07-24T03:54:39.5953640Z [24/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-07-24T03:54:39.6563986Z [25/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.cc.obj 2025-07-24T03:54:39.6830992Z [26/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.pb.cc.obj 2025-07-24T03:54:39.6969060Z [27/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-07-24T03:54:39.9373625Z [28/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\api.pb.cc.obj 2025-07-24T03:54:39.9392836Z [29/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\importer.cc.obj 2025-07-24T03:54:39.9823969Z [30/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\parser.cc.obj 2025-07-24T03:54:40.0901198Z [31/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.cc.obj 2025-07-24T03:54:40.1067153Z [32/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor_database.cc.obj 2025-07-24T03:54:40.1094242Z [33/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.pb.cc.obj 2025-07-24T03:54:40.1680305Z [34/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-07-24T03:54:40.2032603Z [35/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-07-24T03:54:40.2759205Z [36/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\gzip_stream.cc.obj 2025-07-24T03:54:40.2915595Z [37/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\duration.pb.cc.obj 2025-07-24T03:54:40.3367404Z [38/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\dynamic_message.cc.obj 2025-07-24T03:54:40.3530455Z [39/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\empty.pb.cc.obj 2025-07-24T03:54:40.4869030Z [40/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\field_mask.pb.cc.obj 2025-07-24T03:54:40.5193358Z [41/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set_heavy.cc.obj 2025-07-24T03:54:40.5297013Z [42/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_reflection.cc.obj 2025-07-24T03:54:40.5432524Z [43/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven.cc.obj 2025-07-24T03:54:40.5839326Z [44/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\tokenizer.cc.obj 2025-07-24T03:54:40.5856230Z [45/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\printer.cc.obj 2025-07-24T03:54:40.7200248Z [46/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\map_field.cc.obj 2025-07-24T03:54:40.7687899Z [47/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message.cc.obj 2025-07-24T03:54:40.8081420Z [48/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\service.cc.obj 2025-07-24T03:54:40.8909017Z [49/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\substitute.cc.obj 2025-07-24T03:54:40.9044740Z [50/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\reflection_ops.cc.obj 2025-07-24T03:54:40.9167356Z [51/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\source_context.pb.cc.obj 2025-07-24T03:54:40.9372446Z [52/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\struct.pb.cc.obj 2025-07-24T03:54:41.0294259Z [53/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\text_format.cc.obj 2025-07-24T03:54:41.0975890Z [54/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\timestamp.pb.cc.obj 2025-07-24T03:54:41.1681827Z [55/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\unknown_field_set.cc.obj 2025-07-24T03:54:41.1781770Z [56/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\type.pb.cc.obj 2025-07-24T03:54:41.2115466Z [57/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\delimited_message_util.cc.obj 2025-07-24T03:54:41.2631794Z [58/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_comparator.cc.obj 2025-07-24T03:54:41.2911234Z [59/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_mask_util.cc.obj 2025-07-24T03:54:41.3361584Z [60/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\datapiece.cc.obj 2025-07-24T03:54:41.4098020Z [61/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\error_listener.cc.obj 2025-07-24T03:54:41.4223943Z [62/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\default_value_objectwriter.cc.obj 2025-07-24T03:54:41.4693880Z [63/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_escaping.cc.obj 2025-07-24T03:54:41.5532615Z [64/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_stream_parser.cc.obj 2025-07-24T03:54:41.5669458Z [65/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\field_mask_utility.cc.obj 2025-07-24T03:54:41.6195786Z [66/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_objectwriter.cc.obj 2025-07-24T03:54:41.6763615Z [67/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\object_writer.cc.obj 2025-07-24T03:54:41.7461358Z [68/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\proto_writer.cc.obj 2025-07-24T03:54:41.8159518Z [69/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectwriter.cc.obj 2025-07-24T03:54:41.8264576Z [70/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectsource.cc.obj 2025-07-24T03:54:41.8815864Z [71/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info.cc.obj 2025-07-24T03:54:41.9505037Z [72/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info_test_helper.cc.obj 2025-07-24T03:54:41.9636951Z [73/7681] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\version.rc.res 2025-07-24T03:54:41.9979288Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-07-24T03:54:41.9979872Z 2025-07-24T03:54:41.9979905Z 2025-07-24T03:54:41.9980205Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-24T03:54:41.9980665Z 2025-07-24T03:54:41.9980673Z 2025-07-24T03:54:41.9980722Z 2025-07-24T03:54:41.9980728Z 2025-07-24T03:54:41.9981487Z [74/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\utility.cc.obj 2025-07-24T03:54:42.0382156Z [75/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\json_util.cc.obj 2025-07-24T03:54:42.1112255Z [76/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\message_differencer.cc.obj 2025-07-24T03:54:42.2399551Z [77/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\type_resolver_util.cc.obj 2025-07-24T03:54:42.2500701Z [78/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format.cc.obj 2025-07-24T03:54:42.2801332Z [79/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wrappers.pb.cc.obj 2025-07-24T03:54:42.3710617Z [80/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\code_generator.cc.obj 2025-07-24T03:54:42.4524279Z [81/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum.cc.obj 2025-07-24T03:54:42.4932663Z [82/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum_field.cc.obj 2025-07-24T03:54:42.6108098Z [83/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\command_line_interface.cc.obj 2025-07-24T03:54:42.6395922Z [84/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_extension.cc.obj 2025-07-24T03:54:42.6686456Z [85/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_field.cc.obj 2025-07-24T03:54:42.6892017Z [86/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_file.cc.obj 2025-07-24T03:54:42.7836925Z [87/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_generator.cc.obj 2025-07-24T03:54:42.8992833Z [88/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_map_field.cc.obj 2025-07-24T03:54:42.9062663Z [89/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_helpers.cc.obj 2025-07-24T03:54:43.0371525Z [90/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message_field.cc.obj 2025-07-24T03:54:43.0398740Z [91/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message.cc.obj 2025-07-24T03:54:43.0660957Z [92/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_padding_optimizer.cc.obj 2025-07-24T03:54:43.1138879Z [93/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_primitive_field.cc.obj 2025-07-24T03:54:43.1856907Z [94/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_service.cc.obj 2025-07-24T03:54:43.1943389Z [95/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_doc_comment.cc.obj 2025-07-24T03:54:43.3090165Z [96/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_string_field.cc.obj 2025-07-24T03:54:43.4078787Z [97/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\time_util.cc.obj 2025-07-24T03:54:43.4488612Z [98/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum_field.cc.obj 2025-07-24T03:54:43.4569968Z [99/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum.cc.obj 2025-07-24T03:54:43.4734162Z [100/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_field_base.cc.obj 2025-07-24T03:54:43.5232078Z [101/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_generator.cc.obj 2025-07-24T03:54:43.5978651Z [102/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_map_field.cc.obj 2025-07-24T03:54:43.6070679Z [103/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_helpers.cc.obj 2025-07-24T03:54:43.7219320Z [104/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message.cc.obj 2025-07-24T03:54:43.8678870Z [105/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message_field.cc.obj 2025-07-24T03:54:43.8699787Z [106/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_primitive_field.cc.obj 2025-07-24T03:54:43.8713265Z [107/7681] Linking CXX static library lib\libprotobuf.lib 2025-07-24T03:54:43.8794708Z [108/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_reflection_class.cc.obj 2025-07-24T03:54:43.9262839Z [109/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_enum_field.cc.obj 2025-07-24T03:54:44.0057591Z [110/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_message_field.cc.obj 2025-07-24T03:54:44.0078326Z [111/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_primitive_field.cc.obj 2025-07-24T03:54:44.1325229Z [112/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_source_generator_base.cc.obj 2025-07-24T03:54:44.1707804Z [113/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_doc_comment.cc.obj 2025-07-24T03:54:44.2832422Z [114/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum.cc.obj 2025-07-24T03:54:44.2859194Z [115/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_context.cc.obj 2025-07-24T03:54:44.2959820Z [116/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_wrapper_field.cc.obj 2025-07-24T03:54:44.3425367Z [117/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field.cc.obj 2025-07-24T03:54:44.4155595Z [118/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_lite.cc.obj 2025-07-24T03:54:44.4328071Z [119/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field_lite.cc.obj 2025-07-24T03:54:44.5424543Z [120/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension.cc.obj 2025-07-24T03:54:44.5833633Z [121/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension_lite.cc.obj 2025-07-24T03:54:44.6990264Z [122/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator.cc.obj 2025-07-24T03:54:44.7086844Z [123/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_field.cc.obj 2025-07-24T03:54:44.7178134Z [124/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_file.cc.obj 2025-07-24T03:54:44.7590651Z [125/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator_factory.cc.obj 2025-07-24T03:54:44.8302161Z [126/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_helpers.cc.obj 2025-07-24T03:54:44.8556526Z [127/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field.cc.obj 2025-07-24T03:54:44.9423576Z [128/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field_lite.cc.obj 2025-07-24T03:54:45.0115961Z [129/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message.cc.obj 2025-07-24T03:54:45.1088253Z [130/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder_lite.cc.obj 2025-07-24T03:54:45.1180457Z [131/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder.cc.obj 2025-07-24T03:54:45.1353728Z [132/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field.cc.obj 2025-07-24T03:54:45.1452292Z [133/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field_lite.cc.obj 2025-07-24T03:54:45.2655500Z [134/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_lite.cc.obj 2025-07-24T03:54:45.2754503Z [135/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_name_resolver.cc.obj 2025-07-24T03:54:45.3526117Z [136/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\well_known_types_embed.cc.obj 2025-07-24T03:54:45.3657412Z [137/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field.cc.obj 2025-07-24T03:54:45.4190449Z [138/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field_lite.cc.obj 2025-07-24T03:54:45.5209714Z [139/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_shared_code_generator.cc.obj 2025-07-24T03:54:45.5303227Z [140/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_service.cc.obj 2025-07-24T03:54:45.5430801Z [141/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field.cc.obj 2025-07-24T03:54:45.5925786Z [142/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field_lite.cc.obj 2025-07-24T03:54:45.7202491Z [143/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\js_generator.cc.obj 2025-07-24T03:54:45.7667933Z [144/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum.cc.obj 2025-07-24T03:54:45.7811080Z [145/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum_field.cc.obj 2025-07-24T03:54:45.8584698Z [146/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_extension.cc.obj 2025-07-24T03:54:45.9432309Z [147/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_generator.cc.obj 2025-07-24T03:54:45.9460580Z [148/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_field.cc.obj 2025-07-24T03:54:45.9752531Z [149/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_file.cc.obj 2025-07-24T03:54:46.0113242Z [150/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_helpers.cc.obj 2025-07-24T03:54:46.1396987Z [151/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_map_field.cc.obj 2025-07-24T03:54:46.1900037Z [152/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message.cc.obj 2025-07-24T03:54:46.2139016Z [153/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message_field.cc.obj 2025-07-24T03:54:46.2797842Z [154/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_oneof.cc.obj 2025-07-24T03:54:46.3644476Z [155/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_primitive_field.cc.obj 2025-07-24T03:54:46.3758430Z [156/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\php\php_generator.cc.obj 2025-07-24T03:54:46.3772556Z [157/7681] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\version.rc.res 2025-07-24T03:54:46.3876259Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-07-24T03:54:46.3877069Z 2025-07-24T03:54:46.3877104Z 2025-07-24T03:54:46.3878022Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-24T03:54:46.3878835Z 2025-07-24T03:54:46.3878844Z 2025-07-24T03:54:46.3878849Z 2025-07-24T03:54:46.3878856Z 2025-07-24T03:54:46.3879229Z [158/7681] Building RC object third_party\protobuf\cmake\CMakeFiles\protoc.dir\version.rc.res 2025-07-24T03:54:46.4008605Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-07-24T03:54:46.4009216Z 2025-07-24T03:54:46.4009225Z 2025-07-24T03:54:46.4009574Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-24T03:54:46.4010109Z 2025-07-24T03:54:46.4010151Z 2025-07-24T03:54:46.4010160Z 2025-07-24T03:54:46.4010168Z 2025-07-24T03:54:46.4011030Z [159/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.cc.obj 2025-07-24T03:54:46.4215096Z [160/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.pb.cc.obj 2025-07-24T03:54:46.5033512Z [161/7681] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\legacy-api.c.obj 2025-07-24T03:54:46.5722036Z [162/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\python\python_generator.cc.obj 2025-07-24T03:54:46.5861202Z [163/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\zip_writer.cc.obj 2025-07-24T03:54:46.6199562Z [164/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\ruby\ruby_generator.cc.obj 2025-07-24T03:54:46.6793075Z [165/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\protoc.dir\__\src\google\protobuf\compiler\main.cc.obj 2025-07-24T03:54:46.7219831Z [166/7681] Building C object sleef\src\libm\CMakeFiles\mkrename.dir\mkrename.c.obj 2025-07-24T03:54:46.7237194Z [167/7681] Building C object sleef\src\libm\CMakeFiles\mkalias.dir\mkalias.c.obj 2025-07-24T03:54:46.7337204Z [168/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\subprocess.cc.obj 2025-07-24T03:54:46.7499180Z [169/7681] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\portable-api.c.obj 2025-07-24T03:54:46.8065407Z [170/7681] Building C object sleef\src\libm\CMakeFiles\mkdisp.dir\mkdisp.c.obj 2025-07-24T03:54:46.8149944Z [171/7681] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\windows.c.obj 2025-07-24T03:54:46.8365467Z [172/7681] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\memory.c.obj 2025-07-24T03:54:46.8883262Z [173/7681] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\fastpath.c.obj 2025-07-24T03:54:46.9085626Z [174/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\info.c.obj 2025-07-24T03:54:46.9268903Z [175/7681] Linking C static library lib\pthreadpool.lib 2025-07-24T03:54:46.9333831Z [176/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\init.c.obj 2025-07-24T03:54:46.9889434Z [177/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\vendor.c.obj 2025-07-24T03:54:47.0024201Z [178/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\uarch.c.obj 2025-07-24T03:54:47.0277507Z [179/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\name.c.obj 2025-07-24T03:54:47.0944569Z [180/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\cache.c.obj 2025-07-24T03:54:47.1004380Z [181/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\api.c.obj 2025-07-24T03:54:47.1017815Z [182/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\topology.c.obj 2025-07-24T03:54:47.1093767Z [183/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\isa.c.obj 2025-07-24T03:54:47.1354899Z [184/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\init.c.obj 2025-07-24T03:54:47.1655928Z [185/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\descriptor.c.obj 2025-07-24T03:54:47.2185494Z [186/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\deterministic.c.obj 2025-07-24T03:54:47.2298376Z [187/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9p8x-minmax-f16c-c8.c.obj 2025-07-24T03:54:47.2473225Z [188/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9x-minmax-f16c-c8.c.obj 2025-07-24T03:54:47.2687819Z [189/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\init.c.obj 2025-07-24T03:54:47.2711205Z [190/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\log.c.obj 2025-07-24T03:54:47.2724419Z [191/7681] Linking CXX static library lib\libprotoc.lib 2025-07-24T03:54:47.3007375Z [192/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-07-24T03:54:47.3535499Z [193/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3.c.obj 2025-07-24T03:54:47.7944589Z [194/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3.c.obj 2025-07-24T03:54:47.7958163Z [195/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u16.c.obj 2025-07-24T03:54:47.7975822Z [196/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u16.c.obj 2025-07-24T03:54:47.7992314Z [197/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3.c.obj 2025-07-24T03:54:47.8226054Z [198/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\windows\init.c.obj 2025-07-24T03:54:47.8553053Z [199/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u16.c.obj 2025-07-24T03:54:47.8569145Z [200/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u1.c.obj 2025-07-24T03:54:47.9161064Z [201/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u32.c.obj 2025-07-24T03:54:47.9174796Z [202/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u4.c.obj 2025-07-24T03:54:47.9237647Z [203/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u16.c.obj 2025-07-24T03:54:47.9412691Z [204/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:47.9677944Z [205/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:47.9841036Z [206/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-4x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:47.9998676Z [207/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-1x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:48.0349053Z [208/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c32.c.obj 2025-07-24T03:54:48.0361399Z [209/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c64.c.obj 2025-07-24T03:54:48.0421386Z [210/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc4.c.obj 2025-07-24T03:54:48.0578573Z [211/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc4.c.obj 2025-07-24T03:54:48.0756586Z [212/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c8.c.obj 2025-07-24T03:54:48.0935236Z [213/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-maxpool\f16-maxpool-9p8x-minmax-f16c-c8.c.obj 2025-07-24T03:54:48.1196487Z [214/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9p8x-minmax-avx2-c8.c.obj 2025-07-24T03:54:48.1492359Z [215/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9x-minmax-avx2-c8.c.obj 2025-07-24T03:54:48.1646410Z [216/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u4.c.obj 2025-07-24T03:54:48.1704906Z [217/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32.c.obj 2025-07-24T03:54:48.1720057Z [218/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u4.c.obj 2025-07-24T03:54:48.1939082Z [219/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\f16-rmax-f16c-u32.c.obj 2025-07-24T03:54:48.2005672Z [220/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc4.c.obj 2025-07-24T03:54:48.2386526Z [221/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-scalar-u2-acc2.c.obj 2025-07-24T03:54:48.2899798Z [222/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc4.c.obj 2025-07-24T03:54:48.2914564Z [223/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u2-acc2.c.obj 2025-07-24T03:54:48.3002221Z [224/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vadd-f16c-u16.c.obj 2025-07-24T03:54:48.3019288Z [225/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u16.c.obj 2025-07-24T03:54:48.3262452Z [226/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u8.c.obj 2025-07-24T03:54:48.3328842Z [227/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u8.c.obj 2025-07-24T03:54:48.3700311Z [228/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmax-f16c-u16.c.obj 2025-07-24T03:54:48.4244605Z [229/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmin-f16c-u16.c.obj 2025-07-24T03:54:48.4258844Z [230/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u16.c.obj 2025-07-24T03:54:48.4369483Z [231/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vminc-f16c-u16.c.obj 2025-07-24T03:54:48.4584650Z [232/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmul-f16c-u16.c.obj 2025-07-24T03:54:48.4649864Z [233/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u16.c.obj 2025-07-24T03:54:48.4664616Z [234/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u16.c.obj 2025-07-24T03:54:48.4973580Z [235/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u16.c.obj 2025-07-24T03:54:48.5453868Z [236/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u8.c.obj 2025-07-24T03:54:48.5470525Z [237/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u16.c.obj 2025-07-24T03:54:48.5640735Z [238/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u16.c.obj 2025-07-24T03:54:48.5816079Z [239/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u16.c.obj 2025-07-24T03:54:48.6065689Z [240/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsub-f16c-u16.c.obj 2025-07-24T03:54:48.6085981Z [241/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u16.c.obj 2025-07-24T03:54:48.6273148Z [242/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u16.c.obj 2025-07-24T03:54:48.6713902Z [243/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u16.c.obj 2025-07-24T03:54:48.6776933Z [244/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u16.c.obj 2025-07-24T03:54:48.6962448Z [245/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u16.c.obj 2025-07-24T03:54:48.7156131Z [246/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u16.c.obj 2025-07-24T03:54:48.7313319Z [247/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c8-minmax-fma3-2x.c.obj 2025-07-24T03:54:48.7381319Z [248/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u16.c.obj 2025-07-24T03:54:48.7565564Z [249/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u16.c.obj 2025-07-24T03:54:48.8253897Z [250/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u16.c.obj 2025-07-24T03:54:48.8271469Z [251/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u16.c.obj 2025-07-24T03:54:48.8286161Z [252/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u32.c.obj 2025-07-24T03:54:48.8493399Z [253/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u32.c.obj 2025-07-24T03:54:48.8847158Z [254/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u24.c.obj 2025-07-24T03:54:48.8866019Z [255/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u32.c.obj 2025-07-24T03:54:48.9072348Z [256/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u32.c.obj 2025-07-24T03:54:48.9588207Z [257/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vabs-sse2-u16.c.obj 2025-07-24T03:54:48.9649342Z [258/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-scalar-c1.c.obj 2025-07-24T03:54:48.9664500Z [259/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vsqr-f16c-u16.c.obj 2025-07-24T03:54:48.9760458Z [260/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vneg-sse2-u16.c.obj 2025-07-24T03:54:48.9810392Z [261/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-sse2-c4.c.obj 2025-07-24T03:54:48.9873310Z [262/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-sse2-c4.c.obj 2025-07-24T03:54:49.0024407Z [263/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-scalar-c1.c.obj 2025-07-24T03:54:49.0444940Z [264/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-sse2-c4.c.obj 2025-07-24T03:54:49.0765085Z [265/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-scalar-c1.c.obj 2025-07-24T03:54:49.0891978Z [266/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-scalar-c1.c.obj 2025-07-24T03:54:49.1008778Z [267/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-sse-c4.c.obj 2025-07-24T03:54:49.1073862Z [268/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-scalar-c1.c.obj 2025-07-24T03:54:49.1137994Z [269/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-sse-c4.c.obj 2025-07-24T03:54:49.1248610Z [270/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.obj 2025-07-24T03:54:49.1276464Z [271/7681] Linking CXX executable bin\protoc.exe 2025-07-24T03:54:49.1669751Z [272/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.obj 2025-07-24T03:54:49.2265794Z [273/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f.c.obj 2025-07-24T03:54:49.2328009Z [274/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar-acc2.c.obj 2025-07-24T03:54:49.2396839Z [275/7681] Running gen_proto.py on onnx/onnx.in.proto 2025-07-24T03:54:49.2470977Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx.in.proto 2025-07-24T03:54:49.2471661Z 2025-07-24T03:54:49.2472206Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto 2025-07-24T03:54:49.2472933Z 2025-07-24T03:54:49.2473502Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto3 2025-07-24T03:54:49.2475300Z 2025-07-24T03:54:49.2475757Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-ml.pb.h 2025-07-24T03:54:49.2476381Z 2025-07-24T03:54:49.2476845Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_pb.py 2025-07-24T03:54:49.2477479Z 2025-07-24T03:54:49.2478372Z [276/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar-acc2.c.obj 2025-07-24T03:54:49.2544275Z [277/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx.c.obj 2025-07-24T03:54:49.2692421Z [278/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3.c.obj 2025-07-24T03:54:49.2755477Z [279/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse.c.obj 2025-07-24T03:54:49.3007720Z [280/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.obj 2025-07-24T03:54:49.3759974Z [281/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx.c.obj 2025-07-24T03:54:49.3828897Z [282/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f.c.obj 2025-07-24T03:54:49.3890838Z [283/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3.c.obj 2025-07-24T03:54:49.3989870Z [284/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar-acc2.c.obj 2025-07-24T03:54:49.4092492Z [285/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar-acc2.c.obj 2025-07-24T03:54:49.4231814Z [286/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse.c.obj 2025-07-24T03:54:49.4441456Z [287/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx.c.obj 2025-07-24T03:54:49.5305471Z [288/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f.c.obj 2025-07-24T03:54:49.5371739Z [289/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar-acc2.c.obj 2025-07-24T03:54:49.5390909Z [290/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3.c.obj 2025-07-24T03:54:49.5486406Z [291/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar-acc2.c.obj 2025-07-24T03:54:49.5568284Z [292/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse.c.obj 2025-07-24T03:54:49.5795611Z [293/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f.c.obj 2025-07-24T03:54:49.5895366Z [294/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-07-24T03:54:49.6768704Z [295/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx.c.obj 2025-07-24T03:54:49.6826602Z [296/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse.c.obj 2025-07-24T03:54:49.6842933Z [297/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx.c.obj 2025-07-24T03:54:49.6962294Z [298/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f.c.obj 2025-07-24T03:54:49.7027486Z [299/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3.c.obj 2025-07-24T03:54:49.7306148Z [300/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar-acc2.c.obj 2025-07-24T03:54:49.7376729Z [301/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar-acc2.c.obj 2025-07-24T03:54:49.7421234Z [302/7681] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-07-24T03:54:49.8314893Z [303/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.obj 2025-07-24T03:54:49.8329319Z [304/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse.c.obj 2025-07-24T03:54:49.8342568Z [305/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.obj 2025-07-24T03:54:49.8537483Z [306/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-2x4-acc2.c.obj 2025-07-24T03:54:49.8630106Z [307/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4-acc2.c.obj 2025-07-24T03:54:49.8762673Z [308/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.obj 2025-07-24T03:54:49.8912414Z [309/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc3.c.obj 2025-07-24T03:54:49.8988273Z [310/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.obj 2025-07-24T03:54:49.9842017Z [311/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.obj 2025-07-24T03:54:49.9874670Z [312/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.obj 2025-07-24T03:54:49.9937820Z [313/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-4x4.c.obj 2025-07-24T03:54:50.0002671Z [314/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.obj 2025-07-24T03:54:50.0088451Z [315/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.obj 2025-07-24T03:54:50.0269671Z [316/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u24.c.obj 2025-07-24T03:54:50.0333847Z [317/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u16.c.obj 2025-07-24T03:54:50.0349446Z [318/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4.c.obj 2025-07-24T03:54:50.1168806Z [319/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u4.c.obj 2025-07-24T03:54:50.1185178Z [320/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u16.c.obj 2025-07-24T03:54:50.1293007Z [321/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u2.c.obj 2025-07-24T03:54:50.1384713Z [322/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u16.c.obj 2025-07-24T03:54:50.1458483Z [323/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u8.c.obj 2025-07-24T03:54:50.1845026Z [324/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:50.1907672Z [325/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:50.1979885Z [326/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:50.2843966Z [327/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x32-minmax-avx512f-broadcast.c.obj 2025-07-24T03:54:50.2904584Z [328/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-relu-scalar.c.obj 2025-07-24T03:54:50.3033968Z [329/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-scalar.c.obj 2025-07-24T03:54:50.3093251Z [330/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-load1.c.obj 2025-07-24T03:54:50.3199912Z [331/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:50.3570650Z [332/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-minmax-scalar.c.obj 2025-07-24T03:54:50.3586236Z [333/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-relu-scalar.c.obj 2025-07-24T03:54:50.3912430Z [334/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-scalar.c.obj 2025-07-24T03:54:50.4486071Z [335/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:50.4544855Z [336/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-minmax-scalar.c.obj 2025-07-24T03:54:50.4599395Z [337/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-scalar.c.obj 2025-07-24T03:54:50.4760047Z [338/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2c4-minmax-sse.c.obj 2025-07-24T03:54:50.4822919Z [339/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:50.5213065Z [340/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-relu-scalar.c.obj 2025-07-24T03:54:50.5228912Z [341/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-scalar.c.obj 2025-07-24T03:54:50.5530148Z [342/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-load1.c.obj 2025-07-24T03:54:50.5950492Z [343/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p4.c.obj 2025-07-24T03:54:50.6015008Z [344/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p8.c.obj 2025-07-24T03:54:50.6137681Z [345/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:50.6199006Z [346/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:50.6345091Z [347/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-7x32-minmax-avx512f-broadcast.c.obj 2025-07-24T03:54:50.6491526Z [348/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c2.c.obj 2025-07-24T03:54:50.6507189Z [349/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c8.c.obj 2025-07-24T03:54:50.6969310Z [350/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:50.7414795Z [351/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:50.7476460Z [352/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:50.7594063Z [353/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x32-minmax-avx512f-broadcast.c.obj 2025-07-24T03:54:50.7673490Z [354/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:50.7780990Z [355/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-relu-scalar.c.obj 2025-07-24T03:54:50.7989074Z [356/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-scalar.c.obj 2025-07-24T03:54:50.8178846Z [357/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-load1.c.obj 2025-07-24T03:54:50.8421182Z [358/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-minmax-scalar.c.obj 2025-07-24T03:54:50.8881801Z [359/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-relu-scalar.c.obj 2025-07-24T03:54:50.9093729Z [360/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-scalar.c.obj 2025-07-24T03:54:50.9288944Z [361/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:50.9452467Z [362/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-minmax-scalar.c.obj 2025-07-24T03:54:50.9631094Z [363/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-scalar.c.obj 2025-07-24T03:54:50.9817519Z [364/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2c4-minmax-sse.c.obj 2025-07-24T03:54:51.0019352Z [365/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:51.0236459Z [366/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-relu-scalar.c.obj 2025-07-24T03:54:51.0421559Z [367/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-scalar.c.obj 2025-07-24T03:54:51.0588945Z [368/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-load1.c.obj 2025-07-24T03:54:51.0911082Z [369/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:51.1085199Z [370/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast-prfm.c.obj 2025-07-24T03:54:51.1282244Z [371/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-07-24T03:54:51.1492250Z [372/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-7x32-minmax-avx512f-broadcast.c.obj 2025-07-24T03:54:51.1653964Z [373/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-sse-c4.c.obj 2025-07-24T03:54:51.1858001Z [374/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-scalar-c1.c.obj 2025-07-24T03:54:51.2030299Z [375/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-sse-c4.c.obj 2025-07-24T03:54:51.2219198Z [376/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-scalar-c1.c.obj 2025-07-24T03:54:51.2445135Z [377/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-sse-c4.c.obj 2025-07-24T03:54:51.2610877Z [378/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:51.2815402Z [379/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:51.3025842Z [380/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x16-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:51.3227822Z [381/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:51.3453198Z [382/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x8-minmax-sse41-dup.c.obj 2025-07-24T03:54:51.3660599Z [383/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-3x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:51.3833388Z [384/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:51.4089662Z [385/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-3x16-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:51.4609722Z [386/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:51.4806588Z [387/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x8-minmax-sse41-dup.c.obj 2025-07-24T03:54:51.5035318Z [388/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-1x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T03:54:51.5189156Z [389/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-7x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T03:54:51.5381174Z [390/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:51.5565756Z [391/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:51.5777396Z [392/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x16-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:51.6028333Z [393/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T03:54:51.6185623Z [394/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:51.6377985Z [395/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8-minmax-sse41-dup.c.obj 2025-07-24T03:54:51.6632987Z [396/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:51.6823507Z [397/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8-minmax-sse41-dup.c.obj 2025-07-24T03:54:51.7070117Z [398/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x16-minmax-avx-broadcast.c.obj 2025-07-24T03:54:51.7484603Z [399/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-07-24T03:54:51.7666271Z [400/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x16-minmax-fma3-broadcast.c.obj 2025-07-24T03:54:51.7865439Z [401/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u32.c.obj 2025-07-24T03:54:51.8084229Z [402/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T03:54:51.8262024Z [403/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u64.c.obj 2025-07-24T03:54:51.8432648Z [404/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u128.c.obj 2025-07-24T03:54:51.8623007Z [405/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u1.c.obj 2025-07-24T03:54:51.8843178Z [406/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u4.c.obj 2025-07-24T03:54:51.9027382Z [407/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u4.c.obj 2025-07-24T03:54:51.9186943Z [408/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u32.c.obj 2025-07-24T03:54:51.9413225Z [409/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u32.c.obj 2025-07-24T03:54:52.0074288Z [410/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u32.c.obj 2025-07-24T03:54:52.0275094Z [411/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u64.c.obj 2025-07-24T03:54:52.0462506Z [412/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u128.c.obj 2025-07-24T03:54:52.0899186Z [413/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u1.c.obj 2025-07-24T03:54:53.9951210Z [414/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u32.c.obj 2025-07-24T03:54:54.0158990Z [415/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u4.c.obj 2025-07-24T03:54:54.0171860Z [416/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u4.c.obj 2025-07-24T03:54:54.0362607Z [417/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc2.c.obj 2025-07-24T03:54:54.0375663Z [418/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.obj 2025-07-24T03:54:54.0558455Z [419/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.obj 2025-07-24T03:54:54.0578267Z [420/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.obj 2025-07-24T03:54:54.0728452Z [421/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc2.c.obj 2025-07-24T03:54:54.1091668Z [422/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c32.c.obj 2025-07-24T03:54:54.1401258Z [423/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c64.c.obj 2025-07-24T03:54:54.1415696Z [424/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-scalar.c.obj 2025-07-24T03:54:54.1599366Z [425/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c16.c.obj 2025-07-24T03:54:54.1620347Z [426/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc4.c.obj 2025-07-24T03:54:54.1901598Z [427/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc4.c.obj 2025-07-24T03:54:54.1918189Z [428/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc4.c.obj 2025-07-24T03:54:54.2061441Z [429/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc4.c.obj 2025-07-24T03:54:54.2384886Z [430/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc4.c.obj 2025-07-24T03:54:54.2655291Z [431/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc4.c.obj 2025-07-24T03:54:54.2913006Z [432/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc4.c.obj 2025-07-24T03:54:54.2932417Z [433/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc4.c.obj 2025-07-24T03:54:54.2989676Z [434/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc4.c.obj 2025-07-24T03:54:54.3228321Z [435/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc4.c.obj 2025-07-24T03:54:54.3244742Z [436/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc4.c.obj 2025-07-24T03:54:54.3306664Z [437/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc4.c.obj 2025-07-24T03:54:54.3866891Z [438/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar.c.obj 2025-07-24T03:54:54.3989025Z [439/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-32x1-minmax-sse.c.obj 2025-07-24T03:54:54.4129193Z [440/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x2-minmax-scalar.c.obj 2025-07-24T03:54:54.4206003Z [441/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x4-minmax-scalar.c.obj 2025-07-24T03:54:54.4371218Z [442/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx-u16.c.obj 2025-07-24T03:54:54.4708271Z [443/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u32.c.obj 2025-07-24T03:54:54.4724384Z [444/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-scalar-u8.c.obj 2025-07-24T03:54:54.4815857Z [445/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-sse-u8.c.obj 2025-07-24T03:54:54.5335677Z [446/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx-u16.c.obj 2025-07-24T03:54:54.5409626Z [447/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u32.c.obj 2025-07-24T03:54:54.5536961Z [448/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u8.c.obj 2025-07-24T03:54:54.5767488Z [449/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx-u16.c.obj 2025-07-24T03:54:54.5867538Z [450/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-sse-u8.c.obj 2025-07-24T03:54:54.6102774Z [451/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u2.c.obj 2025-07-24T03:54:54.6173550Z [452/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u32.c.obj 2025-07-24T03:54:54.6435616Z [453/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-sse-u8.c.obj 2025-07-24T03:54:54.6708351Z [454/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx-u16.c.obj 2025-07-24T03:54:54.6818945Z [455/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u32.c.obj 2025-07-24T03:54:54.6918057Z [456/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u2.c.obj 2025-07-24T03:54:54.7186832Z [457/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-sse-u8.c.obj 2025-07-24T03:54:54.7258213Z [458/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx-u16.c.obj 2025-07-24T03:54:54.7556752Z [459/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u32.c.obj 2025-07-24T03:54:54.7645630Z [460/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-scalar-u8.c.obj 2025-07-24T03:54:54.7914866Z [461/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-sse-u8.c.obj 2025-07-24T03:54:54.8081552Z [462/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u16.c.obj 2025-07-24T03:54:54.8182827Z [463/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u32.c.obj 2025-07-24T03:54:54.8458038Z [464/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u8.c.obj 2025-07-24T03:54:54.8831794Z [465/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx-u16.c.obj 2025-07-24T03:54:54.8902187Z [466/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u8.c.obj 2025-07-24T03:54:54.9024357Z [467/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-scalar-u8.c.obj 2025-07-24T03:54:54.9097393Z [468/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u32.c.obj 2025-07-24T03:54:54.9337105Z [469/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-sse-u8.c.obj 2025-07-24T03:54:54.9444759Z [470/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx-u16.c.obj 2025-07-24T03:54:54.9592833Z [471/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u32.c.obj 2025-07-24T03:54:54.9984777Z [472/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-scalar-u8.c.obj 2025-07-24T03:54:55.0266196Z [473/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-sse-u8.c.obj 2025-07-24T03:54:55.0453782Z [474/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u32.c.obj 2025-07-24T03:54:55.0515296Z [475/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx-u16.c.obj 2025-07-24T03:54:55.0705252Z [476/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-sse-u8.c.obj 2025-07-24T03:54:55.0798998Z [477/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-scalar-u8.c.obj 2025-07-24T03:54:55.0813111Z [478/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx-u16.c.obj 2025-07-24T03:54:55.1014300Z [479/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u32.c.obj 2025-07-24T03:54:55.1372167Z [480/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u8.c.obj 2025-07-24T03:54:55.1603286Z [481/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-sse-u8.c.obj 2025-07-24T03:54:55.1924467Z [482/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx-u16.c.obj 2025-07-24T03:54:55.2121644Z [483/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u32.c.obj 2025-07-24T03:54:55.2140370Z [484/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u8.c.obj 2025-07-24T03:54:55.2216780Z [485/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u16.c.obj 2025-07-24T03:54:55.2285763Z [486/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u8.c.obj 2025-07-24T03:54:55.2470748Z [487/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u32.c.obj 2025-07-24T03:54:55.2817508Z [488/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u8.c.obj 2025-07-24T03:54:55.3013064Z [489/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u8.c.obj 2025-07-24T03:54:55.3436615Z [490/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u16.c.obj 2025-07-24T03:54:55.3612782Z [491/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u8.c.obj 2025-07-24T03:54:55.3632594Z [492/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u2.c.obj 2025-07-24T03:54:55.3704615Z [493/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u16.c.obj 2025-07-24T03:54:55.3775480Z [494/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u32.c.obj 2025-07-24T03:54:55.3888715Z [495/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u32.c.obj 2025-07-24T03:54:55.4201169Z [496/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u8.c.obj 2025-07-24T03:54:55.4374387Z [497/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u8.c.obj 2025-07-24T03:54:55.4878262Z [498/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u16.c.obj 2025-07-24T03:54:55.5028292Z [499/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u8.c.obj 2025-07-24T03:54:55.5100060Z [500/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u32.c.obj 2025-07-24T03:54:55.5164599Z [501/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u8.c.obj 2025-07-24T03:54:55.5181600Z [502/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u16.c.obj 2025-07-24T03:54:55.5263254Z [503/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u32.c.obj 2025-07-24T03:54:55.5614465Z [504/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u8.c.obj 2025-07-24T03:54:55.5770097Z [505/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u8.c.obj 2025-07-24T03:54:55.6302193Z [506/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u16.c.obj 2025-07-24T03:54:55.6563563Z [507/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx-u16.c.obj 2025-07-24T03:54:55.6666156Z [508/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u32.c.obj 2025-07-24T03:54:55.6729844Z [509/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u8.c.obj 2025-07-24T03:54:55.6907920Z [510/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u32.c.obj 2025-07-24T03:54:55.6979738Z [511/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-scalar-u8.c.obj 2025-07-24T03:54:55.7147558Z [512/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-sse-u8.c.obj 2025-07-24T03:54:55.7216112Z [513/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u8.c.obj 2025-07-24T03:54:55.7656488Z [514/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx-u16.c.obj 2025-07-24T03:54:55.7925005Z [515/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u32.c.obj 2025-07-24T03:54:55.8213917Z [516/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u8.c.obj 2025-07-24T03:54:55.8358996Z [517/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u16.c.obj 2025-07-24T03:54:55.8375037Z [518/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-sse-u8.c.obj 2025-07-24T03:54:55.8475967Z [519/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u4.c.obj 2025-07-24T03:54:55.8586822Z [520/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-sse-u8.c.obj 2025-07-24T03:54:55.8666462Z [521/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx-u16.c.obj 2025-07-24T03:54:55.9021036Z [522/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u32.c.obj 2025-07-24T03:54:55.9420616Z [523/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u16.c.obj 2025-07-24T03:54:55.9642282Z [524/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u4.c.obj 2025-07-24T03:54:55.9832498Z [525/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-sse-u8.c.obj 2025-07-24T03:54:55.9890754Z [526/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx512f.c.obj 2025-07-24T03:54:55.9965180Z [527/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx.c.obj 2025-07-24T03:54:56.0179948Z [528/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-scalar.c.obj 2025-07-24T03:54:56.0308384Z [529/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-sse2.c.obj 2025-07-24T03:54:56.0397449Z [530/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx.c.obj 2025-07-24T03:54:56.1021796Z [531/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx512f.c.obj 2025-07-24T03:54:56.1170267Z [532/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-scalar.c.obj 2025-07-24T03:54:56.1319091Z [533/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx.c.obj 2025-07-24T03:54:56.1334202Z [534/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx512f.c.obj 2025-07-24T03:54:56.1645923Z [535/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-sse2.c.obj 2025-07-24T03:54:56.1742772Z [536/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut4-p4-perm-u32.c.obj 2025-07-24T03:54:56.1758729Z [537/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-sse2.c.obj 2025-07-24T03:54:56.1976042Z [538/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-scalar.c.obj 2025-07-24T03:54:56.2539010Z [539/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut4-p4-perm-u32.c.obj 2025-07-24T03:54:56.2745794Z [540/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u2.c.obj 2025-07-24T03:54:56.2761853Z [541/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u4.c.obj 2025-07-24T03:54:56.2859436Z [542/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u64.c.obj 2025-07-24T03:54:56.3076449Z [543/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u12.c.obj 2025-07-24T03:54:56.3148714Z [544/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vexp\gen\f32-vexp-scalar-exp.c.obj 2025-07-24T03:54:56.3167989Z [545/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx-rational-12-10-div.c.obj 2025-07-24T03:54:56.3466954Z [546/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-nr.c.obj 2025-07-24T03:54:56.4141810Z [547/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-fma3-rational-12-10-div.c.obj 2025-07-24T03:54:56.4206133Z [548/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-sse2-rational-12-10-div.c.obj 2025-07-24T03:54:56.4267931Z [549/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx-u16.c.obj 2025-07-24T03:54:56.4458279Z [550/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-scalar-rational-12-10-div.c.obj 2025-07-24T03:54:56.4577514Z [551/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u4.c.obj 2025-07-24T03:54:56.4650997Z [552/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u16.c.obj 2025-07-24T03:54:56.4784545Z [553/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u16.c.obj 2025-07-24T03:54:56.4805864Z [554/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-sse-u8.c.obj 2025-07-24T03:54:56.5690593Z [555/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-div.c.obj 2025-07-24T03:54:56.5756000Z [556/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx2-rational-3-3-div.c.obj 2025-07-24T03:54:56.5847729Z [557/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-div.c.obj 2025-07-24T03:54:56.6013511Z [558/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-sse2-rational-3-3-div.c.obj 2025-07-24T03:54:56.6073853Z [559/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-scalar-rational-3-3-div.c.obj 2025-07-24T03:54:56.6166276Z [560/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u16.c.obj 2025-07-24T03:54:56.6227860Z [561/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u16.c.obj 2025-07-24T03:54:56.6447527Z [562/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u4.c.obj 2025-07-24T03:54:56.7103913Z [563/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u8.c.obj 2025-07-24T03:54:56.7172468Z [564/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u8.c.obj 2025-07-24T03:54:56.7234156Z [565/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c1-minmax-scalar-2x.c.obj 2025-07-24T03:54:56.7252390Z [566/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-sse-2x.c.obj 2025-07-24T03:54:56.7436788Z [567/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u8.c.obj 2025-07-24T03:54:56.7603364Z [568/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u16.c.obj 2025-07-24T03:54:56.7812530Z [569/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u1.c.obj 2025-07-24T03:54:56.7833676Z [570/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx-u16.c.obj 2025-07-24T03:54:56.8651126Z [571/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u8.c.obj 2025-07-24T03:54:56.8776651Z [572/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u4.c.obj 2025-07-24T03:54:56.8854208Z [573/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u16.c.obj 2025-07-24T03:54:56.8962951Z [574/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u1.c.obj 2025-07-24T03:54:56.8977568Z [575/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u8.c.obj 2025-07-24T03:54:56.9094023Z [576/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx-u16.c.obj 2025-07-24T03:54:56.9167918Z [577/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u8.c.obj 2025-07-24T03:54:56.9244515Z [578/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u4.c.obj 2025-07-24T03:54:57.0255504Z [579/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx-u16.c.obj 2025-07-24T03:54:57.0413317Z [580/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u4.c.obj 2025-07-24T03:54:57.0512579Z [581/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u16.c.obj 2025-07-24T03:54:57.0574885Z [582/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u8.c.obj 2025-07-24T03:54:57.0636557Z [583/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u1.c.obj 2025-07-24T03:54:57.0708037Z [584/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx-u16.c.obj 2025-07-24T03:54:57.0726467Z [585/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u8.c.obj 2025-07-24T03:54:57.0788881Z [586/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u8.c.obj 2025-07-24T03:54:57.1782539Z [587/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u16.c.obj 2025-07-24T03:54:57.1962891Z [588/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u8.c.obj 2025-07-24T03:54:57.2024359Z [589/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u8.c.obj 2025-07-24T03:54:57.2126269Z [590/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u1.c.obj 2025-07-24T03:54:57.2191844Z [591/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u4.c.obj 2025-07-24T03:54:57.2207002Z [592/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u16.c.obj 2025-07-24T03:54:57.2263375Z [593/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u16.c.obj 2025-07-24T03:54:57.2506769Z [594/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u32.c.obj 2025-07-24T03:54:57.3184963Z [595/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u1.c.obj 2025-07-24T03:54:57.3378975Z [596/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u4.c.obj 2025-07-24T03:54:57.3456192Z [597/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u8.c.obj 2025-07-24T03:54:57.3636352Z [598/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u16.c.obj 2025-07-24T03:54:57.3653061Z [599/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut64-p2-div-u2.c.obj 2025-07-24T03:54:57.3716755Z [600/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u64.c.obj 2025-07-24T03:54:57.3781041Z [601/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u16.c.obj 2025-07-24T03:54:57.3946297Z [602/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-lut64-p2-div-u8.c.obj 2025-07-24T03:54:57.4556811Z [603/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-lut64-p2-div-u8.c.obj 2025-07-24T03:54:57.4761852Z [604/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u16.c.obj 2025-07-24T03:54:57.4827798Z [605/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u16.c.obj 2025-07-24T03:54:57.5023921Z [606/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u16.c.obj 2025-07-24T03:54:57.5080169Z [607/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u1.c.obj 2025-07-24T03:54:57.5152628Z [608/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u12.c.obj 2025-07-24T03:54:57.5223192Z [609/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-div.c.obj 2025-07-24T03:54:57.5338292Z [610/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-nr.c.obj 2025-07-24T03:54:57.5913866Z [611/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-div.c.obj 2025-07-24T03:54:57.6221979Z [612/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-scalar-rational-9-8-div.c.obj 2025-07-24T03:54:57.6237585Z [613/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-div.c.obj 2025-07-24T03:54:57.6481250Z [614/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx512f.c.obj 2025-07-24T03:54:57.6542993Z [615/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx.c.obj 2025-07-24T03:54:57.6625892Z [616/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-sse2.c.obj 2025-07-24T03:54:57.6642397Z [617/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-scalar.c.obj 2025-07-24T03:54:57.6750816Z [618/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx.c.obj 2025-07-24T03:54:57.7287711Z [619/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx512f.c.obj 2025-07-24T03:54:57.7598472Z [620/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-scalar.c.obj 2025-07-24T03:54:57.7656245Z [621/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-sse2.c.obj 2025-07-24T03:54:57.7889265Z [622/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx.c.obj 2025-07-24T03:54:57.8013556Z [623/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx512f.c.obj 2025-07-24T03:54:57.8083737Z [624/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-sse2.c.obj 2025-07-24T03:54:57.8198878Z [625/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-scalar.c.obj 2025-07-24T03:54:57.8327561Z [626/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-1x8c8-minmax-avx2.c.obj 2025-07-24T03:54:57.8915520Z [627/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-3x8c8-minmax-avx2.c.obj 2025-07-24T03:54:57.9287530Z [628/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T03:54:57.9457977Z [629/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T03:54:57.9592652Z [630/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256vnni.c.obj 2025-07-24T03:54:57.9666298Z [631/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T03:54:57.9728197Z [632/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T03:54:57.9943187Z [633/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-1x8c8-minmax-avx2.c.obj 2025-07-24T03:54:58.0199450Z [634/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256vnni.c.obj 2025-07-24T03:54:58.0485770Z [635/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-1x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:58.0994694Z [636/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-1x8c8-minmax-avx256vnni.c.obj 2025-07-24T03:54:58.1121111Z [637/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-1x8c8-minmax-avx2.c.obj 2025-07-24T03:54:58.1134839Z [638/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-3x8c8-minmax-avx2.c.obj 2025-07-24T03:54:58.1230268Z [639/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-5x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:58.1304374Z [640/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-8x8c8-minmax-avx256vnni.c.obj 2025-07-24T03:54:58.1364053Z [641/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-1x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:58.1778167Z [642/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-1x8c8-minmax-avx256vnni.c.obj 2025-07-24T03:54:58.1917317Z [643/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-3x8c8-minmax-avx2.c.obj 2025-07-24T03:54:58.2526626Z [644/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-5x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:58.2778353Z [645/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-8x8c8-minmax-avx256vnni.c.obj 2025-07-24T03:54:58.2796061Z [646/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-14x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T03:54:58.2911886Z [647/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:58.2980895Z [648/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:58.3038620Z [649/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T03:54:58.3445658Z [650/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-avx-ld128.c.obj 2025-07-24T03:54:58.3590439Z [651/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-sse2-ld128.c.obj 2025-07-24T03:54:58.4217409Z [652/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-sse41-ld128.c.obj 2025-07-24T03:54:58.4411363Z [653/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x8c8-minmax-avx2.c.obj 2025-07-24T03:54:58.4423957Z [654/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-sse41-ld128.c.obj 2025-07-24T03:54:58.4581035Z [655/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x8c8-minmax-avx2.c.obj 2025-07-24T03:54:58.4675802Z [656/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-avx-ld128.c.obj 2025-07-24T03:54:58.4689808Z [657/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:58.5346043Z [658/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-sse2-ld128.c.obj 2025-07-24T03:54:58.5433784Z [659/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:58.6007813Z [660/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:58.6183864Z [661/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T03:54:58.6249666Z [662/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T03:54:58.6265806Z [663/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse2-ld128.c.obj 2025-07-24T03:54:58.6327646Z [664/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:58.6409034Z [665/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T03:54:58.6925458Z [666/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-ssse3-madd.c.obj 2025-07-24T03:54:58.7016636Z [667/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T03:54:58.7672338Z [668/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T03:54:58.7776666Z [669/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:58.7883678Z [670/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse2-ld128.c.obj 2025-07-24T03:54:58.8009111Z [671/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T03:54:58.8071148Z [672/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-ssse3-madd.c.obj 2025-07-24T03:54:58.8138646Z [673/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T03:54:58.8634118Z [674/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:58.8699781Z [675/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T03:54:58.9297734Z [676/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:58.9543494Z [677/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:58.9684202Z [678/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x2-minmax-scalar.c.obj 2025-07-24T03:54:58.9700077Z [679/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:58.9760057Z [680/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-sse2-ld64.c.obj 2025-07-24T03:54:58.9774337Z [681/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T03:54:59.0276429Z [682/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-sse41-ld64.c.obj 2025-07-24T03:54:59.0333863Z [683/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x8c8-minmax-avx2.c.obj 2025-07-24T03:54:59.0856037Z [684/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:59.1115237Z [685/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x2-minmax-scalar.c.obj 2025-07-24T03:54:59.1333087Z [686/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:59.1396667Z [687/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-sse41-ld64.c.obj 2025-07-24T03:54:59.1418500Z [688/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x8c8-minmax-avx2.c.obj 2025-07-24T03:54:59.1478682Z [689/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-sse2-ld64.c.obj 2025-07-24T03:54:59.1865528Z [690/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T03:54:59.1923347Z [691/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:59.2442452Z [692/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:59.2589825Z [693/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T03:54:59.2920392Z [694/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-sse2-ld64.c.obj 2025-07-24T03:54:59.2935065Z [695/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:54:59.3061614Z [696/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4-minmax-scalar.c.obj 2025-07-24T03:54:59.3098770Z [697/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x2-minmax-scalar.c.obj 2025-07-24T03:54:59.3320349Z [698/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x8c8-minmax-avx2.c.obj 2025-07-24T03:54:59.3395979Z [699/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-sse41-ld64.c.obj 2025-07-24T03:54:59.3859997Z [700/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:59.4397045Z [701/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-sse2-ld64.c.obj 2025-07-24T03:54:59.4464755Z [702/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.obj 2025-07-24T03:54:59.4521847Z [703/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-sse41-ld64.c.obj 2025-07-24T03:54:59.4720169Z [704/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T03:54:59.4735182Z [705/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x2-minmax-scalar.c.obj 2025-07-24T03:54:59.4857273Z [706/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x8c8-minmax-avx2.c.obj 2025-07-24T03:54:59.4876872Z [707/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x8c8-minmax-avx256skx.c.obj 2025-07-24T03:54:59.5441986Z [708/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T03:54:59.5852201Z [709/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T03:54:59.6002057Z [710/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:59.6214099Z [711/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T03:54:59.6228653Z [712/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T03:54:59.6248336Z [713/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:59.6311759Z [714/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T03:54:59.6326274Z [715/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T03:54:59.6860045Z [716/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T03:54:59.7464568Z [717/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T03:54:59.7530957Z [718/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T03:54:59.7699871Z [719/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T03:54:59.7751351Z [720/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:54:59.7814502Z [721/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:54:59.7870786Z [722/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T03:54:59.7936677Z [723/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T03:54:59.8189365Z [724/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u16.c.obj 2025-07-24T03:54:59.8695474Z [725/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u32.c.obj 2025-07-24T03:54:59.8963045Z [726/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u16.c.obj 2025-07-24T03:54:59.9020584Z [727/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u32.c.obj 2025-07-24T03:54:59.9081627Z [728/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u1.c.obj 2025-07-24T03:54:59.9206331Z [729/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u32.c.obj 2025-07-24T03:54:59.9223950Z [730/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u4.c.obj 2025-07-24T03:54:59.9240214Z [731/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u16.c.obj 2025-07-24T03:54:59.9462855Z [732/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni-prfm.c.obj 2025-07-24T03:55:00.0019532Z [733/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-scalar.c.obj 2025-07-24T03:55:00.0353796Z [734/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni-prfm.c.obj 2025-07-24T03:55:00.0410716Z [735/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-goi-scalar.c.obj 2025-07-24T03:55:00.0620149Z [736/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T03:55:00.0685252Z [737/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T03:55:00.0700935Z [738/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T03:55:00.0883779Z [739/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:55:00.0975452Z [740/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:55:00.1492913Z [741/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T03:55:00.1841688Z [742/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T03:55:00.1900070Z [743/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T03:55:00.2128166Z [744/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p16c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T03:55:00.2146648Z [745/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T03:55:00.2209844Z [746/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T03:55:00.2319840Z [747/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:55:00.2514264Z [748/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:55:00.3022391Z [749/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T03:55:00.3257742Z [750/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T03:55:00.3323131Z [751/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T03:55:00.3594298Z [752/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T03:55:00.3669796Z [753/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T03:55:00.3684618Z [754/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T03:55:00.3783896Z [755/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:55:00.4025390Z [756/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:55:00.4499868Z [757/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T03:55:00.4785689Z [758/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T03:55:00.4806082Z [759/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T03:55:00.5375557Z [760/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T03:55:00.5423492Z [761/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:55:00.5538532Z [762/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:55:00.5602749Z [763/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:55:00.5663413Z [764/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:55:00.6102791Z [765/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:55:00.6374990Z [766/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:55:00.6451205Z [767/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:55:00.6955897Z [768/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T03:55:00.7058882Z [769/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:55:00.7132681Z [770/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:55:00.7327548Z [771/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:55:00.7386534Z [772/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:55:00.7979621Z [773/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:55:00.8113112Z [774/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:55:00.8717733Z [775/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T03:55:00.8732503Z [776/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:55:00.8787337Z [777/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:55:00.8802143Z [778/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:55:00.8858892Z [779/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T03:55:00.9032684Z [780/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:55:00.9484223Z [781/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:55:00.9549188Z [782/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:55:01.0243056Z [783/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:55:01.0263369Z [784/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T03:55:01.0317999Z [785/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:55:01.0372858Z [786/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:55:01.0561418Z [787/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:55:01.0578445Z [788/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:55:01.1055090Z [789/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:55:01.1123733Z [790/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:55:01.1718982Z [791/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:55:01.1776758Z [792/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:55:01.1840799Z [793/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T03:55:01.1937265Z [794/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x16c8-gemm-goi-avx256vnni.c.obj 2025-07-24T03:55:01.2044644Z [795/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:55:01.2138176Z [796/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T03:55:01.2433289Z [797/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x16c8-gemm-goi-scalar.c.obj 2025-07-24T03:55:01.2452987Z [798/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c64.c.obj 2025-07-24T03:55:01.3010653Z [799/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c64.c.obj 2025-07-24T03:55:01.3136546Z [800/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.obj 2025-07-24T03:55:01.3154700Z [801/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c64.c.obj 2025-07-24T03:55:01.3341157Z [802/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u64-acc2.c.obj 2025-07-24T03:55:01.3359359Z [803/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u64-acc2.c.obj 2025-07-24T03:55:01.3418672Z [804/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u128-acc2.c.obj 2025-07-24T03:55:01.3753783Z [805/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u128-acc2.c.obj 2025-07-24T03:55:01.3820702Z [806/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u4.c.obj 2025-07-24T03:55:01.4337071Z [807/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u32-acc2.c.obj 2025-07-24T03:55:01.4564975Z [808/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-07-24T03:55:01.4635129Z [809/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-07-24T03:55:01.4795768Z [810/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-07-24T03:55:01.4812715Z [811/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u1.c.obj 2025-07-24T03:55:01.4828790Z [812/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u4.c.obj 2025-07-24T03:55:01.5191467Z [813/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:55:01.5268339Z [814/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-07-24T03:55:01.5786006Z [815/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-07-24T03:55:01.5960483Z [816/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-07-24T03:55:01.6037371Z [817/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-07-24T03:55:01.6183730Z [818/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u4.c.obj 2025-07-24T03:55:01.6239180Z [819/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u1.c.obj 2025-07-24T03:55:01.6319897Z [820/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:55:01.6682798Z [821/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-07-24T03:55:01.6698356Z [822/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u32.c.obj 2025-07-24T03:55:01.7040675Z [823/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u32.c.obj 2025-07-24T03:55:01.7269171Z [824/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u4.c.obj 2025-07-24T03:55:01.7286648Z [825/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u1.c.obj 2025-07-24T03:55:01.7442860Z [826/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u32.c.obj 2025-07-24T03:55:01.7557432Z [827/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u32.c.obj 2025-07-24T03:55:01.7627808Z [828/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u32.c.obj 2025-07-24T03:55:01.8101138Z [829/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u32.c.obj 2025-07-24T03:55:01.8336003Z [830/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u32.c.obj 2025-07-24T03:55:01.8645522Z [831/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u4.c.obj 2025-07-24T03:55:01.8663639Z [832/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u4.c.obj 2025-07-24T03:55:01.8729688Z [833/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u32.c.obj 2025-07-24T03:55:01.8818322Z [834/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u32.c.obj 2025-07-24T03:55:01.8878540Z [835/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u32.c.obj 2025-07-24T03:55:01.8957290Z [836/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.obj 2025-07-24T03:55:01.9484630Z [837/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u4.c.obj 2025-07-24T03:55:01.9760123Z [838/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:55:02.0054456Z [839/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.obj 2025-07-24T03:55:02.0074945Z [840/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.obj 2025-07-24T03:55:02.0140430Z [841/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-07-24T03:55:02.0222938Z [842/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:55:02.0288589Z [843/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.obj 2025-07-24T03:55:02.0308621Z [844/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.obj 2025-07-24T03:55:02.0765653Z [845/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.obj 2025-07-24T03:55:02.0955411Z [846/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.obj 2025-07-24T03:55:02.1259363Z [847/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-sse2-c8.c.obj 2025-07-24T03:55:02.1550185Z [848/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-07-24T03:55:02.1606467Z [849/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T03:55:02.1687401Z [850/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T03:55:02.1706695Z [851/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:55:02.1832088Z [852/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:55:02.2483105Z [853/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T03:55:02.2499174Z [854/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T03:55:02.2761629Z [855/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T03:55:02.2992873Z [856/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-07-24T03:55:02.3129738Z [857/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T03:55:02.3145345Z [858/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T03:55:02.3159758Z [859/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:55:02.3305162Z [860/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:55:02.3957947Z [861/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T03:55:02.4045298Z [862/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T03:55:02.4240653Z [863/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T03:55:02.4298837Z [864/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u32.c.obj 2025-07-24T03:55:02.4403910Z [865/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u32.c.obj 2025-07-24T03:55:02.4466567Z [866/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u16.c.obj 2025-07-24T03:55:02.4583127Z [867/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u4.c.obj 2025-07-24T03:55:02.5058058Z [868/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u1.c.obj 2025-07-24T03:55:02.5176339Z [869/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u32.c.obj 2025-07-24T03:55:02.5288412Z [870/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u16.c.obj 2025-07-24T03:55:02.5751840Z [871/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:55:02.5818553Z [872/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:55:02.6100362Z [873/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:55:02.6177988Z [874/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:55:02.6192601Z [875/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:55:02.6770820Z [876/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:55:02.6857650Z [877/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:55:02.6928432Z [878/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:55:02.7378627Z [879/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:55:02.7819663Z [880/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:55:02.7879901Z [881/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:55:02.7944692Z [882/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:55:02.7962439Z [883/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:55:02.8270361Z [884/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:55:02.8558117Z [885/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:55:02.8620185Z [886/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:55:02.9002834Z [887/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:55:02.9228855Z [888/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:55:02.9349232Z [889/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:55:02.9410635Z [890/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:55:02.9473811Z [891/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:55:02.9998492Z [892/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T03:55:03.0185158Z [893/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T03:55:03.0316580Z [894/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T03:55:03.0552987Z [895/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T03:55:03.0724005Z [896/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T03:55:03.0872268Z [897/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T03:55:03.0931997Z [898/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x8c8-minmax-fp32-avx2.c.obj 2025-07-24T03:55:03.1057041Z [899/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c64.c.obj 2025-07-24T03:55:03.1225220Z [900/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-scalar.c.obj 2025-07-24T03:55:03.1382590Z [901/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u64-acc2.c.obj 2025-07-24T03:55:03.1518181Z [902/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u4.c.obj 2025-07-24T03:55:03.2017363Z [903/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u32-acc2.c.obj 2025-07-24T03:55:03.2089573Z [904/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-07-24T03:55:03.2286374Z [905/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-07-24T03:55:03.2414571Z [906/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-07-24T03:55:03.2476559Z [907/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u1.c.obj 2025-07-24T03:55:03.2668198Z [908/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u4.c.obj 2025-07-24T03:55:03.2738106Z [909/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:55:03.2937366Z [910/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-07-24T03:55:03.3440245Z [911/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-07-24T03:55:03.3505950Z [912/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-07-24T03:55:03.3709160Z [913/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-07-24T03:55:03.3830854Z [914/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u4.c.obj 2025-07-24T03:55:03.4120623Z [915/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u1.c.obj 2025-07-24T03:55:03.4136719Z [916/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-07-24T03:55:03.4222395Z [917/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:55:03.4237158Z [918/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u32.c.obj 2025-07-24T03:55:03.4671729Z [919/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u32.c.obj 2025-07-24T03:55:03.4753591Z [920/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u1.c.obj 2025-07-24T03:55:03.5009861Z [921/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u4.c.obj 2025-07-24T03:55:03.5261047Z [922/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u32.c.obj 2025-07-24T03:55:03.5405675Z [923/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u32.c.obj 2025-07-24T03:55:03.5482162Z [924/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u32.c.obj 2025-07-24T03:55:03.5633884Z [925/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u32.c.obj 2025-07-24T03:55:03.5653226Z [926/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u32.c.obj 2025-07-24T03:55:03.6087077Z [927/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u4.c.obj 2025-07-24T03:55:03.6227628Z [928/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u4.c.obj 2025-07-24T03:55:03.6503544Z [929/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u32.c.obj 2025-07-24T03:55:03.6719159Z [930/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u32.c.obj 2025-07-24T03:55:03.6849426Z [931/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u32.c.obj 2025-07-24T03:55:03.7018471Z [932/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.obj 2025-07-24T03:55:03.7393862Z [933/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.obj 2025-07-24T03:55:03.7557512Z [934/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:55:03.7577537Z [935/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u4.c.obj 2025-07-24T03:55:03.7651295Z [936/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.obj 2025-07-24T03:55:03.7760399Z [937/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-07-24T03:55:03.8113339Z [938/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.obj 2025-07-24T03:55:03.8184157Z [939/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.obj 2025-07-24T03:55:03.8258822Z [940/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx2.c.obj 2025-07-24T03:55:03.8626700Z [941/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx512f.c.obj 2025-07-24T03:55:03.8763237Z [942/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c1.c.obj 2025-07-24T03:55:03.8875146Z [943/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c8.c.obj 2025-07-24T03:55:03.8893624Z [944/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-scalar.c.obj 2025-07-24T03:55:03.8996401Z [945/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c16.c.obj 2025-07-24T03:55:03.9466430Z [946/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse41-c16.c.obj 2025-07-24T03:55:03.9525627Z [947/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-07-24T03:55:03.9591697Z [948/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-07-24T03:55:03.9958283Z [949/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx2-u128.c.obj 2025-07-24T03:55:04.0198991Z [950/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx512skx-u256.c.obj 2025-07-24T03:55:04.0225089Z [951/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse2-u64.c.obj 2025-07-24T03:55:04.0297691Z [952/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-scalar-u4.c.obj 2025-07-24T03:55:04.0367954Z [953/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse41-u64.c.obj 2025-07-24T03:55:04.0717129Z [954/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c1.c.obj 2025-07-24T03:55:04.0779434Z [955/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c8.c.obj 2025-07-24T03:55:04.0842826Z [956/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c16.c.obj 2025-07-24T03:55:04.0933459Z [957/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-lut32norm\u8-lut32norm-scalar.c.obj 2025-07-24T03:55:04.1418325Z [958/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-07-24T03:55:04.1485476Z [959/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-07-24T03:55:04.1637986Z [960/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-sse2-u16.c.obj 2025-07-24T03:55:04.2128284Z [961/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx2-u128.c.obj 2025-07-24T03:55:04.2254346Z [962/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-scalar-u4.c.obj 2025-07-24T03:55:04.2269801Z [963/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx512skx-u256.c.obj 2025-07-24T03:55:04.2355135Z [964/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-sse2-u64.c.obj 2025-07-24T03:55:04.2373509Z [965/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-scalar-u2.c.obj 2025-07-24T03:55:04.2693397Z [966/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-packw\gen\x16-packw-x16-gemm-goi-avx2-u16-prfm.c.obj 2025-07-24T03:55:04.2755179Z [967/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-packw\gen\x16-packw-x64-gemm-goi-scalar-int-u4.c.obj 2025-07-24T03:55:04.2821433Z [968/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-switch-avx2.c.obj 2025-07-24T03:55:04.3364056Z [969/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-2x4-scalar-int.c.obj 2025-07-24T03:55:04.3464683Z [970/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\gen\x24-transposec-1x2-scalar.c.obj 2025-07-24T03:55:04.3521515Z [971/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-multi-sse2.c.obj 2025-07-24T03:55:04.3614689Z [972/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\x24-transposec-4x4-ssse3.c.obj 2025-07-24T03:55:04.3677731Z [973/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u8.c.obj 2025-07-24T03:55:04.3978378Z [974/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx-u4.c.obj 2025-07-24T03:55:04.4038271Z [975/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-avx-u4.c.obj 2025-07-24T03:55:04.4054608Z [976/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x2-gemm-goi-scalar-float-u4.c.obj 2025-07-24T03:55:04.4722398Z [977/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x2c4-gemm-goi-sse2-u4.c.obj 2025-07-24T03:55:04.4780162Z [978/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u8.c.obj 2025-07-24T03:55:04.4888499Z [979/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x32-gemm-goi-avx512f-u4-prfm.c.obj 2025-07-24T03:55:04.4974659Z [980/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x4-gemm-goi-scalar-float-u4.c.obj 2025-07-24T03:55:04.5037354Z [981/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u4.c.obj 2025-07-24T03:55:04.5267872Z [982/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-multi-avx.c.obj 2025-07-24T03:55:04.5457784Z [983/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\x32-transposec-4x4-sse.c.obj 2025-07-24T03:55:04.5473732Z [984/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-int.c.obj 2025-07-24T03:55:04.5570414Z [985/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-scalar.c.obj 2025-07-24T03:55:04.5691856Z [986/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-sse2.c.obj 2025-07-24T03:55:04.5768090Z [987/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-scalar.c.obj 2025-07-24T03:55:04.5843036Z [988/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-sse2.c.obj 2025-07-24T03:55:04.5898209Z [989/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-scalar.c.obj 2025-07-24T03:55:04.6041632Z [990/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-sse2.c.obj 2025-07-24T03:55:04.6150661Z [991/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-scalar.c.obj 2025-07-24T03:55:04.6300691Z [992/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-scalar.c.obj 2025-07-24T03:55:04.6313621Z [993/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-sse2.c.obj 2025-07-24T03:55:04.6446831Z [994/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-sse2.c.obj 2025-07-24T03:55:04.6936796Z [995/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-mov-sse2.c.obj 2025-07-24T03:55:04.6989783Z [996/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-int.c.obj 2025-07-24T03:55:04.7042344Z [997/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx-u64.c.obj 2025-07-24T03:55:04.7105615Z [998/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-multi-avx.c.obj 2025-07-24T03:55:04.7125672Z [999/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx2-u128.c.obj 2025-07-24T03:55:04.7266806Z [1000/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-scalar-u4.c.obj 2025-07-24T03:55:04.7280123Z [1001/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u64.c.obj 2025-07-24T03:55:04.7338997Z [1002/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u128.c.obj 2025-07-24T03:55:04.8274988Z [1003/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packq\x8-packq-scalar-f32qp8-u1.c.obj 2025-07-24T03:55:04.8293080Z [1004/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u2.c.obj 2025-07-24T03:55:04.8343152Z [1005/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u2.c.obj 2025-07-24T03:55:04.8433527Z [1006/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u2.c.obj 2025-07-24T03:55:04.8498313Z [1007/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-2x4-scalar-int.c.obj 2025-07-24T03:55:04.8513066Z [1008/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-mov-sse2.c.obj 2025-07-24T03:55:04.8644873Z [1009/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-switch-avx2.c.obj 2025-07-24T03:55:04.8719209Z [1010/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u2.c.obj 2025-07-24T03:55:04.8998626Z [1011/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-scalar.c.obj 2025-07-24T03:55:04.9067505Z [1012/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-scalar.c.obj 2025-07-24T03:55:04.9142926Z [1013/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-sse2.c.obj 2025-07-24T03:55:04.9244744Z [1014/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-sse2.c.obj 2025-07-24T03:55:04.9263409Z [1015/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-scalar.c.obj 2025-07-24T03:55:04.9414818Z [1016/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-scalar.c.obj 2025-07-24T03:55:04.9604097Z [1017/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-sse2.c.obj 2025-07-24T03:55:04.9660803Z [1018/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-sse2.c.obj 2025-07-24T03:55:04.9758751Z [1019/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-scalar-u16.c.obj 2025-07-24T03:55:04.9928086Z [1020/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-sse2-u64.c.obj 2025-07-24T03:55:05.0026511Z [1021/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p16-sse2-u16.c.obj 2025-07-24T03:55:05.0039997Z [1022/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p4-scalar-u16.c.obj 2025-07-24T03:55:05.0288657Z [1023/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-64.c.obj 2025-07-24T03:55:05.0346862Z [1024/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-copy\xx-copy-scalar-memcpy.c.obj 2025-07-24T03:55:05.0421190Z [1025/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-2048.c.obj 2025-07-24T03:55:05.0486311Z [1026/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-4.c.obj 2025-07-24T03:55:05.0547267Z [1027/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-transposev\xx-transposev-1x1-scalar-memcpy.c.obj 2025-07-24T03:55:05.0617852Z [1028/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-8.c.obj 2025-07-24T03:55:05.0737048Z [1029/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-16.c.obj 2025-07-24T03:55:05.0756180Z [1030/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-32.c.obj 2025-07-24T03:55:05.1019117Z [1031/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-64.c.obj 2025-07-24T03:55:05.1077225Z [1032/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-2048.c.obj 2025-07-24T03:55:05.1129746Z [1033/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\vlog.c.obj 2025-07-24T03:55:05.1430641Z [1034/7681] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-07-24T03:55:05.1431349Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-operators.in.proto 2025-07-24T03:55:05.1432274Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto 2025-07-24T03:55:05.1433294Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto3 2025-07-24T03:55:05.1434231Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators-ml.pb.h 2025-07-24T03:55:05.1525819Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_operators_pb.py 2025-07-24T03:55:05.1526313Z 2025-07-24T03:55:05.1526487Z [1035/7681] Running gen_proto.py on onnx/onnx-data.in.proto 2025-07-24T03:55:05.1693162Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-data.in.proto 2025-07-24T03:55:05.1693997Z 2025-07-24T03:55:05.1694621Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto 2025-07-24T03:55:05.1696351Z 2025-07-24T03:55:05.1697002Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto3 2025-07-24T03:55:05.1697873Z 2025-07-24T03:55:05.1698367Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data.pb.h 2025-07-24T03:55:05.1699084Z 2025-07-24T03:55:05.1699663Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_data_pb.py 2025-07-24T03:55:05.1700411Z 2025-07-24T03:55:05.1700626Z [1036/7681] Linking C static library lib\cpuinfo.lib 2025-07-24T03:55:05.1800057Z [1037/7681] Linking C executable sleef\bin\mkrename.exe 2025-07-24T03:55:05.1943258Z [1038/7681] Linking C executable sleef\bin\mkdisp.exe 2025-07-24T03:55:05.1957798Z [1039/7681] Linking C executable sleef\bin\mkalias.exe 2025-07-24T03:55:05.2272195Z [1040/7681] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\allocation-type.c.obj 2025-07-24T03:55:05.2585007Z [1041/7681] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\datatype-strings.c.obj 2025-07-24T03:55:05.2652537Z [1042/7681] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\microkernel-type.c.obj 2025-07-24T03:55:05.2665026Z [1043/7681] Building C object confu-deps\XNNPACK\CMakeFiles\indirection.dir\src\indirection.c.obj 2025-07-24T03:55:05.2737471Z [1044/7681] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\node-type.c.obj 2025-07-24T03:55:05.2792651Z [1045/7681] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\operator-type.c.obj 2025-07-24T03:55:05.3697670Z [1046/7681] Building C object confu-deps\XNNPACK\CMakeFiles\allocator.dir\src\allocator.c.obj 2025-07-24T03:55:05.3909899Z [1047/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microparams-init.dir\src\microparams-init.c.obj 2025-07-24T03:55:05.3931091Z [1048/7681] Building C object confu-deps\XNNPACK\CMakeFiles\normalization.dir\src\normalization.c.obj 2025-07-24T03:55:05.4958346Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.4959538Z [1049/7681] Linking C static library lib\microkernels-prod.lib 2025-07-24T03:55:05.4984026Z [1050/7681] Building C object confu-deps\XNNPACK\CMakeFiles\datatype.dir\src\datatype.c.obj 2025-07-24T03:55:05.5170794Z [1051/7681] Building CXX object confu-deps\XNNPACK\CMakeFiles\packing.dir\src\reference\packing.cc.obj 2025-07-24T03:55:05.5172906Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(552): warning C4190: 'xnn_float16_from_float' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:55:05.5174728Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:55:05.5176029Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(576): warning C4190: 'xnn_float16_from_bits' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:55:05.5177279Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:55:05.5178582Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(582): warning C4190: 'xnn_bfloat16_from_float' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-07-24T03:55:05.5179880Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-24T03:55:05.5181119Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(598): warning C4190: 'xnn_bfloat16_from_bits' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-07-24T03:55:05.5182443Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-24T03:55:05.5183811Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(604): warning C4190: 'xnn_float16_zero' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:55:05.5185717Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:55:05.5187623Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5087): warning C4244: '=': conversion from 'const _Ty' to 'float', possible loss of data 2025-07-24T03:55:05.5188914Z with 2025-07-24T03:55:05.5189107Z [ 2025-07-24T03:55:05.5189284Z _Ty=int 2025-07-24T03:55:05.5189473Z ] 2025-07-24T03:55:05.5190192Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5087): note: the template instantiation context (the oldest one first) is 2025-07-24T03:55:05.5192046Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\reference\packing.cc(100): note: see reference to function template instantiation 'void copy_bias(const Src *,size_t,size_t,Dst *)' being compiled 2025-07-24T03:55:05.5193024Z with 2025-07-24T03:55:05.5193208Z [ 2025-07-24T03:55:05.5193377Z Src=float, 2025-07-24T03:55:05.5193594Z Dst=float 2025-07-24T03:55:05.5193784Z ] 2025-07-24T03:55:05.5194734Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\reference\packing.cc(49): note: see reference to function template instantiation '_OutIt *std::fill_n(_OutIt,const _Diff,const _Ty &)' being compiled 2025-07-24T03:55:05.5195820Z with 2025-07-24T03:55:05.5195996Z [ 2025-07-24T03:55:05.5196188Z _OutIt=float *, 2025-07-24T03:55:05.5196430Z Dst=float, 2025-07-24T03:55:05.5196630Z _Diff=size_t, 2025-07-24T03:55:05.5196899Z _Ty=int 2025-07-24T03:55:05.5197133Z ] 2025-07-24T03:55:05.5197964Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5087): warning C4244: 'argument': conversion from 'const _Ty' to 'float', possible loss of data 2025-07-24T03:55:05.5199016Z with 2025-07-24T03:55:05.5199192Z [ 2025-07-24T03:55:05.5199349Z _Ty=int 2025-07-24T03:55:05.5199545Z ] 2025-07-24T03:55:05.5200357Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5087): note: the template instantiation context (the oldest one first) is 2025-07-24T03:55:05.5202385Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\reference\packing.cc(192): note: see reference to function template instantiation 'void copy_bias(const Src *,size_t,size_t,Dst *)' being compiled 2025-07-24T03:55:05.5203517Z with 2025-07-24T03:55:05.5203728Z [ 2025-07-24T03:55:05.5203931Z Src=float, 2025-07-24T03:55:05.5204265Z Dst=xnn_float16 2025-07-24T03:55:05.5204493Z ] 2025-07-24T03:55:05.5324507Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\reference\packing.cc(49): note: see reference to function template instantiation '_OutIt *std::fill_n(_OutIt,const _Diff,const _Ty &)' being compiled 2025-07-24T03:55:05.5326075Z with 2025-07-24T03:55:05.5326273Z [ 2025-07-24T03:55:05.5326478Z _OutIt=xnn_float16 *, 2025-07-24T03:55:05.5326742Z Dst=xnn_float16, 2025-07-24T03:55:05.5326967Z _Diff=size_t, 2025-07-24T03:55:05.5327188Z _Ty=int 2025-07-24T03:55:05.5327376Z ] 2025-07-24T03:55:05.5327912Z [1052/7681] Building C object confu-deps\XNNPACK\CMakeFiles\hardware-config.dir\src\configs\hardware-config.c.obj 2025-07-24T03:55:05.5417205Z [1053/7681] Building C object confu-deps\XNNPACK\CMakeFiles\cache.dir\src\cache.c.obj 2025-07-24T03:55:05.5568136Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.5569296Z [1054/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernel-utils.dir\src\microkernel-utils.c.obj 2025-07-24T03:55:05.6356891Z [1055/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operator-delete.c.obj 2025-07-24T03:55:05.6451418Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.6452417Z [1056/7681] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\log.c.obj 2025-07-24T03:55:05.6541574Z [1057/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\argmax-pooling-nhwc.c.obj 2025-07-24T03:55:05.6704223Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.6704947Z [1058/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\average-pooling-nhwc.c.obj 2025-07-24T03:55:05.6768604Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.6769713Z [1059/7681] Building C object confu-deps\XNNPACK\CMakeFiles\memory.dir\src\memory.c.obj 2025-07-24T03:55:05.6876963Z [1060/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\binary-elementwise-nd.c.obj 2025-07-24T03:55:05.7302396Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.7303653Z [1061/7681] Building C object confu-deps\XNNPACK\CMakeFiles\mutex.dir\src\mutex.c.obj 2025-07-24T03:55:05.7716665Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.7717993Z [1062/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\channel-shuffle-nc.c.obj 2025-07-24T03:55:05.7846105Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.7846958Z [1063/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\constant-pad-nd.c.obj 2025-07-24T03:55:05.8290369Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.8291136Z [1064/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\dynamic-fully-connected-nc.c.obj 2025-07-24T03:55:05.8358270Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.8359900Z [1065/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\batch-matrix-multiply-nc.c.obj 2025-07-24T03:55:05.9085811Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.9087130Z [1066/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\max-pooling-nhwc.c.obj 2025-07-24T03:55:05.9319865Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.9320708Z [1067/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nchw.c.obj 2025-07-24T03:55:05.9338350Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.9340320Z [1068/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\pack-lh.c.obj 2025-07-24T03:55:05.9694560Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.9695325Z [1069/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\deconvolution-nhwc.c.obj 2025-07-24T03:55:05.9712440Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.9713068Z [1070/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\reduce-nd.c.obj 2025-07-24T03:55:05.9794653Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:05.9795813Z [1071/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nhwc.c.obj 2025-07-24T03:55:06.0017129Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.0018443Z [1072/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nchw.c.obj 2025-07-24T03:55:06.0358527Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.0359876Z [1073/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\fully-connected-nc.c.obj 2025-07-24T03:55:06.0556981Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.0557878Z [1074/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nhwc.c.obj 2025-07-24T03:55:06.0662389Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.0663070Z [1075/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\rope-nthc.c.obj 2025-07-24T03:55:06.0721385Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.0723178Z [1076/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\scaled-dot-product-attention-nhtc.c.obj 2025-07-24T03:55:06.1101720Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.1102401Z [1077/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\slice-nd.c.obj 2025-07-24T03:55:06.1160663Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.1161463Z [1078/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\transpose-nd.c.obj 2025-07-24T03:55:06.1242078Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.1242831Z [1079/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\softmax-nc.c.obj 2025-07-24T03:55:06.1354928Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.1356169Z [1080/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unary-elementwise-nc.c.obj 2025-07-24T03:55:06.1644994Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.1646257Z [1081/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unpooling-nhwc.c.obj 2025-07-24T03:55:06.1960384Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.1961954Z [1082/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operator-utils.dir\src\operator-utils.c.obj 2025-07-24T03:55:06.2038567Z [1083/7681] Building C object confu-deps\XNNPACK\CMakeFiles\operator-run.dir\src\operator-run.c.obj 2025-07-24T03:55:06.2040721Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(2243): warning C4098: 'xnn_compute_f16_qd8_convert': 'void' function returning a value 2025-07-24T03:55:06.2043042Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(2250): warning C4098: 'xnn_compute_f16_qdu8_convert': 'void' function returning a value 2025-07-24T03:55:06.2045260Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(2279): warning C4098: 'xnn_compute_f32_qd8_convert': 'void' function returning a value 2025-07-24T03:55:06.3053023Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(2286): warning C4098: 'xnn_compute_f32_qdu8_convert': 'void' function returning a value 2025-07-24T03:55:06.3055324Z [1084/7681] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\unary-elementwise.cc.obj 2025-07-24T03:55:06.3057707Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(552): warning C4190: 'xnn_float16_from_float' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:55:06.3059997Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:55:06.3062133Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(576): warning C4190: 'xnn_float16_from_bits' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:55:06.3064313Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:55:06.3066519Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(582): warning C4190: 'xnn_bfloat16_from_float' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-07-24T03:55:06.3068768Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-24T03:55:06.3070333Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(598): warning C4190: 'xnn_bfloat16_from_bits' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-07-24T03:55:06.3071712Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-24T03:55:06.3332505Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(604): warning C4190: 'xnn_float16_zero' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:55:06.3334962Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:55:06.3337508Z [1085/7681] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\binary-elementwise.cc.obj 2025-07-24T03:55:06.3340209Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(552): warning C4190: 'xnn_float16_from_float' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:55:06.3342692Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:55:06.3345820Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(576): warning C4190: 'xnn_float16_from_bits' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:55:06.3348507Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:55:06.3350728Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(582): warning C4190: 'xnn_bfloat16_from_float' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-07-24T03:55:06.3352630Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-24T03:55:06.3356046Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(598): warning C4190: 'xnn_bfloat16_from_bits' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-07-24T03:55:06.3358367Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-24T03:55:06.3796375Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(604): warning C4190: 'xnn_float16_zero' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-07-24T03:55:06.3799059Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-24T03:55:06.3800435Z [1086/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\memory-planner.c.obj 2025-07-24T03:55:06.4121679Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.4122312Z [1087/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\runtime.c.obj 2025-07-24T03:55:06.4205960Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.4207016Z [1088/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph.c.obj 2025-07-24T03:55:06.4373155Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.4374677Z [1089/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\argmax-pooling-2d.c.obj 2025-07-24T03:55:06.4785762Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.4786655Z [1090/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\average-pooling-2d.c.obj 2025-07-24T03:55:06.4896991Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.4898621Z [1091/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\batch-matrix-multiply.c.obj 2025-07-24T03:55:06.5979992Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.5980677Z [1092/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\binary.c.obj 2025-07-24T03:55:06.6201405Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.6202567Z [1093/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\concatenate.c.obj 2025-07-24T03:55:06.6713274Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.6714345Z [1094/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\convolution-2d.c.obj 2025-07-24T03:55:06.6959912Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.6960687Z [1095/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\copy.c.obj 2025-07-24T03:55:06.7118315Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.7119073Z [1096/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deprecated.c.obj 2025-07-24T03:55:06.7287724Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.7288874Z [1097/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deconvolution-2d.c.obj 2025-07-24T03:55:06.7751523Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.7753315Z [1098/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depth-to-space-2d.c.obj 2025-07-24T03:55:06.7853780Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.7854675Z [1099/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depthwise-convolution-2d.c.obj 2025-07-24T03:55:06.8964418Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.8965506Z [1100/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected-sparse.c.obj 2025-07-24T03:55:06.8984315Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.8984970Z [1101/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\even-split.c.obj 2025-07-24T03:55:06.9653271Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.9654156Z [1102/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\max-pooling-2d.c.obj 2025-07-24T03:55:06.9734744Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.9735943Z [1103/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected.c.obj 2025-07-24T03:55:06.9848261Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.9849411Z [1104/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\reshape-helpers.c.obj 2025-07-24T03:55:06.9933625Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:06.9934356Z [1105/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\pack-lh.c.obj 2025-07-24T03:55:07.0422692Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:07.0424220Z [1106/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\scaled-dot-product-attention.c.obj 2025-07-24T03:55:07.0487828Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:07.0489304Z [1107/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\softmax.c.obj 2025-07-24T03:55:07.1843782Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:07.1844525Z [1108/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\space-to-depth-2d.c.obj 2025-07-24T03:55:07.2097508Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:07.2099011Z [1109/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-constant-pad.c.obj 2025-07-24T03:55:07.2470692Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:07.2471860Z [1110/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-resize-bilinear-2d.c.obj 2025-07-24T03:55:07.2537544Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:07.2538308Z [1111/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-reduce.c.obj 2025-07-24T03:55:07.2835244Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:07.2836466Z [1112/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-transpose.c.obj 2025-07-24T03:55:07.2914222Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:07.2915318Z [1113/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-slice.c.obj 2025-07-24T03:55:07.3026014Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:07.3026467Z [1114/7681] Generating sleeflibm_AVX.h.tmp 2025-07-24T03:55:07.3069758Z [1115/7681] Generating sleeflibm_AVX2.h.tmp 2025-07-24T03:55:07.3132819Z [1116/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unpooling-2d.c.obj 2025-07-24T03:55:07.3214011Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:07.3214760Z [1117/7681] Generating sleeflibm_AVX2128.h.tmp 2025-07-24T03:55:07.3230447Z [1118/7681] Generating sleeflibm_AVX512F.h.tmp 2025-07-24T03:55:07.3283158Z [1119/7681] Generating sleeflibm_AVX512FNOFMA.h.tmp 2025-07-24T03:55:07.3316165Z [1120/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unary.c.obj 2025-07-24T03:55:07.3368843Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:07.3369549Z [1121/7681] Generating sleeflibm_AVX512F_.h.tmp 2025-07-24T03:55:07.3383284Z [1122/7681] Generating sleeflibm_AVX_.h.tmp 2025-07-24T03:55:07.3434591Z [1123/7681] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-07-24T03:55:07.3449950Z [1124/7681] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-07-24T03:55:07.3474507Z [1125/7681] Generating sleeflibm_FMA4.h.tmp 2025-07-24T03:55:07.3549893Z [1126/7681] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-07-24T03:55:07.3564495Z [1127/7681] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-07-24T03:55:07.3607437Z [1128/7681] Generating sleeflibm_SSE2.h.tmp 2025-07-24T03:55:07.3619782Z [1129/7681] Generating sleeflibm_SSE4.h.tmp 2025-07-24T03:55:07.3631672Z [1130/7681] Generating sleeflibm_SSE_.h.tmp 2025-07-24T03:55:07.3737674Z [1131/7681] Generating alias_AVX512F_dp.h.tmp 2025-07-24T03:55:07.3751324Z [1132/7681] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-07-24T03:55:07.3784831Z [1133/7681] Generating dispavx.c.tmp 2025-07-24T03:55:07.3797863Z [1134/7681] Generating dispsse.c.tmp 2025-07-24T03:55:07.3811286Z [1135/7681] Generating dispscalar.c.body 2025-07-24T03:55:07.3843153Z [1136/7681] Generating alias_AVX512F_sp.h.tmp 2025-07-24T03:55:07.4453442Z [1137/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\validation.c.obj 2025-07-24T03:55:07.4694623Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:07.4695530Z [1138/7681] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\tensor.c.obj 2025-07-24T03:55:07.6538411Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:07.6539148Z [1139/7681] Generating build_identifier.c 2025-07-24T03:55:07.7456600Z [1140/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\builder.cpp.obj 2025-07-24T03:55:07.7537175Z [1141/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\codewriter.cpp.obj 2025-07-24T03:55:07.7556796Z [1142/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\assembler.cpp.obj 2025-07-24T03:55:07.7639926Z [1143/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\compiler.cpp.obj 2025-07-24T03:55:07.7732094Z [1144/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\archtraits.cpp.obj 2025-07-24T03:55:07.7734144Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:07.7736724Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:07.7739376Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:07.7741848Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:07.7744397Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:07.7746275Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:07.7748220Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:07.8277009Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:07.8279870Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:07.8282679Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:07.8285068Z [1145/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\codeholder.cpp.obj 2025-07-24T03:55:07.8339380Z [1146/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\constpool.cpp.obj 2025-07-24T03:55:08.0503641Z [1147/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\cpuinfo.cpp.obj 2025-07-24T03:55:08.0814787Z [1148/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\errorhandler.cpp.obj 2025-07-24T03:55:08.0956168Z [1149/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emithelper.cpp.obj 2025-07-24T03:55:08.0979178Z [1150/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emitter.cpp.obj 2025-07-24T03:55:08.0999158Z [1151/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\environment.cpp.obj 2025-07-24T03:55:08.1247513Z [1152/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emitterutils.cpp.obj 2025-07-24T03:55:08.2114748Z [1153/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\func.cpp.obj 2025-07-24T03:55:08.2209700Z [1154/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\formatter.cpp.obj 2025-07-24T03:55:08.4133438Z [1155/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\funcargscontext.cpp.obj 2025-07-24T03:55:08.4253542Z [1156/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\globals.cpp.obj 2025-07-24T03:55:08.4534611Z [1157/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\jitallocator.cpp.obj 2025-07-24T03:55:08.4628840Z [1158/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\inst.cpp.obj 2025-07-24T03:55:08.4651307Z [1159/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\instdb.cpp.obj 2025-07-24T03:55:08.4915106Z [1160/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\jitruntime.cpp.obj 2025-07-24T03:55:08.5628958Z [1161/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\logger.cpp.obj 2025-07-24T03:55:08.5715997Z [1162/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\operand.cpp.obj 2025-07-24T03:55:08.7687298Z [1163/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\osutils.cpp.obj 2025-07-24T03:55:08.8105502Z [1164/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\string.cpp.obj 2025-07-24T03:55:08.8179355Z [1165/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\ralocal.cpp.obj 2025-07-24T03:55:08.8325402Z [1166/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\rapass.cpp.obj 2025-07-24T03:55:08.8422455Z [1167/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\rastack.cpp.obj 2025-07-24T03:55:08.8637362Z [1168/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\support.cpp.obj 2025-07-24T03:55:08.9006452Z [1169/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\type.cpp.obj 2025-07-24T03:55:08.9268171Z [1170/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\target.cpp.obj 2025-07-24T03:55:09.1315238Z [1171/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\virtmem.cpp.obj 2025-07-24T03:55:09.1573679Z [1172/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zone.cpp.obj 2025-07-24T03:55:09.1648951Z [1173/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonehash.cpp.obj 2025-07-24T03:55:09.1730040Z [1174/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonestack.cpp.obj 2025-07-24T03:55:09.1798735Z [1175/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonelist.cpp.obj 2025-07-24T03:55:09.1875835Z [1176/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonetree.cpp.obj 2025-07-24T03:55:09.2682809Z [1177/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonevector.cpp.obj 2025-07-24T03:55:09.3185752Z [1178/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\armformatter.cpp.obj 2025-07-24T03:55:09.3187932Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.3190499Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.3193397Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.3196359Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.3197964Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.3199533Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.3201858Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5443329Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5445644Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5447076Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5448233Z [1179/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64builder.cpp.obj 2025-07-24T03:55:09.5449606Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5451402Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5453032Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5454447Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5455959Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5457406Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5458796Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5559065Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5560634Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5562290Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5563552Z [1180/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64formatter.cpp.obj 2025-07-24T03:55:09.5564692Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5566108Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5567523Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5569102Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5570679Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5573056Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5575365Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5577865Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5581313Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5583785Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5585717Z [1181/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64func.cpp.obj 2025-07-24T03:55:09.5588197Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5590931Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5593537Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5595432Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5597808Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5600559Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5603492Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5659251Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5660839Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5662657Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5664152Z [1182/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64assembler.cpp.obj 2025-07-24T03:55:09.5665377Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5667029Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5669147Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5670831Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5672294Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5674286Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5675847Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5680353Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5683490Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5686274Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5688414Z [1183/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64compiler.cpp.obj 2025-07-24T03:55:09.5690463Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5693004Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5696041Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5699097Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5700704Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5702761Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5704247Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5871523Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5874120Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5876630Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5878965Z [1184/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64emithelper.cpp.obj 2025-07-24T03:55:09.5881723Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5884486Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5887070Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5889551Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5892969Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5894737Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.5897506Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.6492566Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.6495477Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.6498598Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.6501719Z [1185/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64instapi.cpp.obj 2025-07-24T03:55:09.6504631Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.6506973Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.6509718Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.6512834Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.6515897Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.6519164Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.6522743Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.7047764Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.7050951Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.7054263Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.7056754Z [1186/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64instdb.cpp.obj 2025-07-24T03:55:09.7058979Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.7061031Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.7063418Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.7065926Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.7067887Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.7069480Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.7071492Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9116713Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9119461Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9121474Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9122970Z [1187/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64operand.cpp.obj 2025-07-24T03:55:09.9125178Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9127855Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9129625Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9131209Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9132782Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9134455Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9136561Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9643602Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9646402Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9649283Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9651546Z [1188/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64rapass.cpp.obj 2025-07-24T03:55:09.9653743Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9656583Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9659361Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9662194Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9664995Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9667602Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:09.9670207Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:10.0013484Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:10.0016191Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:10.0018776Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-24T03:55:10.0020824Z [1189/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86compiler.cpp.obj 2025-07-24T03:55:10.0113873Z [1190/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86builder.cpp.obj 2025-07-24T03:55:10.0367786Z [1191/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86assembler.cpp.obj 2025-07-24T03:55:10.0369153Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(244): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0371032Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(244): note: the template instantiation context (the oldest one first) is 2025-07-24T03:55:10.0372927Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(252): note: see reference to class template instantiation 'asmjit::_abi_1_13::x86::X86CDisp8SHL_T<0>' being compiled 2025-07-24T03:55:10.0375425Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(245): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0377281Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(246): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0378934Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(247): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0380885Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0382488Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): note: the template instantiation context (the oldest one first) is 2025-07-24T03:55:10.0384371Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(284): note: see reference to class template instantiation 'asmjit::_abi_1_13::x86::X86Mod16BaseIndexTable_T<0>' being compiled 2025-07-24T03:55:10.0386783Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0389913Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0392749Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0395412Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0396993Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0398786Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0400348Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0402104Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0405059Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0407621Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0411628Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0415230Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0422193Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0425261Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0459240Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-24T03:55:10.0461212Z [1192/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86emithelper.cpp.obj 2025-07-24T03:55:10.0541543Z [1193/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86formatter.cpp.obj 2025-07-24T03:55:10.1398623Z [1194/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86func.cpp.obj 2025-07-24T03:55:10.3236970Z [1195/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86instapi.cpp.obj 2025-07-24T03:55:10.3299846Z [1196/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86instdb.cpp.obj 2025-07-24T03:55:10.3697310Z [1197/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86operand.cpp.obj 2025-07-24T03:55:10.4466397Z [1198/7681] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86rapass.cpp.obj 2025-07-24T03:55:10.5113882Z [1199/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc.c.obj 2025-07-24T03:55:10.7372479Z [1200/7681] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-operators_onnx_torch-ml.pb.cc.obj 2025-07-24T03:55:10.7427020Z [1201/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-aligned.c.obj 2025-07-24T03:55:10.7502875Z [1202/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-posix.c.obj 2025-07-24T03:55:10.7799690Z [1203/7681] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-data_onnx_torch.pb.cc.obj 2025-07-24T03:55:10.8263082Z [1204/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\arena.c.obj 2025-07-24T03:55:10.8368676Z [1205/7681] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx_onnx_torch-ml.pb.cc.obj 2025-07-24T03:55:10.8973914Z [1206/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\bitmap.c.obj 2025-07-24T03:55:10.9370381Z [1207/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\heap.c.obj 2025-07-24T03:55:11.1624907Z [1208/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\libc.c.obj 2025-07-24T03:55:11.2239807Z [1209/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\init.c.obj 2025-07-24T03:55:11.2427679Z [1210/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\random.c.obj 2025-07-24T03:55:11.2505234Z [1211/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\os.c.obj 2025-07-24T03:55:11.2586236Z [1212/7681] Generating include/renameavx512fnofma.h 2025-07-24T03:55:11.2660008Z Generating renameavx512fnofma.h: mkrename "cinz_" "8" "16" "avx512fnofma" 2025-07-24T03:55:11.2660816Z 2025-07-24T03:55:11.2661337Z [1213/7681] Generating include/renameavx512f.h 2025-07-24T03:55:11.2679308Z Generating renameavx512f.h: mkrename "finz_" "8" "16" "avx512f" 2025-07-24T03:55:11.2679934Z 2025-07-24T03:55:11.2680555Z [1214/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\page.c.obj 2025-07-24T03:55:11.2747157Z [1215/7681] Generating include/renameavx2.h 2025-07-24T03:55:11.2829862Z Generating renameavx2.h: mkrename "finz_" "4" "8" "avx2" 2025-07-24T03:55:11.2830344Z 2025-07-24T03:55:11.2830526Z [1216/7681] Generating include/renamefma4.h 2025-07-24T03:55:11.2844792Z Generating renamefma4.h: mkrename "finz_" "4" "8" "fma4" 2025-07-24T03:55:11.2845138Z 2025-07-24T03:55:11.2845298Z [1217/7681] Generating include/renameavx2128.h 2025-07-24T03:55:11.2904327Z Generating renameavx2128.h: mkrename "finz_" "2" "4" "avx2128" 2025-07-24T03:55:11.2904654Z 2025-07-24T03:55:11.2904968Z [1218/7681] Generating include/renameavx.h 2025-07-24T03:55:11.2980034Z Generating renameavx.h: mkrename "cinz_" "4" "8" "avx" 2025-07-24T03:55:11.2980564Z 2025-07-24T03:55:11.2980730Z [1219/7681] Generating include/renamesse4.h 2025-07-24T03:55:11.2999946Z Generating renamesse4.h: mkrename "cinz_" "2" "4" "sse4" 2025-07-24T03:55:11.3000489Z 2025-07-24T03:55:11.3000692Z [1220/7681] Generating include/renamesse2.h 2025-07-24T03:55:11.3058974Z Generating renamesse2.h: mkrename "cinz_" "2" "4" "sse2" 2025-07-24T03:55:11.3059529Z 2025-07-24T03:55:11.3137141Z [1221/7681] Generating include/renamepurec_scalar.h 2025-07-24T03:55:11.3137942Z Generating renamepurec_scalar.h: mkrename "cinz_" "1" "1" "purec" 2025-07-24T03:55:11.3138463Z 2025-07-24T03:55:11.3138703Z [1222/7681] Generating include/renamepurecfma_scalar.h 2025-07-24T03:55:11.3148700Z Generating renamepurecfma_scalar.h: mkrename "finz_" "1" "1" "purecfma" 2025-07-24T03:55:11.3149296Z 2025-07-24T03:55:11.3149478Z [1223/7681] Generating include/renamecuda.h 2025-07-24T03:55:11.3368375Z Generating renamecuda.h: mkrename "finz_" "1" "1" "cuda" 2025-07-24T03:55:11.3369002Z 2025-07-24T03:55:11.3369223Z [1224/7681] Generating ../../../include/sleef.h 2025-07-24T03:55:11.3407734Z [1225/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment.c.obj 2025-07-24T03:55:11.3421191Z [1226/7681] Generating include/alias_avx512f.h 2025-07-24T03:55:11.3434999Z [1227/7681] Generating dispscalar.c 2025-07-24T03:55:11.3512358Z [1228/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment-map.c.obj 2025-07-24T03:55:11.3525086Z [1229/7681] Generating include/renamedspscalar.h 2025-07-24T03:55:11.3563279Z [1230/7681] Generating include/renamedsp128.h 2025-07-24T03:55:11.3655769Z [1231/7681] Generating include/renamedsp256.h 2025-07-24T03:55:11.3673697Z [1232/7681] Generating dispsse.c 2025-07-24T03:55:11.3694549Z [1233/7681] Generating dispavx.c 2025-07-24T03:55:11.6578712Z [1234/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\stats.c.obj 2025-07-24T03:55:11.6971743Z [1235/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\prim\prim.c.obj 2025-07-24T03:55:11.7695515Z [1236/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\argmaxpool-config.c.obj 2025-07-24T03:55:11.7868852Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:11.7869560Z [1237/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\conv-hwc2chw-config.c.obj 2025-07-24T03:55:11.8043238Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:11.8043922Z [1238/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\avgpool-config.c.obj 2025-07-24T03:55:11.8067184Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:11.8068487Z [1239/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\cmul-config.c.obj 2025-07-24T03:55:11.8247398Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:11.8248363Z [1240/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\binary-elementwise-config.c.obj 2025-07-24T03:55:11.8403137Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:11.8404898Z [1241/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\experiments-config.c.obj 2025-07-24T03:55:12.1041518Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.1042981Z [1242/7681] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\options.c.obj 2025-07-24T03:55:12.1347281Z [1243/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv-config.c.obj 2025-07-24T03:55:12.1542450Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.1543693Z [1244/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv2d-chw-config.c.obj 2025-07-24T03:55:12.2493174Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.2494412Z [1245/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-config.c.obj 2025-07-24T03:55:12.2599637Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.2600436Z [1246/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-chw-config.c.obj 2025-07-24T03:55:12.2705897Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.2706650Z [1247/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\lut32norm-config.c.obj 2025-07-24T03:55:12.2794231Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.2794974Z [1248/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\maxpool-config.c.obj 2025-07-24T03:55:12.3153644Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.3154324Z [1249/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\gemm-config.c.obj 2025-07-24T03:55:12.5556389Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.5557115Z [1250/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pavgpool-config.c.obj 2025-07-24T03:55:12.5739114Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.5740280Z [1251/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\raddstoreexpminusmax-config.c.obj 2025-07-24T03:55:12.5805934Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.5807138Z [1252/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pack-lh-config.c.obj 2025-07-24T03:55:12.6968397Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.6969568Z [1253/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\rmax-config.c.obj 2025-07-24T03:55:12.7025212Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.7026499Z [1254/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\reduce-config.c.obj 2025-07-24T03:55:12.7120323Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.7121529Z [1255/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\spmm-config.c.obj 2025-07-24T03:55:12.7229836Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.7231051Z [1256/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\transpose-config.c.obj 2025-07-24T03:55:12.7874210Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.7875000Z [1257/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unary-elementwise-config.c.obj 2025-07-24T03:55:12.8751372Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.8752416Z [1258/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\params.c.obj 2025-07-24T03:55:12.9582996Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.9584164Z [1259/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\build_identifier.c.obj 2025-07-24T03:55:12.9986242Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:12.9987013Z [1260/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unpool-config.c.obj 2025-07-24T03:55:13.0127020Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:13.0221819Z [1261/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\vmulcaddc-config.c.obj 2025-07-24T03:55:13.0223105Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:13.0224828Z [1262/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-fill-config.c.obj 2025-07-24T03:55:13.0833422Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:13.0834123Z [1263/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\ExecuteKernel.cc.obj 2025-07-24T03:55:13.1359381Z [1264/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\zip-config.c.obj 2025-07-24T03:55:13.1454446Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:13.1455246Z [1265/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-pad-config.c.obj 2025-07-24T03:55:13.1478303Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:13.1479565Z [1266/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\x8-lut-config.c.obj 2025-07-24T03:55:13.1596778Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:13.1597818Z [1267/7681] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\init.c.obj 2025-07-24T03:55:13.4096285Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-24T03:55:13.4097554Z [1268/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmBfloat16Convert.cc.obj 2025-07-24T03:55:13.4989979Z [1269/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmConv.cc.obj 2025-07-24T03:55:13.4993392Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.4996057Z with 2025-07-24T03:55:13.4996462Z [ 2025-07-24T03:55:13.4996787Z T=uint8_t, 2025-07-24T03:55:13.4997195Z accT=int32_t, 2025-07-24T03:55:13.4997604Z inpType=uint8_t 2025-07-24T03:55:13.4998053Z ] 2025-07-24T03:55:13.4999674Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:13.5001466Z with 2025-07-24T03:55:13.5001773Z [ 2025-07-24T03:55:13.5002123Z T=uint8_t, 2025-07-24T03:55:13.5002500Z accT=int32_t 2025-07-24T03:55:13.5002921Z ] 2025-07-24T03:55:13.5005459Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.5008159Z with 2025-07-24T03:55:13.5008512Z [ 2025-07-24T03:55:13.5008815Z T=uint8_t, 2025-07-24T03:55:13.5009228Z accT=int32_t 2025-07-24T03:55:13.5009639Z ] 2025-07-24T03:55:13.5011305Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:13.5013433Z with 2025-07-24T03:55:13.5013783Z [ 2025-07-24T03:55:13.5014129Z T=uint8_t, 2025-07-24T03:55:13.5014686Z accT=int32_t 2025-07-24T03:55:13.5015070Z ] 2025-07-24T03:55:13.5017558Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.5020172Z with 2025-07-24T03:55:13.5020524Z [ 2025-07-24T03:55:13.5020855Z T=int8_t, 2025-07-24T03:55:13.5021236Z accT=int32_t, 2025-07-24T03:55:13.5021669Z inpType=int8_t 2025-07-24T03:55:13.5022108Z ] 2025-07-24T03:55:13.5023570Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:13.5025213Z with 2025-07-24T03:55:13.5025545Z [ 2025-07-24T03:55:13.5025875Z T=int8_t, 2025-07-24T03:55:13.5026281Z accT=int32_t 2025-07-24T03:55:13.5026685Z ] 2025-07-24T03:55:13.5029103Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.5031673Z with 2025-07-24T03:55:13.5031998Z [ 2025-07-24T03:55:13.5032337Z T=int8_t, 2025-07-24T03:55:13.5032737Z accT=int32_t 2025-07-24T03:55:13.5033130Z ] 2025-07-24T03:55:13.5034584Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:13.5036096Z with 2025-07-24T03:55:13.5036488Z [ 2025-07-24T03:55:13.5036796Z T=int8_t, 2025-07-24T03:55:13.5037174Z accT=int32_t 2025-07-24T03:55:13.5037535Z ] 2025-07-24T03:55:13.5040055Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.5042626Z with 2025-07-24T03:55:13.5042955Z [ 2025-07-24T03:55:13.5043271Z T=uint8_t, 2025-07-24T03:55:13.5043630Z accT=int32_t, 2025-07-24T03:55:13.5044034Z inpType=uint8_t 2025-07-24T03:55:13.5044427Z ] 2025-07-24T03:55:13.5046034Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:13.5047815Z with 2025-07-24T03:55:13.5048140Z [ 2025-07-24T03:55:13.5048484Z T=uint8_t, 2025-07-24T03:55:13.5048898Z accT=int32_t 2025-07-24T03:55:13.5049279Z ] 2025-07-24T03:55:13.5051737Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.5054318Z with 2025-07-24T03:55:13.5054628Z [ 2025-07-24T03:55:13.5054944Z T=uint8_t, 2025-07-24T03:55:13.5055551Z accT=int32_t 2025-07-24T03:55:13.5055923Z ] 2025-07-24T03:55:13.5057487Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:13.5059279Z with 2025-07-24T03:55:13.5059556Z [ 2025-07-24T03:55:13.5059805Z T=uint8_t, 2025-07-24T03:55:13.5060139Z accT=int32_t 2025-07-24T03:55:13.5060465Z ] 2025-07-24T03:55:13.5062896Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.5065430Z with 2025-07-24T03:55:13.5065758Z [ 2025-07-24T03:55:13.5066069Z T=uint8_t, 2025-07-24T03:55:13.5066428Z accT=int32_t, 2025-07-24T03:55:13.5066830Z inpType=uint8_t 2025-07-24T03:55:13.5067209Z ] 2025-07-24T03:55:13.5068735Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:13.5070526Z with 2025-07-24T03:55:13.5083561Z [ 2025-07-24T03:55:13.5083900Z T=uint8_t, 2025-07-24T03:55:13.5084128Z accT=int32_t 2025-07-24T03:55:13.5084350Z ] 2025-07-24T03:55:13.5085845Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.5087281Z with 2025-07-24T03:55:13.5087467Z [ 2025-07-24T03:55:13.5087728Z T=uint8_t, 2025-07-24T03:55:13.5087995Z accT=int32_t 2025-07-24T03:55:13.5088289Z ] 2025-07-24T03:55:13.5089169Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:13.5090047Z with 2025-07-24T03:55:13.5090235Z [ 2025-07-24T03:55:13.5090409Z T=uint8_t, 2025-07-24T03:55:13.5090632Z accT=int32_t 2025-07-24T03:55:13.5090847Z ] 2025-07-24T03:55:13.5092252Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.5093908Z with 2025-07-24T03:55:13.5094080Z [ 2025-07-24T03:55:13.5094259Z T=uint8_t, 2025-07-24T03:55:13.5094478Z accT=int32_t, 2025-07-24T03:55:13.5094841Z inpType=uint8_t 2025-07-24T03:55:13.5095137Z ] 2025-07-24T03:55:13.5095984Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:13.5096918Z with 2025-07-24T03:55:13.5097133Z [ 2025-07-24T03:55:13.5097314Z T=uint8_t, 2025-07-24T03:55:13.5097517Z accT=int32_t 2025-07-24T03:55:13.5097725Z ] 2025-07-24T03:55:13.5099023Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.5100686Z with 2025-07-24T03:55:13.5100937Z [ 2025-07-24T03:55:13.5101139Z T=uint8_t, 2025-07-24T03:55:13.5101391Z accT=int32_t 2025-07-24T03:55:13.5101655Z ] 2025-07-24T03:55:13.5102808Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:13.5103693Z with 2025-07-24T03:55:13.5103876Z [ 2025-07-24T03:55:13.5104171Z T=uint8_t, 2025-07-24T03:55:13.5104445Z accT=int32_t 2025-07-24T03:55:13.5104744Z ] 2025-07-24T03:55:13.5105940Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.5108784Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.5112416Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.5117095Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.5670835Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.5672455Z [1270/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\EmbeddingSpMDMNBit.cc.obj 2025-07-24T03:55:13.5750145Z [1271/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFP16.cc.obj 2025-07-24T03:55:13.5812850Z [1272/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFPCommon.cc.obj 2025-07-24T03:55:13.5970967Z [1273/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\Fbgemm.cc.obj 2025-07-24T03:55:13.5973663Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.5976208Z with 2025-07-24T03:55:13.5976495Z [ 2025-07-24T03:55:13.5976862Z inpType=uint8_t 2025-07-24T03:55:13.5977221Z ] 2025-07-24T03:55:13.5978669Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:55:13.5980946Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.5983613Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:55:13.5986817Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.5988627Z with 2025-07-24T03:55:13.5988809Z [ 2025-07-24T03:55:13.5989017Z inpType=int8_t 2025-07-24T03:55:13.5989290Z ] 2025-07-24T03:55:13.5990121Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix' 2025-07-24T03:55:13.5992322Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.5994869Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize' 2025-07-24T03:55:13.5997352Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.5999635Z with 2025-07-24T03:55:13.5999964Z [ 2025-07-24T03:55:13.6000273Z inpType=uint8_t 2025-07-24T03:55:13.6000660Z ] 2025-07-24T03:55:13.6002278Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:55:13.6005878Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6009249Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:55:13.6011810Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6013613Z with 2025-07-24T03:55:13.6013802Z [ 2025-07-24T03:55:13.6014074Z inpType=int8_t 2025-07-24T03:55:13.6014378Z ] 2025-07-24T03:55:13.6015361Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix' 2025-07-24T03:55:13.6017603Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6019916Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize' 2025-07-24T03:55:13.6023510Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6025986Z with 2025-07-24T03:55:13.6026310Z [ 2025-07-24T03:55:13.6026653Z inpType=uint8_t 2025-07-24T03:55:13.6027067Z ] 2025-07-24T03:55:13.6028493Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:55:13.6031886Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6035390Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:55:13.6038336Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6040042Z with 2025-07-24T03:55:13.6040287Z [ 2025-07-24T03:55:13.6040477Z inpType=uint8_t 2025-07-24T03:55:13.6040906Z ] 2025-07-24T03:55:13.6042272Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:55:13.6046645Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6050932Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:55:13.6055061Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6057707Z with 2025-07-24T03:55:13.6058033Z [ 2025-07-24T03:55:13.6058348Z inpType=uint8_t 2025-07-24T03:55:13.6058753Z ] 2025-07-24T03:55:13.6060456Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:55:13.6064392Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6068279Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:55:13.6072398Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6075007Z with 2025-07-24T03:55:13.6075315Z [ 2025-07-24T03:55:13.6075615Z inpType=uint8_t 2025-07-24T03:55:13.6075989Z ] 2025-07-24T03:55:13.6077486Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:55:13.6081088Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6084785Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:55:13.6088649Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6091070Z with 2025-07-24T03:55:13.6091377Z [ 2025-07-24T03:55:13.6091666Z inpType=uint8_t 2025-07-24T03:55:13.6092052Z ] 2025-07-24T03:55:13.6093480Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:55:13.6097147Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6101040Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:55:13.6105294Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6107955Z with 2025-07-24T03:55:13.6108328Z [ 2025-07-24T03:55:13.6108674Z inpType=uint8_t 2025-07-24T03:55:13.6109108Z ] 2025-07-24T03:55:13.6110705Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:55:13.6114907Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6119118Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:55:13.6123993Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6126566Z with 2025-07-24T03:55:13.6126859Z [ 2025-07-24T03:55:13.6127149Z inpType=uint8_t 2025-07-24T03:55:13.6127520Z ] 2025-07-24T03:55:13.6128889Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:55:13.6132615Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6138621Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:55:13.6143448Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6145820Z with 2025-07-24T03:55:13.6146083Z [ 2025-07-24T03:55:13.6146350Z inpType=uint8_t 2025-07-24T03:55:13.6146583Z ] 2025-07-24T03:55:13.6147725Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:55:13.6149832Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6152038Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:55:13.6154211Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6155655Z with 2025-07-24T03:55:13.6155846Z [ 2025-07-24T03:55:13.6156041Z inpType=uint8_t 2025-07-24T03:55:13.6156383Z ] 2025-07-24T03:55:13.6157264Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:55:13.6159514Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6162010Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:55:13.6164378Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6165958Z with 2025-07-24T03:55:13.6166278Z [ 2025-07-24T03:55:13.6166626Z inpType=uint8_t 2025-07-24T03:55:13.6167029Z ] 2025-07-24T03:55:13.6168466Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:55:13.6172188Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6176084Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:55:13.6179607Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(113): warning C4661: 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6181978Z with 2025-07-24T03:55:13.6182324Z [ 2025-07-24T03:55:13.6182646Z inpType=int8_t 2025-07-24T03:55:13.6183057Z ] 2025-07-24T03:55:13.6184552Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix' 2025-07-24T03:55:13.6188198Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(113): warning C4661: 'int fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6191960Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize' 2025-07-24T03:55:13.6194263Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6196708Z with 2025-07-24T03:55:13.6197039Z [ 2025-07-24T03:55:13.6197382Z inpType=uint8_t 2025-07-24T03:55:13.6197788Z ] 2025-07-24T03:55:13.6199336Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:55:13.6202994Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6206729Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:55:13.6210794Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(113): warning C4661: 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6213336Z with 2025-07-24T03:55:13.6213582Z [ 2025-07-24T03:55:13.6214436Z inpType=int8_t 2025-07-24T03:55:13.6214802Z ] 2025-07-24T03:55:13.6216105Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix' 2025-07-24T03:55:13.6218782Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(113): warning C4661: 'int fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6222600Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize' 2025-07-24T03:55:13.6226188Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6228742Z with 2025-07-24T03:55:13.6229049Z [ 2025-07-24T03:55:13.6229366Z inpType=uint8_t 2025-07-24T03:55:13.6229792Z ] 2025-07-24T03:55:13.6231344Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:55:13.6235095Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6238090Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:55:13.6240257Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6241761Z with 2025-07-24T03:55:13.6241957Z [ 2025-07-24T03:55:13.6242199Z inpType=uint8_t 2025-07-24T03:55:13.6242426Z ] 2025-07-24T03:55:13.6243249Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:55:13.6245572Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6247953Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:55:13.6252032Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6254165Z with 2025-07-24T03:55:13.6254487Z [ 2025-07-24T03:55:13.6254780Z inpType=uint8_t 2025-07-24T03:55:13.6255074Z ] 2025-07-24T03:55:13.6256352Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:55:13.6259754Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6263310Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:55:13.6267351Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6269870Z with 2025-07-24T03:55:13.6270195Z [ 2025-07-24T03:55:13.6270516Z inpType=uint8_t 2025-07-24T03:55:13.6270934Z ] 2025-07-24T03:55:13.6272471Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:55:13.6276542Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6280296Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:55:13.6284134Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6286659Z with 2025-07-24T03:55:13.6286982Z [ 2025-07-24T03:55:13.6287303Z inpType=uint8_t 2025-07-24T03:55:13.6287734Z ] 2025-07-24T03:55:13.6289287Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:55:13.6292771Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6295619Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:55:13.6298948Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6300807Z with 2025-07-24T03:55:13.6301059Z [ 2025-07-24T03:55:13.6301315Z inpType=uint8_t 2025-07-24T03:55:13.6301655Z ] 2025-07-24T03:55:13.6303116Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:55:13.6306803Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6310544Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:55:13.6314331Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6316820Z with 2025-07-24T03:55:13.6317144Z [ 2025-07-24T03:55:13.6317458Z inpType=uint8_t 2025-07-24T03:55:13.6317861Z ] 2025-07-24T03:55:13.6319269Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:55:13.6322683Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6325764Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:55:13.6327835Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6329272Z with 2025-07-24T03:55:13.6329459Z [ 2025-07-24T03:55:13.6329670Z inpType=uint8_t 2025-07-24T03:55:13.6329894Z ] 2025-07-24T03:55:13.6330707Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-24T03:55:13.6333896Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6337749Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-24T03:55:13.6342021Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6344629Z with 2025-07-24T03:55:13.6344938Z [ 2025-07-24T03:55:13.6345252Z inpType=uint8_t 2025-07-24T03:55:13.6345657Z ] 2025-07-24T03:55:13.6347465Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-24T03:55:13.6350338Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:13.6352653Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-24T03:55:13.6355129Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.6358298Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.6360859Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.6363478Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.6365819Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.6368614Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.6371347Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.6373697Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.6377197Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.6382788Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,short>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.6387762Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.6391605Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.6421556Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:13.6424110Z [1274/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\EmbeddingSpMDM.cc.obj 2025-07-24T03:55:13.6603744Z [1275/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\ExecuteKernelU8S8.cc.obj 2025-07-24T03:55:13.6667717Z [1276/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFloat16Convert.cc.obj 2025-07-24T03:55:13.8243556Z [1277/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmI8Spmdm.cc.obj 2025-07-24T03:55:13.9887788Z [1278/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmPackMatrixB.cc.obj 2025-07-24T03:55:14.0313549Z [1279/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmI64.cc.obj 2025-07-24T03:55:14.1144928Z [1280/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelDirectConvU8S8S32ACC32.cc.obj 2025-07-24T03:55:14.1381610Z [1281/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16Avx512.cc.obj 2025-07-24T03:55:14.1517074Z [1282/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernel.cc.obj 2025-07-24T03:55:14.1633997Z [1283/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16.cc.obj 2025-07-24T03:55:14.1753463Z [1284/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmSparseDense.cc.obj 2025-07-24T03:55:14.3230431Z [1285/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16Avx512VNNI.cc.obj 2025-07-24T03:55:14.4740567Z [1286/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC32.cc.obj 2025-07-24T03:55:14.5031173Z [1287/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAMatrix.cc.obj 2025-07-24T03:55:14.5033363Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5034903Z with 2025-07-24T03:55:14.5035151Z [ 2025-07-24T03:55:14.5035467Z T=uint8_t, 2025-07-24T03:55:14.5035747Z accT=int32_t, 2025-07-24T03:55:14.5036233Z inpType=uint8_t 2025-07-24T03:55:14.5036456Z ] 2025-07-24T03:55:14.5037224Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5038210Z with 2025-07-24T03:55:14.5038439Z [ 2025-07-24T03:55:14.5038740Z T=uint8_t, 2025-07-24T03:55:14.5039089Z accT=int32_t 2025-07-24T03:55:14.5039460Z ] 2025-07-24T03:55:14.5041819Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5044149Z with 2025-07-24T03:55:14.5044432Z [ 2025-07-24T03:55:14.5044730Z T=uint8_t, 2025-07-24T03:55:14.5045129Z accT=int32_t 2025-07-24T03:55:14.5045496Z ] 2025-07-24T03:55:14.5047034Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5048739Z with 2025-07-24T03:55:14.5049062Z [ 2025-07-24T03:55:14.5049367Z T=uint8_t, 2025-07-24T03:55:14.5049764Z accT=int32_t 2025-07-24T03:55:14.5050154Z ] 2025-07-24T03:55:14.5052567Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5055051Z with 2025-07-24T03:55:14.5055334Z [ 2025-07-24T03:55:14.5055607Z T=uint8_t, 2025-07-24T03:55:14.5055995Z accT=int16_t, 2025-07-24T03:55:14.5056389Z inpType=uint8_t 2025-07-24T03:55:14.5056771Z ] 2025-07-24T03:55:14.5058207Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5059848Z with 2025-07-24T03:55:14.5060187Z [ 2025-07-24T03:55:14.5060515Z T=uint8_t, 2025-07-24T03:55:14.5060900Z accT=int16_t 2025-07-24T03:55:14.5061281Z ] 2025-07-24T03:55:14.5063620Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5066143Z with 2025-07-24T03:55:14.5066514Z [ 2025-07-24T03:55:14.5066822Z T=uint8_t, 2025-07-24T03:55:14.5067218Z accT=int16_t 2025-07-24T03:55:14.5067602Z ] 2025-07-24T03:55:14.5069130Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5070684Z with 2025-07-24T03:55:14.5070989Z [ 2025-07-24T03:55:14.5071290Z T=uint8_t, 2025-07-24T03:55:14.5071651Z accT=int16_t 2025-07-24T03:55:14.5072016Z ] 2025-07-24T03:55:14.5074751Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5077568Z with 2025-07-24T03:55:14.5078192Z [ 2025-07-24T03:55:14.5078501Z T=uint8_t, 2025-07-24T03:55:14.5078921Z accT=int32_t, 2025-07-24T03:55:14.5079330Z inpType=uint8_t 2025-07-24T03:55:14.5079763Z ] 2025-07-24T03:55:14.5081507Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5083176Z with 2025-07-24T03:55:14.5083549Z [ 2025-07-24T03:55:14.5083845Z T=uint8_t, 2025-07-24T03:55:14.5084252Z accT=int32_t 2025-07-24T03:55:14.5084662Z ] 2025-07-24T03:55:14.5087066Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5089630Z with 2025-07-24T03:55:14.5089979Z [ 2025-07-24T03:55:14.5090271Z T=uint8_t, 2025-07-24T03:55:14.5090691Z accT=int32_t 2025-07-24T03:55:14.5091085Z ] 2025-07-24T03:55:14.5092680Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5094398Z with 2025-07-24T03:55:14.5094752Z [ 2025-07-24T03:55:14.5095068Z T=uint8_t, 2025-07-24T03:55:14.5095475Z accT=int32_t 2025-07-24T03:55:14.5095897Z ] 2025-07-24T03:55:14.5100200Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5103346Z with 2025-07-24T03:55:14.5103693Z [ 2025-07-24T03:55:14.5104002Z T=uint8_t, 2025-07-24T03:55:14.5104388Z accT=int16_t, 2025-07-24T03:55:14.5104790Z inpType=uint8_t 2025-07-24T03:55:14.5105177Z ] 2025-07-24T03:55:14.5107265Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5108894Z with 2025-07-24T03:55:14.5109218Z [ 2025-07-24T03:55:14.5109518Z T=uint8_t, 2025-07-24T03:55:14.5110003Z accT=int16_t 2025-07-24T03:55:14.5110393Z ] 2025-07-24T03:55:14.5112661Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5115295Z with 2025-07-24T03:55:14.5115743Z [ 2025-07-24T03:55:14.5116041Z T=uint8_t, 2025-07-24T03:55:14.5116435Z accT=int16_t 2025-07-24T03:55:14.5117131Z ] 2025-07-24T03:55:14.5118473Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5119838Z with 2025-07-24T03:55:14.5120159Z [ 2025-07-24T03:55:14.5120481Z T=uint8_t, 2025-07-24T03:55:14.5120812Z accT=int16_t 2025-07-24T03:55:14.5121193Z ] 2025-07-24T03:55:14.5276790Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.5282197Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.5284911Z [1288/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithIm2Col.cc.obj 2025-07-24T03:55:14.5288700Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5291461Z with 2025-07-24T03:55:14.5291798Z [ 2025-07-24T03:55:14.5292130Z T=uint8_t, 2025-07-24T03:55:14.5292517Z accT=int32_t, 2025-07-24T03:55:14.5292973Z inpType=uint8_t 2025-07-24T03:55:14.5293380Z ] 2025-07-24T03:55:14.5295157Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5296277Z with 2025-07-24T03:55:14.5296570Z [ 2025-07-24T03:55:14.5296886Z T=uint8_t, 2025-07-24T03:55:14.5297243Z accT=int32_t 2025-07-24T03:55:14.5297729Z ] 2025-07-24T03:55:14.5300004Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5302951Z with 2025-07-24T03:55:14.5303271Z [ 2025-07-24T03:55:14.5303587Z T=uint8_t, 2025-07-24T03:55:14.5303946Z accT=int32_t 2025-07-24T03:55:14.5304290Z ] 2025-07-24T03:55:14.5305794Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5307429Z with 2025-07-24T03:55:14.5307746Z [ 2025-07-24T03:55:14.5308049Z T=uint8_t, 2025-07-24T03:55:14.5308413Z accT=int32_t 2025-07-24T03:55:14.5308780Z ] 2025-07-24T03:55:14.5311374Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5313944Z with 2025-07-24T03:55:14.5314254Z [ 2025-07-24T03:55:14.5314576Z T=uint8_t, 2025-07-24T03:55:14.5314940Z accT=int16_t, 2025-07-24T03:55:14.5315459Z inpType=uint8_t 2025-07-24T03:55:14.5315850Z ] 2025-07-24T03:55:14.5317327Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5318954Z with 2025-07-24T03:55:14.5319252Z [ 2025-07-24T03:55:14.5319541Z T=uint8_t, 2025-07-24T03:55:14.5319902Z accT=int16_t 2025-07-24T03:55:14.5320273Z ] 2025-07-24T03:55:14.5322586Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5325316Z with 2025-07-24T03:55:14.5325544Z [ 2025-07-24T03:55:14.5325770Z T=uint8_t, 2025-07-24T03:55:14.5326039Z accT=int16_t 2025-07-24T03:55:14.5326293Z ] 2025-07-24T03:55:14.5327578Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5328702Z with 2025-07-24T03:55:14.5328937Z [ 2025-07-24T03:55:14.5329157Z T=uint8_t, 2025-07-24T03:55:14.5329371Z accT=int16_t 2025-07-24T03:55:14.5329589Z ] 2025-07-24T03:55:14.5331858Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5334409Z with 2025-07-24T03:55:14.5334708Z [ 2025-07-24T03:55:14.5334993Z T=uint8_t, 2025-07-24T03:55:14.5335375Z accT=int32_t, 2025-07-24T03:55:14.5335768Z inpType=uint8_t 2025-07-24T03:55:14.5336132Z ] 2025-07-24T03:55:14.5337527Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5339093Z with 2025-07-24T03:55:14.5339403Z [ 2025-07-24T03:55:14.5339700Z T=uint8_t, 2025-07-24T03:55:14.5340032Z accT=int32_t 2025-07-24T03:55:14.5340391Z ] 2025-07-24T03:55:14.5342651Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5345020Z with 2025-07-24T03:55:14.5345333Z [ 2025-07-24T03:55:14.5345626Z T=uint8_t, 2025-07-24T03:55:14.5345989Z accT=int32_t 2025-07-24T03:55:14.5346345Z ] 2025-07-24T03:55:14.5347932Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5349638Z with 2025-07-24T03:55:14.5349935Z [ 2025-07-24T03:55:14.5350250Z T=uint8_t, 2025-07-24T03:55:14.5350626Z accT=int32_t 2025-07-24T03:55:14.5351005Z ] 2025-07-24T03:55:14.5353321Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5355929Z with 2025-07-24T03:55:14.5356225Z [ 2025-07-24T03:55:14.5356491Z T=uint8_t, 2025-07-24T03:55:14.5356857Z accT=int16_t, 2025-07-24T03:55:14.5357271Z inpType=uint8_t 2025-07-24T03:55:14.5357663Z ] 2025-07-24T03:55:14.5359109Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5360635Z with 2025-07-24T03:55:14.5360934Z [ 2025-07-24T03:55:14.5361236Z T=uint8_t, 2025-07-24T03:55:14.5361612Z accT=int16_t 2025-07-24T03:55:14.5361986Z ] 2025-07-24T03:55:14.5364199Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5367062Z with 2025-07-24T03:55:14.5367378Z [ 2025-07-24T03:55:14.5367650Z T=uint8_t, 2025-07-24T03:55:14.5368269Z accT=int16_t 2025-07-24T03:55:14.5369156Z ] 2025-07-24T03:55:14.5371089Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5372876Z with 2025-07-24T03:55:14.5373189Z [ 2025-07-24T03:55:14.5373492Z T=uint8_t, 2025-07-24T03:55:14.5373860Z accT=int16_t 2025-07-24T03:55:14.5374290Z ] 2025-07-24T03:55:14.5376454Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5378182Z with 2025-07-24T03:55:14.5378420Z [ 2025-07-24T03:55:14.5378642Z T=uint8_t, 2025-07-24T03:55:14.5378925Z accT=int32_t, 2025-07-24T03:55:14.5379159Z inpType=uint8_t 2025-07-24T03:55:14.5379459Z ] 2025-07-24T03:55:14.5380331Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5382017Z with 2025-07-24T03:55:14.5382328Z [ 2025-07-24T03:55:14.5382605Z T=uint8_t, 2025-07-24T03:55:14.5383178Z accT=int32_t 2025-07-24T03:55:14.5383577Z ] 2025-07-24T03:55:14.5385264Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5386709Z with 2025-07-24T03:55:14.5386968Z [ 2025-07-24T03:55:14.5387187Z T=uint8_t, 2025-07-24T03:55:14.5387460Z accT=int32_t 2025-07-24T03:55:14.5387713Z ] 2025-07-24T03:55:14.5388542Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5389497Z with 2025-07-24T03:55:14.5389671Z [ 2025-07-24T03:55:14.5389901Z T=uint8_t, 2025-07-24T03:55:14.5390157Z accT=int32_t 2025-07-24T03:55:14.5390386Z ] 2025-07-24T03:55:14.5391763Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5393299Z with 2025-07-24T03:55:14.5393479Z [ 2025-07-24T03:55:14.5393642Z T=uint8_t, 2025-07-24T03:55:14.5393923Z accT=int16_t, 2025-07-24T03:55:14.5394187Z inpType=uint8_t 2025-07-24T03:55:14.5394443Z ] 2025-07-24T03:55:14.5395556Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5396790Z with 2025-07-24T03:55:14.5397114Z [ 2025-07-24T03:55:14.5397377Z T=uint8_t, 2025-07-24T03:55:14.5397717Z accT=int16_t 2025-07-24T03:55:14.5398283Z ] 2025-07-24T03:55:14.5400578Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5403349Z with 2025-07-24T03:55:14.5403688Z [ 2025-07-24T03:55:14.5404008Z T=uint8_t, 2025-07-24T03:55:14.5404372Z accT=int16_t 2025-07-24T03:55:14.5404738Z ] 2025-07-24T03:55:14.5406269Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5407935Z with 2025-07-24T03:55:14.5408520Z [ 2025-07-24T03:55:14.5408835Z T=uint8_t, 2025-07-24T03:55:14.5409213Z accT=int16_t 2025-07-24T03:55:14.5409585Z ] 2025-07-24T03:55:14.5411805Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5413245Z with 2025-07-24T03:55:14.5413489Z [ 2025-07-24T03:55:14.5413706Z T=uint8_t, 2025-07-24T03:55:14.5413971Z accT=int32_t, 2025-07-24T03:55:14.5414235Z inpType=uint8_t 2025-07-24T03:55:14.5414510Z ] 2025-07-24T03:55:14.5415384Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5416358Z with 2025-07-24T03:55:14.5416551Z [ 2025-07-24T03:55:14.5416731Z T=uint8_t, 2025-07-24T03:55:14.5416958Z accT=int32_t 2025-07-24T03:55:14.5417260Z ] 2025-07-24T03:55:14.5418889Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5420224Z with 2025-07-24T03:55:14.5420400Z [ 2025-07-24T03:55:14.5420584Z T=uint8_t, 2025-07-24T03:55:14.5420790Z accT=int32_t 2025-07-24T03:55:14.5421072Z ] 2025-07-24T03:55:14.5422060Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5423087Z with 2025-07-24T03:55:14.5423302Z [ 2025-07-24T03:55:14.5423517Z T=uint8_t, 2025-07-24T03:55:14.5423794Z accT=int32_t 2025-07-24T03:55:14.5424049Z ] 2025-07-24T03:55:14.5425687Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5427057Z with 2025-07-24T03:55:14.5427266Z [ 2025-07-24T03:55:14.5427455Z T=uint8_t, 2025-07-24T03:55:14.5427716Z accT=int16_t, 2025-07-24T03:55:14.5427940Z inpType=uint8_t 2025-07-24T03:55:14.5428248Z ] 2025-07-24T03:55:14.5429173Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5430339Z with 2025-07-24T03:55:14.5430516Z [ 2025-07-24T03:55:14.5430688Z T=uint8_t, 2025-07-24T03:55:14.5430908Z accT=int16_t 2025-07-24T03:55:14.5431181Z ] 2025-07-24T03:55:14.5432644Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5434145Z with 2025-07-24T03:55:14.5434424Z [ 2025-07-24T03:55:14.5434732Z T=uint8_t, 2025-07-24T03:55:14.5449452Z accT=int16_t 2025-07-24T03:55:14.5449892Z ] 2025-07-24T03:55:14.5451514Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5452931Z with 2025-07-24T03:55:14.5453248Z [ 2025-07-24T03:55:14.5453552Z T=uint8_t, 2025-07-24T03:55:14.5453937Z accT=int16_t 2025-07-24T03:55:14.5454297Z ] 2025-07-24T03:55:14.5456301Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5458359Z with 2025-07-24T03:55:14.5458662Z [ 2025-07-24T03:55:14.5459376Z T=uint8_t, 2025-07-24T03:55:14.5459774Z accT=int32_t, 2025-07-24T03:55:14.5460174Z inpType=uint8_t 2025-07-24T03:55:14.5460533Z ] 2025-07-24T03:55:14.5462837Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5464460Z with 2025-07-24T03:55:14.5464792Z [ 2025-07-24T03:55:14.5465092Z T=uint8_t, 2025-07-24T03:55:14.5465461Z accT=int32_t 2025-07-24T03:55:14.5465817Z ] 2025-07-24T03:55:14.5468966Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5471639Z with 2025-07-24T03:55:14.5471969Z [ 2025-07-24T03:55:14.5472313Z T=uint8_t, 2025-07-24T03:55:14.5472711Z accT=int32_t 2025-07-24T03:55:14.5473118Z ] 2025-07-24T03:55:14.5474763Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5476654Z with 2025-07-24T03:55:14.5476985Z [ 2025-07-24T03:55:14.5477289Z T=uint8_t, 2025-07-24T03:55:14.5477671Z accT=int32_t 2025-07-24T03:55:14.5478141Z ] 2025-07-24T03:55:14.5480035Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5482090Z with 2025-07-24T03:55:14.5482365Z [ 2025-07-24T03:55:14.5482644Z T=uint8_t, 2025-07-24T03:55:14.5482974Z accT=int16_t, 2025-07-24T03:55:14.5483333Z inpType=uint8_t 2025-07-24T03:55:14.5483672Z ] 2025-07-24T03:55:14.5485510Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5487221Z with 2025-07-24T03:55:14.5487555Z [ 2025-07-24T03:55:14.5488082Z T=uint8_t, 2025-07-24T03:55:14.5488463Z accT=int16_t 2025-07-24T03:55:14.5488851Z ] 2025-07-24T03:55:14.5491126Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5493705Z with 2025-07-24T03:55:14.5494237Z [ 2025-07-24T03:55:14.5494548Z T=uint8_t, 2025-07-24T03:55:14.5494905Z accT=int16_t 2025-07-24T03:55:14.5495230Z ] 2025-07-24T03:55:14.5496670Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5500548Z with 2025-07-24T03:55:14.5500866Z [ 2025-07-24T03:55:14.5505194Z T=uint8_t, 2025-07-24T03:55:14.5505625Z accT=int16_t 2025-07-24T03:55:14.5506781Z ] 2025-07-24T03:55:14.5509603Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5511952Z with 2025-07-24T03:55:14.5512248Z [ 2025-07-24T03:55:14.5512510Z T=uint8_t, 2025-07-24T03:55:14.5512778Z accT=int32_t, 2025-07-24T03:55:14.5513117Z inpType=uint8_t 2025-07-24T03:55:14.5513388Z ] 2025-07-24T03:55:14.5514256Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5515441Z with 2025-07-24T03:55:14.5515644Z [ 2025-07-24T03:55:14.5515908Z T=uint8_t, 2025-07-24T03:55:14.5516281Z accT=int32_t 2025-07-24T03:55:14.5516675Z ] 2025-07-24T03:55:14.5519051Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5521557Z with 2025-07-24T03:55:14.5522035Z [ 2025-07-24T03:55:14.5522374Z T=uint8_t, 2025-07-24T03:55:14.5522772Z accT=int32_t 2025-07-24T03:55:14.5523185Z ] 2025-07-24T03:55:14.5524809Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5526514Z with 2025-07-24T03:55:14.5526844Z [ 2025-07-24T03:55:14.5527270Z T=uint8_t, 2025-07-24T03:55:14.5527660Z accT=int32_t 2025-07-24T03:55:14.5528035Z ] 2025-07-24T03:55:14.5530738Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5533282Z with 2025-07-24T03:55:14.5533600Z [ 2025-07-24T03:55:14.5534115Z T=uint8_t, 2025-07-24T03:55:14.5534503Z accT=int16_t, 2025-07-24T03:55:14.5534935Z inpType=uint8_t 2025-07-24T03:55:14.5535320Z ] 2025-07-24T03:55:14.5537080Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.5539236Z with 2025-07-24T03:55:14.5539542Z [ 2025-07-24T03:55:14.5539833Z T=uint8_t, 2025-07-24T03:55:14.5540202Z accT=int16_t 2025-07-24T03:55:14.5540577Z ] 2025-07-24T03:55:14.5543237Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.5545554Z with 2025-07-24T03:55:14.5545857Z [ 2025-07-24T03:55:14.5546112Z T=uint8_t, 2025-07-24T03:55:14.5547761Z accT=int16_t 2025-07-24T03:55:14.5548182Z ] 2025-07-24T03:55:14.5550244Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.5552512Z with 2025-07-24T03:55:14.5552733Z [ 2025-07-24T03:55:14.5552912Z T=uint8_t, 2025-07-24T03:55:14.5553174Z accT=int16_t 2025-07-24T03:55:14.5553723Z ] 2025-07-24T03:55:14.5556109Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.5560517Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.5564543Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.5567594Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.5571953Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.5576402Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.5579475Z [1289/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC32Avx512VNNI.cc.obj 2025-07-24T03:55:14.6555076Z [1290/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConvAcc32Avx2.cc.obj 2025-07-24T03:55:14.6557020Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6559024Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-07-24T03:55:14.6562467Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6565880Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-07-24T03:55:14.6569084Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6572426Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-07-24T03:55:14.6575632Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6578716Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-07-24T03:55:14.6582094Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6585406Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-07-24T03:55:14.6587316Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6590732Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-07-24T03:55:14.6594593Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6598254Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-07-24T03:55:14.6601837Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6604319Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-07-24T03:55:14.6606484Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6610278Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-07-24T03:55:14.6613765Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6617263Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-07-24T03:55:14.6620705Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6623989Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-07-24T03:55:14.6627415Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6630978Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-07-24T03:55:14.6634435Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6637216Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-07-24T03:55:14.6638970Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6640880Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-07-24T03:55:14.6642870Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6644872Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-07-24T03:55:14.6646863Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6648786Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-07-24T03:55:14.6652260Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6655646Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-07-24T03:55:14.6658891Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6661473Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-07-24T03:55:14.6664737Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6667874Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-07-24T03:55:14.6671224Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6674637Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-07-24T03:55:14.6678475Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6681551Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-07-24T03:55:14.6685996Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6688971Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-07-24T03:55:14.6692346Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6695526Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-07-24T03:55:14.6698395Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6700518Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-07-24T03:55:14.6702587Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6705036Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-07-24T03:55:14.6707666Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6709874Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-07-24T03:55:14.6712168Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6714238Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-07-24T03:55:14.6716634Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6719253Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-07-24T03:55:14.6721886Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6724455Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-07-24T03:55:14.6731035Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6734571Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-07-24T03:55:14.6736666Z [1291/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConv.cc.obj 2025-07-24T03:55:14.6842187Z [1292/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConvAcc32Avx512.cc.obj 2025-07-24T03:55:14.6844929Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6848165Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-07-24T03:55:14.6851432Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6854979Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-07-24T03:55:14.6857040Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6859452Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-07-24T03:55:14.6862496Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6865581Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-07-24T03:55:14.6868897Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6872658Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-07-24T03:55:14.6876462Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6880234Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-07-24T03:55:14.6891602Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6895634Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-07-24T03:55:14.6898790Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6902344Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-07-24T03:55:14.6908098Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6911159Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-07-24T03:55:14.6914393Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6918182Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-07-24T03:55:14.6922011Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6925497Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-07-24T03:55:14.6928589Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6932389Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-07-24T03:55:14.6935911Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6938023Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-07-24T03:55:14.6941707Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6945112Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-07-24T03:55:14.6947423Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6949590Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-07-24T03:55:14.6951639Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6954698Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-07-24T03:55:14.6957030Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6959178Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-07-24T03:55:14.6962218Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6965917Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-07-24T03:55:14.6969313Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6972807Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-07-24T03:55:14.6976352Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6980055Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-07-24T03:55:14.6983328Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6986606Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-07-24T03:55:14.6990207Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.6993858Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-07-24T03:55:14.6997432Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7000912Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-07-24T03:55:14.7004529Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7008108Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-07-24T03:55:14.7011766Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7015458Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-07-24T03:55:14.7018952Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7022450Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-07-24T03:55:14.7024571Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7026533Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-07-24T03:55:14.7028446Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7030296Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-07-24T03:55:14.7032781Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7036296Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-07-24T03:55:14.7040263Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7044242Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-07-24T03:55:14.7047642Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7051372Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-07-24T03:55:14.7055073Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7059003Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-07-24T03:55:14.7062569Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7065934Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-07-24T03:55:14.7069227Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7072645Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-07-24T03:55:14.7075467Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7078438Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-07-24T03:55:14.7080966Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7083632Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-07-24T03:55:14.7087357Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7092033Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-07-24T03:55:14.7095981Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7099442Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-07-24T03:55:14.7108111Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7112615Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-07-24T03:55:14.7116571Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7120135Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-07-24T03:55:14.7123494Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7126941Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-07-24T03:55:14.7130140Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7132508Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-07-24T03:55:14.7134698Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7136654Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-07-24T03:55:14.7138609Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7140693Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-07-24T03:55:14.7142832Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7144914Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-07-24T03:55:14.7146877Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7149706Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-07-24T03:55:14.7153764Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7157750Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-07-24T03:55:14.7161495Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7164680Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-07-24T03:55:14.7167067Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7169793Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-07-24T03:55:14.7174199Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7177728Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-07-24T03:55:14.7179739Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7181625Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-07-24T03:55:14.7183479Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7185869Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-07-24T03:55:14.7187901Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7190769Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-07-24T03:55:14.7194163Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7197136Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-07-24T03:55:14.7200416Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7203149Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-07-24T03:55:14.7206985Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7210491Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-07-24T03:55:14.7213379Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7215912Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-07-24T03:55:14.7217915Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7219947Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-07-24T03:55:14.7223657Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7227389Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-07-24T03:55:14.7231286Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7235255Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-07-24T03:55:14.7237452Z [1293/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithQuantRowOffset.cc.obj 2025-07-24T03:55:14.7241322Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7244161Z with 2025-07-24T03:55:14.7244790Z [ 2025-07-24T03:55:14.7245187Z T=uint8_t, 2025-07-24T03:55:14.7245585Z accT=int32_t, 2025-07-24T03:55:14.7245987Z inpType=uint8_t 2025-07-24T03:55:14.7246398Z ] 2025-07-24T03:55:14.7248032Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.7250335Z with 2025-07-24T03:55:14.7250568Z [ 2025-07-24T03:55:14.7250797Z T=uint8_t, 2025-07-24T03:55:14.7251024Z accT=int32_t 2025-07-24T03:55:14.7251233Z ] 2025-07-24T03:55:14.7253180Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7255682Z with 2025-07-24T03:55:14.7255966Z [ 2025-07-24T03:55:14.7256232Z T=uint8_t, 2025-07-24T03:55:14.7256576Z accT=int32_t 2025-07-24T03:55:14.7256896Z ] 2025-07-24T03:55:14.7258257Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.7259815Z with 2025-07-24T03:55:14.7260137Z [ 2025-07-24T03:55:14.7260422Z T=uint8_t, 2025-07-24T03:55:14.7260783Z accT=int32_t 2025-07-24T03:55:14.7261140Z ] 2025-07-24T03:55:14.7263410Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithQuantRowOffset.cc(36): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7265646Z with 2025-07-24T03:55:14.7265843Z [ 2025-07-24T03:55:14.7266058Z T=uint8_t, 2025-07-24T03:55:14.7266447Z accT=int32_t, 2025-07-24T03:55:14.7266766Z inpType=uint8_t 2025-07-24T03:55:14.7267153Z ] 2025-07-24T03:55:14.7268527Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.7270497Z with 2025-07-24T03:55:14.7270842Z [ 2025-07-24T03:55:14.7271142Z T=uint8_t, 2025-07-24T03:55:14.7271495Z accT=int32_t 2025-07-24T03:55:14.7271846Z ] 2025-07-24T03:55:14.7274346Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithQuantRowOffset.cc(36): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.7277446Z with 2025-07-24T03:55:14.7277781Z [ 2025-07-24T03:55:14.7278077Z T=uint8_t, 2025-07-24T03:55:14.7278432Z accT=int32_t 2025-07-24T03:55:14.7278789Z ] 2025-07-24T03:55:14.7280896Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.7282889Z with 2025-07-24T03:55:14.7283210Z [ 2025-07-24T03:55:14.7283517Z T=uint8_t, 2025-07-24T03:55:14.7283885Z accT=int32_t 2025-07-24T03:55:14.7284267Z ] 2025-07-24T03:55:14.8184844Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8187667Z [1294/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithRowOffset.cc.obj 2025-07-24T03:55:14.8191446Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8193774Z with 2025-07-24T03:55:14.8194023Z [ 2025-07-24T03:55:14.8194231Z T=uint8_t, 2025-07-24T03:55:14.8194558Z accT=int32_t, 2025-07-24T03:55:14.8194968Z inpType=uint8_t 2025-07-24T03:55:14.8195498Z ] 2025-07-24T03:55:14.8197076Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.8198818Z with 2025-07-24T03:55:14.8199159Z [ 2025-07-24T03:55:14.8199493Z T=uint8_t, 2025-07-24T03:55:14.8199880Z accT=int32_t 2025-07-24T03:55:14.8200269Z ] 2025-07-24T03:55:14.8202889Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8205413Z with 2025-07-24T03:55:14.8205717Z [ 2025-07-24T03:55:14.8206026Z T=uint8_t, 2025-07-24T03:55:14.8206393Z accT=int32_t 2025-07-24T03:55:14.8206776Z ] 2025-07-24T03:55:14.8208672Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.8210437Z with 2025-07-24T03:55:14.8210771Z [ 2025-07-24T03:55:14.8211066Z T=uint8_t, 2025-07-24T03:55:14.8211460Z accT=int32_t 2025-07-24T03:55:14.8211836Z ] 2025-07-24T03:55:14.8214371Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8217060Z with 2025-07-24T03:55:14.8217376Z [ 2025-07-24T03:55:14.8217695Z T=uint8_t, 2025-07-24T03:55:14.8218068Z accT=int16_t, 2025-07-24T03:55:14.8218499Z inpType=uint8_t 2025-07-24T03:55:14.8218890Z ] 2025-07-24T03:55:14.8220431Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.8222110Z with 2025-07-24T03:55:14.8222428Z [ 2025-07-24T03:55:14.8222732Z T=uint8_t, 2025-07-24T03:55:14.8223116Z accT=int16_t 2025-07-24T03:55:14.8223498Z ] 2025-07-24T03:55:14.8225886Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8228687Z with 2025-07-24T03:55:14.8229169Z [ 2025-07-24T03:55:14.8229489Z T=uint8_t, 2025-07-24T03:55:14.8229858Z accT=int16_t 2025-07-24T03:55:14.8230237Z ] 2025-07-24T03:55:14.8231826Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.8233556Z with 2025-07-24T03:55:14.8233871Z [ 2025-07-24T03:55:14.8234173Z T=uint8_t, 2025-07-24T03:55:14.8234536Z accT=int16_t 2025-07-24T03:55:14.8234905Z ] 2025-07-24T03:55:14.8237520Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithRowOffset.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8240165Z with 2025-07-24T03:55:14.8240492Z [ 2025-07-24T03:55:14.8240804Z T=uint8_t, 2025-07-24T03:55:14.8241183Z accT=int32_t, 2025-07-24T03:55:14.8241599Z inpType=uint8_t 2025-07-24T03:55:14.8241992Z ] 2025-07-24T03:55:14.8243525Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.8245232Z with 2025-07-24T03:55:14.8245545Z [ 2025-07-24T03:55:14.8245863Z T=uint8_t, 2025-07-24T03:55:14.8246233Z accT=int32_t 2025-07-24T03:55:14.8246623Z ] 2025-07-24T03:55:14.8249061Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithRowOffset.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8251659Z with 2025-07-24T03:55:14.8251985Z [ 2025-07-24T03:55:14.8252286Z T=uint8_t, 2025-07-24T03:55:14.8252647Z accT=int32_t 2025-07-24T03:55:14.8253019Z ] 2025-07-24T03:55:14.8254621Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.8256457Z with 2025-07-24T03:55:14.8256781Z [ 2025-07-24T03:55:14.8257088Z T=uint8_t, 2025-07-24T03:55:14.8257462Z accT=int32_t 2025-07-24T03:55:14.8257866Z ] 2025-07-24T03:55:14.8260358Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithRowOffset.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8263005Z with 2025-07-24T03:55:14.8263321Z [ 2025-07-24T03:55:14.8263636Z T=uint8_t, 2025-07-24T03:55:14.8264019Z accT=int16_t, 2025-07-24T03:55:14.8264434Z inpType=uint8_t 2025-07-24T03:55:14.8264819Z ] 2025-07-24T03:55:14.8266350Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.8268037Z with 2025-07-24T03:55:14.8268356Z [ 2025-07-24T03:55:14.8268890Z T=uint8_t, 2025-07-24T03:55:14.8269256Z accT=int16_t 2025-07-24T03:55:14.8269634Z ] 2025-07-24T03:55:14.8272198Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithRowOffset.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8274790Z with 2025-07-24T03:55:14.8275204Z [ 2025-07-24T03:55:14.8275517Z T=uint8_t, 2025-07-24T03:55:14.8275902Z accT=int16_t 2025-07-24T03:55:14.8276271Z ] 2025-07-24T03:55:14.8277857Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.8279579Z with 2025-07-24T03:55:14.8279908Z [ 2025-07-24T03:55:14.8280224Z T=uint8_t, 2025-07-24T03:55:14.8280585Z accT=int16_t 2025-07-24T03:55:14.8280967Z ] 2025-07-24T03:55:14.8283204Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8424220Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8427807Z [1295/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackBMatrix.cc.obj 2025-07-24T03:55:14.8431025Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8433839Z with 2025-07-24T03:55:14.8434174Z [ 2025-07-24T03:55:14.8434489Z T=int8_t, 2025-07-24T03:55:14.8434849Z accT=int32_t, 2025-07-24T03:55:14.8435357Z inpType=int8_t 2025-07-24T03:55:14.8435779Z ] 2025-07-24T03:55:14.8437190Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.8438427Z with 2025-07-24T03:55:14.8438611Z [ 2025-07-24T03:55:14.8438773Z T=int8_t, 2025-07-24T03:55:14.8438981Z accT=int32_t 2025-07-24T03:55:14.8439216Z ] 2025-07-24T03:55:14.8440439Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8441977Z with 2025-07-24T03:55:14.8442243Z [ 2025-07-24T03:55:14.8442454Z T=int8_t, 2025-07-24T03:55:14.8442709Z accT=int32_t 2025-07-24T03:55:14.8442952Z ] 2025-07-24T03:55:14.8443726Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.8445445Z with 2025-07-24T03:55:14.8445790Z [ 2025-07-24T03:55:14.8446112Z T=int8_t, 2025-07-24T03:55:14.8446488Z accT=int32_t 2025-07-24T03:55:14.8447011Z ] 2025-07-24T03:55:14.8449926Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8452783Z with 2025-07-24T03:55:14.8454443Z [ 2025-07-24T03:55:14.8467552Z T=int8_t, 2025-07-24T03:55:14.8468573Z accT=int16_t, 2025-07-24T03:55:14.8468935Z inpType=int8_t 2025-07-24T03:55:14.8469459Z ] 2025-07-24T03:55:14.8472297Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.8474170Z with 2025-07-24T03:55:14.8474484Z [ 2025-07-24T03:55:14.8474764Z T=int8_t, 2025-07-24T03:55:14.8475196Z accT=int16_t 2025-07-24T03:55:14.8475569Z ] 2025-07-24T03:55:14.8477714Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8480097Z with 2025-07-24T03:55:14.8480387Z [ 2025-07-24T03:55:14.8480672Z T=int8_t, 2025-07-24T03:55:14.8481018Z accT=int16_t 2025-07-24T03:55:14.8481378Z ] 2025-07-24T03:55:14.8482927Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.8486372Z with 2025-07-24T03:55:14.8486688Z [ 2025-07-24T03:55:14.8487003Z T=int8_t, 2025-07-24T03:55:14.8487367Z accT=int16_t 2025-07-24T03:55:14.8487762Z ] 2025-07-24T03:55:14.8490037Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackBMatrix.cc(182): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8491988Z with 2025-07-24T03:55:14.8492215Z [ 2025-07-24T03:55:14.8492523Z T=int8_t, 2025-07-24T03:55:14.8492896Z accT=int32_t, 2025-07-24T03:55:14.8493298Z inpType=int8_t 2025-07-24T03:55:14.8493621Z ] 2025-07-24T03:55:14.8494823Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.8496162Z with 2025-07-24T03:55:14.8496357Z [ 2025-07-24T03:55:14.8496535Z T=int8_t, 2025-07-24T03:55:14.8496867Z accT=int32_t 2025-07-24T03:55:14.8497130Z ] 2025-07-24T03:55:14.8498553Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackBMatrix.cc(182): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8500182Z with 2025-07-24T03:55:14.8500440Z [ 2025-07-24T03:55:14.8500749Z T=int8_t, 2025-07-24T03:55:14.8501132Z accT=int32_t 2025-07-24T03:55:14.8501529Z ] 2025-07-24T03:55:14.8503079Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.8505129Z with 2025-07-24T03:55:14.8505470Z [ 2025-07-24T03:55:14.8505771Z T=int8_t, 2025-07-24T03:55:14.8506366Z accT=int32_t 2025-07-24T03:55:14.8506738Z ] 2025-07-24T03:55:14.8509184Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackBMatrix.cc(182): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8510832Z with 2025-07-24T03:55:14.8511145Z [ 2025-07-24T03:55:14.8511354Z T=int8_t, 2025-07-24T03:55:14.8511621Z accT=int16_t, 2025-07-24T03:55:14.8511861Z inpType=int8_t 2025-07-24T03:55:14.8512165Z ] 2025-07-24T03:55:14.8513167Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.8514217Z with 2025-07-24T03:55:14.8514605Z [ 2025-07-24T03:55:14.8514817Z T=int8_t, 2025-07-24T03:55:14.8515031Z accT=int16_t 2025-07-24T03:55:14.8515345Z ] 2025-07-24T03:55:14.8516814Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackBMatrix.cc(182): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.8519433Z with 2025-07-24T03:55:14.8519643Z [ 2025-07-24T03:55:14.8519826Z T=int8_t, 2025-07-24T03:55:14.8520031Z accT=int16_t 2025-07-24T03:55:14.8520240Z ] 2025-07-24T03:55:14.8521099Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.8522396Z with 2025-07-24T03:55:14.8522877Z [ 2025-07-24T03:55:14.8523217Z T=int8_t, 2025-07-24T03:55:14.8523641Z accT=int16_t 2025-07-24T03:55:14.8524038Z ] 2025-07-24T03:55:14.8634156Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,short>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8638291Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8641273Z [1296/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackMatrix.cc.obj 2025-07-24T03:55:14.8644966Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,short>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8648978Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8653736Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8658183Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8662906Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8667682Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8672992Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8677904Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8682953Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8687743Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8694610Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.8698924Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.9657564Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:14.9659536Z [1297/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightsForConv.cc.obj 2025-07-24T03:55:14.9661712Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.9663109Z with 2025-07-24T03:55:14.9663629Z [ 2025-07-24T03:55:14.9664120Z T=int8_t, 2025-07-24T03:55:14.9664468Z accT=int32_t, 2025-07-24T03:55:14.9678916Z inpType=int8_t 2025-07-24T03:55:14.9679322Z ] 2025-07-24T03:55:14.9680166Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-24T03:55:14.9681257Z with 2025-07-24T03:55:14.9681446Z [ 2025-07-24T03:55:14.9681634Z T=int8_t, 2025-07-24T03:55:14.9681849Z accT=int32_t 2025-07-24T03:55:14.9682317Z ] 2025-07-24T03:55:14.9684107Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-24T03:55:14.9685701Z with 2025-07-24T03:55:14.9685894Z [ 2025-07-24T03:55:14.9686064Z T=int8_t, 2025-07-24T03:55:14.9686278Z accT=int32_t 2025-07-24T03:55:14.9686671Z ] 2025-07-24T03:55:14.9687657Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-24T03:55:14.9688949Z with 2025-07-24T03:55:14.9689134Z [ 2025-07-24T03:55:14.9689360Z T=int8_t, 2025-07-24T03:55:14.9689566Z accT=int32_t 2025-07-24T03:55:14.9689846Z ] 2025-07-24T03:55:15.0049458Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-24T03:55:15.0051259Z [1298/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\QuantUtils.cc.obj 2025-07-24T03:55:15.0154510Z [1299/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightMatrixForGConv.cc.obj 2025-07-24T03:55:15.1146564Z [1300/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\TransposeUtils.cc.obj 2025-07-24T03:55:15.1812530Z [1301/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\RowWiseSparseAdagradFused.cc.obj 2025-07-24T03:55:15.1986707Z [1302/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightsForDirectConv.cc.obj 2025-07-24T03:55:15.2460745Z [1303/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\spmmUtils.cc.obj 2025-07-24T03:55:15.3384645Z [1304/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\RefImplementations.cc.obj 2025-07-24T03:55:15.3454557Z [1305/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\SparseAdagrad.cc.obj 2025-07-24T03:55:15.3510573Z [1306/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\Utils.cc.obj 2025-07-24T03:55:15.3866180Z [1307/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\EmbeddingSpMDMAvx2.cc.obj 2025-07-24T03:55:15.4413038Z [1308/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmBfloat16ConvertAvx2.cc.obj 2025-07-24T03:55:15.4671531Z [1309/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmFloat16ConvertAvx2.cc.obj 2025-07-24T03:55:15.4792342Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\FbgemmFloat16ConvertAvx2.cc(23): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T03:55:15.4794090Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\FbgemmFloat16ConvertAvx2.cc(39): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T03:55:15.4795532Z [1310/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateI8Depthwise.cc.obj 2025-07-24T03:55:15.5166553Z [1311/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8Depthwise3DAvx2.cc.obj 2025-07-24T03:55:15.5563717Z [1312/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\OptimizedKernelsAvx2.cc.obj 2025-07-24T03:55:15.6204197Z [1313/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8DepthwisePerChannelQuantAvx2.cc.obj 2025-07-24T03:55:15.6279375Z [1314/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8DepthwiseAvx2.cc.obj 2025-07-24T03:55:15.6352625Z [1315/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmSparseDenseAvx2.cc.obj 2025-07-24T03:55:15.6691430Z [1316/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\UtilsAvx2.cc.obj 2025-07-24T03:55:15.6920008Z [1317/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\PackDepthwiseConvMatrixAvx2.cc.obj 2025-07-24T03:55:15.6989896Z [1318/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmSparseDenseInt8Avx2.cc.obj 2025-07-24T03:55:15.7566236Z [1319/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\spmmUtilsAvx2.cc.obj 2025-07-24T03:55:15.7825980Z [1320/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\QuantUtilsAvx2.cc.obj 2025-07-24T03:55:15.7827752Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(1556): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T03:55:15.7830214Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(1906): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T03:55:15.7832763Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(1906): note: the template instantiation context (the oldest one first) is 2025-07-24T03:55:15.7836175Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2202): note: see reference to function template instantiation 'void fbgemm::FusedNBitRowwiseQuantizedSBHalfToFloatOrHalfAvx2(const uint8_t *,size_t,int,float *)' being compiled 2025-07-24T03:55:15.7841329Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2142): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T03:55:15.8780009Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2142): note: the template instantiation context (the oldest one first) is 2025-07-24T03:55:15.8783370Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2224): note: see reference to function template instantiation 'void fbgemm::Fused8BitRowwiseQuantizedSBFloatToFloatOrHalfAvx2(const uint8_t *,size_t,int,float *)' being compiled 2025-07-24T03:55:15.8786414Z [1321/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\EmbeddingSpMDMAvx512.cc.obj 2025-07-24T03:55:15.9053342Z [1322/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmBfloat16ConvertAvx512.cc.obj 2025-07-24T03:55:15.9379440Z [1323/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFloat16ConvertAvx512.cc.obj 2025-07-24T03:55:15.9810215Z [1324/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseAvx512.cc.obj 2025-07-24T03:55:15.9935815Z [1325/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\UtilsAvx512.cc.obj 2025-07-24T03:55:16.0274965Z [1326/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseInt8Avx512.cc.obj 2025-07-24T03:55:16.0438141Z [1327/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmFP16UKernelsIntrinsicAvx2.cc.obj 2025-07-24T03:55:16.0477446Z [1328/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_autovec.dir\src\EmbeddingSpMDMAutovec.cc.obj 2025-07-24T03:55:16.0592560Z [1329/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\QuantUtilsAvx512.cc.obj 2025-07-24T03:55:16.0757421Z [1330/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseVectorInt8Avx512.cc.obj 2025-07-24T03:55:16.2035022Z [1331/7681] Linking CXX shared library bin\asmjit.dll 2025-07-24T03:55:16.2982905Z [1332/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFP16UKernelsIntrinsicAvx512.cc.obj 2025-07-24T03:55:16.3397999Z [1333/7681] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFP16UKernelsIntrinsicAvx512_256.cc.obj 2025-07-24T03:55:16.3509378Z [1334/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\algorithm.cc.obj 2025-07-24T03:55:16.3677438Z [1335/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgather.cc.obj 2025-07-24T03:55:16.3920629Z [1336/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgatherv.cc.obj 2025-07-24T03:55:16.5987402Z [1337/7681] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\jitprofiling.c.obj 2025-07-24T03:55:16.6096743Z [1338/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce.cc.obj 2025-07-24T03:55:16.6160917Z [1339/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce_local.cc.obj 2025-07-24T03:55:16.6543442Z [1340/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoall.cc.obj 2025-07-24T03:55:16.6804366Z [1341/7681] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\ittnotify_static.c.obj 2025-07-24T03:55:16.6994458Z [1342/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoallv.cc.obj 2025-07-24T03:55:16.7069125Z [1343/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\barrier.cc.obj 2025-07-24T03:55:16.7344215Z [1344/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\broadcast.cc.obj 2025-07-24T03:55:16.9184279Z [1345/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\context.cc.obj 2025-07-24T03:55:16.9265775Z [1346/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gather.cc.obj 2025-07-24T03:55:16.9531725Z [1347/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gatherv.cc.obj 2025-07-24T03:55:17.0300644Z [1348/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\reduce.cc.obj 2025-07-24T03:55:17.0374445Z [1349/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\scatter.cc.obj 2025-07-24T03:55:17.0392679Z [1350/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\types.cc.obj 2025-07-24T03:55:17.0452795Z [1351/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\logging.cc.obj 2025-07-24T03:55:17.1132258Z [1352/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\store.cc.obj 2025-07-24T03:55:17.1881798Z [1353/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\context.cc.obj 2025-07-24T03:55:17.1962309Z [1354/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\buffer.cc.obj 2025-07-24T03:55:17.2257179Z [1355/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\address.cc.obj 2025-07-24T03:55:17.2544634Z [1356/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\file_store.cc.obj 2025-07-24T03:55:17.2623459Z [1357/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\utils.cc.obj 2025-07-24T03:55:17.3316278Z [1358/7681] Linking CXX static library lib\onnx_proto.lib 2025-07-24T03:55:17.3386309Z [1359/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\prefix_store.cc.obj 2025-07-24T03:55:17.3724352Z [1360/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\hash_store.cc.obj 2025-07-24T03:55:17.4507790Z [1361/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\unbound_buffer.cc.obj 2025-07-24T03:55:17.4724559Z [1362/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\device.cc.obj 2025-07-24T03:55:17.4833179Z [1363/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\pair.cc.obj 2025-07-24T03:55:17.5053056Z [1364/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\context.cc.obj 2025-07-24T03:55:17.5117032Z [1365/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\assertions.cc.obj 2025-07-24T03:55:17.5563045Z [1366/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\win.cc.obj 2025-07-24T03:55:17.6366364Z [1367/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\interned_strings.cc.obj 2025-07-24T03:55:17.8223014Z [1368/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\status.cc.obj 2025-07-24T03:55:17.9353521Z [1369/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\model_helpers.cc.obj 2025-07-24T03:55:18.0057795Z [1370/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\ir_pb_converter.cc.obj 2025-07-24T03:55:18.0194252Z [1371/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\attr_proto_util.cc.obj 2025-07-24T03:55:18.0496457Z [1372/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\defs.cc.obj 2025-07-24T03:55:18.1323546Z [1373/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\old.cc.obj 2025-07-24T03:55:18.2880248Z [1374/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\checker.cc.obj 2025-07-24T03:55:18.3351284Z [1375/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\path.cc.obj 2025-07-24T03:55:18.3458643Z [1376/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\utils.cc.obj 2025-07-24T03:55:18.3992414Z [1377/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\data_type_utils.cc.obj 2025-07-24T03:55:18.5266526Z [1378/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\function.cc.obj 2025-07-24T03:55:18.5460280Z [1379/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\old.cc.obj 2025-07-24T03:55:18.5835566Z [1380/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\defs.cc.obj 2025-07-24T03:55:18.7038437Z [1381/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\utils.cc.obj 2025-07-24T03:55:18.8225084Z [1382/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\image\defs.cc.obj 2025-07-24T03:55:18.8414960Z [1383/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\old.cc.obj 2025-07-24T03:55:18.8514261Z [1384/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\defs.cc.obj 2025-07-24T03:55:18.9190692Z [1385/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\defs.cc.obj 2025-07-24T03:55:19.0167418Z [1386/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\utils.cc.obj 2025-07-24T03:55:19.0193440Z [1387/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\old.cc.obj 2025-07-24T03:55:19.1130138Z [1388/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\defs.cc.obj 2025-07-24T03:55:19.2413727Z [1389/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\old.cc.obj 2025-07-24T03:55:19.3194244Z [1390/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\old.cc.obj 2025-07-24T03:55:19.3267000Z [1391/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\defs.cc.obj 2025-07-24T03:55:19.3797175Z [1392/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\defs.cc.obj 2025-07-24T03:55:19.4208270Z [1393/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\old.cc.obj 2025-07-24T03:55:19.5041645Z [1394/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\parser.cc.obj 2025-07-24T03:55:19.5291590Z [1395/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\printer.cc.obj 2025-07-24T03:55:19.5943071Z [1396/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\defs.cc.obj 2025-07-24T03:55:19.7632872Z [1397/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\old.cc.obj 2025-07-24T03:55:19.8391716Z [1398/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\defs.cc.obj 2025-07-24T03:55:19.8621509Z [1399/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\old.cc.obj 2025-07-24T03:55:19.9163378Z [1400/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\utils.cc.obj 2025-07-24T03:55:19.9304989Z [1401/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\defs.cc.obj 2025-07-24T03:55:20.0531188Z [1402/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\old.cc.obj 2025-07-24T03:55:20.0657564Z [1403/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\schema.cc.obj 2025-07-24T03:55:20.1187402Z [1404/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\sequence\defs.cc.obj 2025-07-24T03:55:20.2778664Z [1405/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\shape_inference.cc.obj 2025-07-24T03:55:20.3733906Z [1406/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\old.cc.obj 2025-07-24T03:55:20.4046214Z [1407/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_proto_util.cc.obj 2025-07-24T03:55:20.4403389Z [1408/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\defs.cc.obj 2025-07-24T03:55:20.4501800Z [1409/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\utils.cc.obj 2025-07-24T03:55:20.5188126Z [1410/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_util.cc.obj 2025-07-24T03:55:20.5678344Z [1411/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\text\defs.cc.obj 2025-07-24T03:55:20.5702139Z [1412/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\defs.cc.obj 2025-07-24T03:55:20.6026654Z [1413/7681] Building RC object third_party\ideep\mkl-dnn\src\CMakeFiles\dnnl.dir\version.rc.res 2025-07-24T03:55:20.7490987Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-07-24T03:55:20.7491933Z 2025-07-24T03:55:20.7491974Z 2025-07-24T03:55:20.7492374Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-24T03:55:20.7493173Z 2025-07-24T03:55:20.7493186Z 2025-07-24T03:55:20.7493193Z 2025-07-24T03:55:20.7493200Z 2025-07-24T03:55:20.7493830Z [1414/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\old.cc.obj 2025-07-24T03:55:20.8385046Z [1415/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\bfloat16.cpp.obj 2025-07-24T03:55:20.8826365Z [1416/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\training\defs.cc.obj 2025-07-24T03:55:20.9970433Z [1417/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\helper.cc.obj 2025-07-24T03:55:21.0213421Z [1418/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\inliner\inliner.cc.obj 2025-07-24T03:55:21.0297184Z [1419/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\convert.cc.obj 2025-07-24T03:55:21.1957215Z [1420/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\batch_normalization.cpp.obj 2025-07-24T03:55:21.3456833Z [1421/7681] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\shape_inference\implementation.cc.obj 2025-07-24T03:55:21.3850396Z [1422/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\binary.cpp.obj 2025-07-24T03:55:21.4511748Z [1423/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\broadcast_strategy.cpp.obj 2025-07-24T03:55:21.5269905Z [1424/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_threadpool.cpp.obj 2025-07-24T03:55:21.5327063Z [1425/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug_autogenerated.cpp.obj 2025-07-24T03:55:21.5686123Z [1426/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\cache_blob_id.cpp.obj 2025-07-24T03:55:21.6635207Z [1427/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\concat.cpp.obj 2025-07-24T03:55:21.6762288Z [1428/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution_pd.cpp.obj 2025-07-24T03:55:21.6854073Z [1429/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution.cpp.obj 2025-07-24T03:55:21.8556100Z [1430/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\experimental.cpp.obj 2025-07-24T03:55:21.9101923Z [1431/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\deconvolution.cpp.obj 2025-07-24T03:55:21.9570737Z [1432/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug.cpp.obj 2025-07-24T03:55:21.9692764Z [1433/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float4.cpp.obj 2025-07-24T03:55:21.9950921Z [1434/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float8.cpp.obj 2025-07-24T03:55:22.0594672Z [1435/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\fpmath_mode.cpp.obj 2025-07-24T03:55:22.1747929Z [1436/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\eltwise.cpp.obj 2025-07-24T03:55:22.2722601Z [1437/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify.cpp.obj 2025-07-24T03:55:22.3176652Z [1438/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\engine.cpp.obj 2025-07-24T03:55:22.5464138Z [1439/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\group_normalization.cpp.obj 2025-07-24T03:55:22.5558038Z [1440/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\gemm.cpp.obj 2025-07-24T03:55:22.5706945Z [1441/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\inner_product.cpp.obj 2025-07-24T03:55:22.6098509Z [1442/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\kernel_cache.cpp.obj 2025-07-24T03:55:22.7114935Z [1443/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\layer_normalization.cpp.obj 2025-07-24T03:55:22.8131430Z [1444/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\lrn.cpp.obj 2025-07-24T03:55:22.8955208Z [1445/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\matmul.cpp.obj 2025-07-24T03:55:22.9466699Z [1446/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory.cpp.obj 2025-07-24T03:55:23.1341789Z [1447/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_debug.cpp.obj 2025-07-24T03:55:23.2266023Z [1448/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc.cpp.obj 2025-07-24T03:55:23.2991301Z [1449/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc_wrapper.cpp.obj 2025-07-24T03:55:23.3379554Z [1450/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_storage.cpp.obj 2025-07-24T03:55:23.3865387Z [1451/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_tracking.cpp.obj 2025-07-24T03:55:23.5054977Z [1452/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_zero_pad.cpp.obj 2025-07-24T03:55:23.5081457Z [1453/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\pooling.cpp.obj 2025-07-24T03:55:23.5939480Z [1454/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\prelu.cpp.obj 2025-07-24T03:55:23.8016377Z [1455/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_attr.cpp.obj 2025-07-24T03:55:23.8402734Z [1456/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive.cpp.obj 2025-07-24T03:55:23.9958988Z [1457/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_desc_iface.cpp.obj 2025-07-24T03:55:24.0997980Z [1458/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_cache.cpp.obj 2025-07-24T03:55:24.1714778Z [1459/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_exec_types.cpp.obj 2025-07-24T03:55:24.2448999Z [1460/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_hashing.cpp.obj 2025-07-24T03:55:24.3343897Z [1461/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_iface.cpp.obj 2025-07-24T03:55:24.3790167Z [1462/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\query.cpp.obj 2025-07-24T03:55:24.4537637Z [1463/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reduction.cpp.obj 2025-07-24T03:55:24.5380399Z [1464/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reorder.cpp.obj 2025-07-24T03:55:24.5648638Z [1465/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\resampling.cpp.obj 2025-07-24T03:55:24.6903441Z [1466/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rw_mutex.cpp.obj 2025-07-24T03:55:24.7686133Z [1467/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rnn.cpp.obj 2025-07-24T03:55:24.8994055Z [1468/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad.cpp.obj 2025-07-24T03:55:25.0039486Z [1469/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad_debug.cpp.obj 2025-07-24T03:55:25.0452098Z [1470/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\serialization.cpp.obj 2025-07-24T03:55:25.1221910Z [1471/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\shuffle.cpp.obj 2025-07-24T03:55:25.1832346Z [1472/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\softmax.cpp.obj 2025-07-24T03:55:25.1986963Z [1473/7681] Building ASM_MASM object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittptmark64.asm.obj 2025-07-24T03:55:25.2451976Z Microsoft (R) Macro Assembler (x64) Version 14.38.33145.0 2025-07-24T03:55:25.2452501Z 2025-07-24T03:55:25.2452828Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-24T03:55:25.2453329Z 2025-07-24T03:55:25.2453337Z 2025-07-24T03:55:25.2453378Z 2025-07-24T03:55:25.2454098Z Assembling: C:\actions-runner\_work\pytorch\pytorch\third_party\ideep\mkl-dnn\src\common\ittnotify\ittptmark64.asm 2025-07-24T03:55:25.2455862Z 2025-07-24T03:55:25.2456682Z [1474/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream.cpp.obj 2025-07-24T03:55:25.3583987Z [1475/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream_profiler.cpp.obj 2025-07-24T03:55:25.4432640Z [1476/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\sum.cpp.obj 2025-07-24T03:55:25.4809047Z [1477/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\utils.cpp.obj 2025-07-24T03:55:25.5408106Z [1478/7681] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittnotify_static.c.obj 2025-07-24T03:55:25.5608414Z [1479/7681] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\jitprofiling.c.obj 2025-07-24T03:55:25.7445045Z [1480/7681] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\verbose.cpp.obj 2025-07-24T03:55:25.8781285Z [1481/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\bfloat16.cpp.obj 2025-07-24T03:55:25.9384108Z [1482/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\binary_injector_utils.cpp.obj 2025-07-24T03:55:26.1529885Z [1483/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_utils.cpp.obj 2025-07-24T03:55:26.2192250Z [1484/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_list.cpp.obj 2025-07-24T03:55:26.2541708Z [1485/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_concat.cpp.obj 2025-07-24T03:55:26.3113344Z [1486/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_binary_list.cpp.obj 2025-07-24T03:55:26.5071048Z [1487/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_convolution_list.cpp.obj 2025-07-24T03:55:26.6339827Z [1488/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_deconvolution_list.cpp.obj 2025-07-24T03:55:26.6695891Z [1489/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_engine.cpp.obj 2025-07-24T03:55:26.7587737Z [1490/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_eltwise_list.cpp.obj 2025-07-24T03:55:26.9340667Z [1491/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_group_normalization_list.cpp.obj 2025-07-24T03:55:27.0604784Z [1492/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_inner_product_list.cpp.obj 2025-07-24T03:55:27.1684477Z [1493/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_layer_normalization_list.cpp.obj 2025-07-24T03:55:27.1957049Z [1494/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_lrn_list.cpp.obj 2025-07-24T03:55:27.3410464Z [1495/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_pooling_list.cpp.obj 2025-07-24T03:55:27.3439315Z [1496/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_prelu_list.cpp.obj 2025-07-24T03:55:27.4465717Z [1497/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_reduction_list.cpp.obj 2025-07-24T03:55:27.5163568Z [1498/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_resampling_list.cpp.obj 2025-07-24T03:55:27.7377660Z [1499/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_rnn_list.cpp.obj 2025-07-24T03:55:27.8088872Z [1500/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_shuffle_list.cpp.obj 2025-07-24T03:55:27.9760122Z [1501/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_softmax_list.cpp.obj 2025-07-24T03:55:28.0350786Z [1502/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_sum.cpp.obj 2025-07-24T03:55:28.1421109Z [1503/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\float16.cpp.obj 2025-07-24T03:55:28.2185596Z [1504/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution.cpp.obj 2025-07-24T03:55:28.2357314Z [1505/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution_utils.cpp.obj 2025-07-24T03:55:28.2897945Z [1506/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product.cpp.obj 2025-07-24T03:55:28.5564990Z [1507/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product_utils.cpp.obj 2025-07-24T03:55:28.5894064Z [1508/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.obj 2025-07-24T03:55:28.7434057Z [1509/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution.cpp.obj 2025-07-24T03:55:28.8198289Z [1510/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution_utils.cpp.obj 2025-07-24T03:55:28.9135596Z [1511/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_inner_product.cpp.obj 2025-07-24T03:55:28.9695820Z [1512/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_batch_normalization.cpp.obj 2025-07-24T03:55:29.0187711Z [1513/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nchw_pooling.cpp.obj 2025-07-24T03:55:29.0276153Z [1514/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_group_normalization.cpp.obj 2025-07-24T03:55:29.3742589Z [1515/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nspc_batch_normalization.cpp.obj 2025-07-24T03:55:29.3813958Z [1516/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nhwc_pooling.cpp.obj 2025-07-24T03:55:29.4412326Z [1517/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\platform.cpp.obj 2025-07-24T03:55:29.5340105Z [1518/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\primitive_attr_postops.cpp.obj 2025-07-24T03:55:29.6597092Z [1519/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_batch_normalization.cpp.obj 2025-07-24T03:55:29.7010560Z [1520/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_binary.cpp.obj 2025-07-24T03:55:29.7416864Z [1521/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution_int8.cpp.obj 2025-07-24T03:55:29.7886962Z [1522/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution.cpp.obj 2025-07-24T03:55:30.1169985Z [1523/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_deconvolution.cpp.obj 2025-07-24T03:55:30.1774575Z [1524/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_group_normalization.cpp.obj 2025-07-24T03:55:30.1886481Z [1525/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_eltwise.cpp.obj 2025-07-24T03:55:30.2787174Z [1526/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product.cpp.obj 2025-07-24T03:55:30.4354395Z [1527/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_layer_normalization.cpp.obj 2025-07-24T03:55:30.4378934Z [1528/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product_int8.cpp.obj 2025-07-24T03:55:30.5046656Z [1529/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_lrn.cpp.obj 2025-07-24T03:55:30.5360923Z [1530/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_pooling.cpp.obj 2025-07-24T03:55:30.8550809Z [1531/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_reduction.cpp.obj 2025-07-24T03:55:30.8728459Z [1532/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_resampling.cpp.obj 2025-07-24T03:55:30.9122939Z [1533/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_prelu.cpp.obj 2025-07-24T03:55:30.9590988Z [1534/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_shuffle.cpp.obj 2025-07-24T03:55:31.0865642Z [1535/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\scale_utils.cpp.obj 2025-07-24T03:55:31.2314716Z [1536/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_concat.cpp.obj 2025-07-24T03:55:31.2429540Z [1537/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_softmax.cpp.obj 2025-07-24T03:55:31.2560059Z [1538/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_layer_normalization.cpp.obj 2025-07-24T03:55:31.3119713Z [1539/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\bf16\ref_gemm_bf16.cpp.obj 2025-07-24T03:55:31.4252823Z [1540/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\gemm_utils_f32.cpp.obj 2025-07-24T03:55:31.5309755Z [1541/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\zero_point_utils.cpp.obj 2025-07-24T03:55:31.5898167Z [1542/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_resampling.cpp.obj 2025-07-24T03:55:31.6044968Z [1543/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\ref_gemm_f32.cpp.obj 2025-07-24T03:55:31.6539808Z [1544/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_sum.cpp.obj 2025-07-24T03:55:31.9540321Z [1545/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm.cpp.obj 2025-07-24T03:55:31.9620793Z [1546/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\ref_gemm_s8x8s32.cpp.obj 2025-07-24T03:55:32.0151019Z [1547/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm_pack.cpp.obj 2025-07-24T03:55:32.0933366Z [1548/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\simple_gemm_s8s8s32.cpp.obj 2025-07-24T03:55:32.3439019Z [1549/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\cpu_matmul_list.cpp.obj 2025-07-24T03:55:32.3631834Z [1550/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_bf16_matmul.cpp.obj 2025-07-24T03:55:32.4527803Z [1551/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_x8s8s32x_matmul.cpp.obj 2025-07-24T03:55:32.4552690Z [1552/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_f32_matmul.cpp.obj 2025-07-24T03:55:32.7263034Z [1553/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul_int8.cpp.obj 2025-07-24T03:55:32.7282479Z [1554/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul.cpp.obj 2025-07-24T03:55:32.7607430Z [1555/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_sparse_matmul.cpp.obj 2025-07-24T03:55:32.9239729Z [1556/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder.cpp.obj 2025-07-24T03:55:33.1358514Z [1557/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_bf16_s8.cpp.obj 2025-07-24T03:55:33.2550674Z [1558/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_f32_s8.cpp.obj 2025-07-24T03:55:33.2767124Z [1559/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_bf16.cpp.obj 2025-07-24T03:55:33.3118764Z [1560/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_s8_s8.cpp.obj 2025-07-24T03:55:33.5508831Z [1561/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f16.cpp.obj 2025-07-24T03:55:33.6023134Z [1562/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_bf16.cpp.obj 2025-07-24T03:55:33.8451566Z [1563/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f32.cpp.obj 2025-07-24T03:55:33.8579661Z [1564/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f16.cpp.obj 2025-07-24T03:55:33.9637437Z [1565/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_fp8.cpp.obj 2025-07-24T03:55:34.0989175Z [1566/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s8.cpp.obj 2025-07-24T03:55:34.1105884Z [1567/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s32.cpp.obj 2025-07-24T03:55:34.1279654Z [1568/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_u8.cpp.obj 2025-07-24T03:55:34.4004433Z [1569/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp4.cpp.obj 2025-07-24T03:55:34.4844390Z [1570/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp8.cpp.obj 2025-07-24T03:55:34.6618098Z [1571/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s32.cpp.obj 2025-07-24T03:55:34.6820962Z [1572/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s4.cpp.obj 2025-07-24T03:55:34.8057719Z [1573/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s8.cpp.obj 2025-07-24T03:55:34.9312828Z [1574/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u8.cpp.obj 2025-07-24T03:55:34.9672477Z [1575/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u4.cpp.obj 2025-07-24T03:55:35.0189637Z [1576/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\brgemm_cell_common.cpp.obj 2025-07-24T03:55:35.2071947Z [1577/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_common.cpp.obj 2025-07-24T03:55:35.2937823Z [1578/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru.cpp.obj 2025-07-24T03:55:35.5126407Z [1579/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru_lbr.cpp.obj 2025-07-24T03:55:35.5191802Z [1580/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru.cpp.obj 2025-07-24T03:55:35.5975628Z [1581/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru_lbr.cpp.obj 2025-07-24T03:55:35.6072920Z [1582/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\linux_perf\linux_perf.cpp.obj 2025-07-24T03:55:35.7342806Z [1583/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm.cpp.obj 2025-07-24T03:55:35.7838620Z [1584/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm_projection.cpp.obj 2025-07-24T03:55:35.8175055Z [1585/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_rnn.cpp.obj 2025-07-24T03:55:36.1182203Z [1586/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_rnn.cpp.obj 2025-07-24T03:55:36.1309109Z [1587/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\rnn_utils.cpp.obj 2025-07-24T03:55:36.1332149Z [1588/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\jit_utils.cpp.obj 2025-07-24T03:55:36.2941671Z [1589/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\amx_tile_configure.cpp.obj 2025-07-24T03:55:36.3399277Z [1590/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm.cpp.obj 2025-07-24T03:55:36.4374413Z [1591/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_containers.cpp.obj 2025-07-24T03:55:36.4966903Z [1592/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_utils.cpp.obj 2025-07-24T03:55:36.5692503Z [1593/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\capi\brgemm_api.cpp.obj 2025-07-24T03:55:36.8653982Z [1594/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brdgmm_kernel.cpp.obj 2025-07-24T03:55:36.8891765Z [1595/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_kernel.cpp.obj 2025-07-24T03:55:36.9509860Z [1596/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_amx_uker.cpp.obj 2025-07-24T03:55:37.0162622Z [1597/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_isa_traits.cpp.obj 2025-07-24T03:55:37.0953467Z [1598/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_barrier.cpp.obj 2025-07-24T03:55:37.1617566Z [1599/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_reducer.cpp.obj 2025-07-24T03:55:37.3189851Z [1600/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\amx\jit_avx512_core_amx_copy_kern.cpp.obj 2025-07-24T03:55:37.3464064Z [1601/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\amx\jit_avx512_core_amx_gemm_kern.cpp.obj 2025-07-24T03:55:37.5498968Z [1602/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_gemm_bf16bf16f32_kern.cpp.obj 2025-07-24T03:55:37.5953728Z [1603/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_gemv_bf16bf16f32_kern.cpp.obj 2025-07-24T03:55:37.6705087Z [1604/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_24x8_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:37.7905633Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:37.7907170Z [1605/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_24x8_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:37.8309901Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:37.8311433Z [1606/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_24x8_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:37.9026116Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:37.9027627Z [1607/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_24x8_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:38.0340780Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:38.0341837Z [1608/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_48x8_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:38.0650011Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:38.0651100Z [1609/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_48x8_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:38.3089525Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:38.3090380Z [1610/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_48x8_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:38.3281635Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:38.3282470Z [1611/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_48x8_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:38.3656382Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:38.3657763Z [1612/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx2_f32_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:38.5090729Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:38.5091609Z [1613/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx2_f32_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:38.5198613Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:38.5199619Z [1614/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx2_f32_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:38.6042344Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:38.6043239Z [1615/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx2_f32_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:38.7552440Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:38.7553944Z [1616/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_common_gemm_f32.cpp.obj 2025-07-24T03:55:38.7902246Z [1617/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx2_kernel_sgemm_kern.cpp.obj 2025-07-24T03:55:39.0433973Z [1618/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_f32_copy_at_kern_part1_autogen.cpp.obj 2025-07-24T03:55:39.0982663Z [1619/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_f32_copy_at_kern_part2_autogen.cpp.obj 2025-07-24T03:55:39.1387594Z [1620/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_f32_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:39.1821174Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:39.1822895Z [1621/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_f32_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:39.2891845Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:39.2892792Z [1622/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_f32_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:39.3156196Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:39.3157597Z [1623/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_gemm_smalln_tn_f32_kern.cpp.obj 2025-07-24T03:55:39.4953928Z [1624/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_f32_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:39.5409068Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:39.5409917Z [1625/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_f32_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:39.7377454Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:39.7379930Z [1626/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_f32_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:39.8484507Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:39.8485999Z [1627/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_f32_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:39.9009029Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:39.9009813Z [1628/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_gemv_t_f32_kern.cpp.obj 2025-07-24T03:55:39.9108139Z [1629/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_gemm_f32.cpp.obj 2025-07-24T03:55:40.0224931Z [1630/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_kernel_b0_sgemm_kern_part1_autogen.cpp.obj 2025-07-24T03:55:40.0429139Z [1631/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_kernel_b0_sgemm_kern_part2_autogen.cpp.obj 2025-07-24T03:55:40.2115038Z [1632/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_kernel_sgemm_kern_part1_autogen.cpp.obj 2025-07-24T03:55:40.2968892Z [1633/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_kernel_sgemm_kern_part2_autogen.cpp.obj 2025-07-24T03:55:40.4332886Z [1634/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_f32_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:40.5604331Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:40.5605203Z [1635/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_f32_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:40.6032488Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:40.6033972Z [1636/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_f32_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:40.6365949Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:40.6367310Z [1637/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_f32_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:40.7586079Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:40.7587004Z [1638/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_gemv_n_f32_kern.cpp.obj 2025-07-24T03:55:40.7689353Z [1639/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_gemv_t_f32_kern.cpp.obj 2025-07-24T03:55:40.9389584Z [1640/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_kernel_b0_sgemm_kern_autogen.cpp.obj 2025-07-24T03:55:41.0157834Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:41.0159236Z [1641/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_kernel_sgemm_kern_autogen.cpp.obj 2025-07-24T03:55:41.1946193Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:41.1947757Z [1642/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_driver.cpp.obj 2025-07-24T03:55:41.3026057Z [1643/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_pack.cpp.obj 2025-07-24T03:55:41.4011950Z [1644/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemv_driver.cpp.obj 2025-07-24T03:55:41.4610386Z [1645/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:41.4872353Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:41.4873121Z [1646/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_info.cpp.obj 2025-07-24T03:55:41.5368379Z [1647/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_gemm_s8u8s32_kern.cpp.obj 2025-07-24T03:55:41.6322598Z [1648/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:41.6881000Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:41.6882304Z [1649/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:41.9481993Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:41.9483080Z [1650/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:41.9722640Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:41.9724166Z [1651/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_sum_an_kern_autogen.cpp.obj 2025-07-24T03:55:42.0343996Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:42.0345529Z [1652/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_sum_at_kern_autogen.cpp.obj 2025-07-24T03:55:42.1981928Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:42.1983566Z [1653/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_sum_bn_kern_autogen.cpp.obj 2025-07-24T03:55:42.2067274Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:42.2068836Z [1654/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_sum_bt_kern_autogen.cpp.obj 2025-07-24T03:55:42.2337096Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:42.2338004Z [1655/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:42.3819729Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:42.3820602Z [1656/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:42.3947093Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:42.3948096Z [1657/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:42.6681665Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:42.6682529Z [1658/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:42.6851229Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:42.6852734Z [1659/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_sum_an_kern_autogen.cpp.obj 2025-07-24T03:55:42.7529955Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:42.7531909Z [1660/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_sum_at_kern_autogen.cpp.obj 2025-07-24T03:55:42.9263972Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:42.9265839Z [1661/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_sum_bn_kern_autogen.cpp.obj 2025-07-24T03:55:42.9339587Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:42.9341133Z [1662/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_gemm_s8u8s32_kern.cpp.obj 2025-07-24T03:55:42.9361504Z [1663/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_sum_bt_kern_autogen.cpp.obj 2025-07-24T03:55:43.1066898Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:43.1067843Z [1664/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_kernel_gemv_s8x8s32_kern.cpp.obj 2025-07-24T03:55:43.1371460Z [1665/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_gemv_s8x8s32.cpp.obj 2025-07-24T03:55:43.4116936Z [1666/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:43.4214948Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:43.4215787Z [1667/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:43.4484629Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:43.4486127Z [1668/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:43.6072091Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:43.6073657Z [1669/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_sum_an_kern_autogen.cpp.obj 2025-07-24T03:55:43.6282493Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:43.6284114Z [1670/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_sum_at_kern_autogen.cpp.obj 2025-07-24T03:55:43.6349698Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:43.6350986Z [1671/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:43.8502968Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:43.8504991Z [1672/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_sum_bt_kern_autogen.cpp.obj 2025-07-24T03:55:43.8715283Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:43.8716872Z [1673/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_sum_bn_kern_autogen.cpp.obj 2025-07-24T03:55:44.1271485Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:44.1273084Z [1674/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_b0_b_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:44.1513806Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:44.1515563Z [1675/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_b0_c_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:44.1761114Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:44.1762117Z [1676/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_b0_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:44.3527134Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:44.3527992Z [1677/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_b_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:44.3617621Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:44.3619280Z [1678/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_b0_r_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:44.4427694Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:44.4428891Z [1679/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_c_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:44.5464781Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:44.5465748Z [1680/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:44.6054337Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:44.6055438Z [1681/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_r_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:44.8520153Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:44.8522020Z [1682/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:44.8888207Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:44.8889155Z [1683/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:44.9105800Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:44.9107271Z [1684/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:45.0576133Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:45.0577588Z [1685/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_sum_an_kern_autogen.cpp.obj 2025-07-24T03:55:45.1121433Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:45.1122312Z [1686/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:45.2361353Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:45.2362440Z [1687/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_sum_at_kern_autogen.cpp.obj 2025-07-24T03:55:45.2614470Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:45.2615962Z [1688/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_sum_bn_kern_autogen.cpp.obj 2025-07-24T03:55:45.3327670Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:45.3328713Z [1689/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_sum_bt_kern_autogen.cpp.obj 2025-07-24T03:55:45.5807865Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:45.5808861Z [1690/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_b0_b_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:45.6199520Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:45.6201358Z [1691/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_b0_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:45.6650285Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:45.6651840Z [1692/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_b0_c_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:45.8173368Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:45.8174679Z [1693/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_b_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:45.8453060Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:45.8454246Z [1694/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_b0_r_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:45.9450716Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:45.9452081Z [1695/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_c_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:45.9895218Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:45.9896186Z [1696/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:46.0200608Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:46.0202218Z [1697/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_r_gemm_s8u8s32_kern_autogen.cpp.obj 2025-07-24T03:55:46.3245296Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:46.3246295Z [1698/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_an_kern_autogen.cpp.obj 2025-07-24T03:55:46.3879924Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:46.3881366Z [1699/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_bn_kern_autogen.cpp.obj 2025-07-24T03:55:46.4186885Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:46.4188221Z [1700/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_at_kern_autogen.cpp.obj 2025-07-24T03:55:46.5437716Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:46.5439202Z [1701/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_bt_kern_autogen.cpp.obj 2025-07-24T03:55:46.5543734Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:46.5545256Z [1702/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_sum_an_kern_autogen.cpp.obj 2025-07-24T03:55:46.6329422Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:46.6330727Z [1703/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_sum_at_kern_autogen.cpp.obj 2025-07-24T03:55:46.6821098Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:46.6821942Z [1704/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_sum_bn_kern_autogen.cpp.obj 2025-07-24T03:55:46.7303038Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:46.7304353Z [1705/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_sum_bt_kern_autogen.cpp.obj 2025-07-24T03:55:47.1362711Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-24T03:55:47.1363988Z [1706/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_convolution.cpp.obj 2025-07-24T03:55:47.1492228Z [1707/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\injector_utils.cpp.obj 2025-07-24T03:55:47.1856793Z [1708/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_inner_product.cpp.obj 2025-07-24T03:55:47.2715184Z [1709/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_eltwise_injector.cpp.obj 2025-07-24T03:55:47.2983057Z [1710/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_binary_injector.cpp.obj 2025-07-24T03:55:47.4006308Z [1711/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\ip_convolution.cpp.obj 2025-07-24T03:55:47.4088896Z [1712/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_postops_injector.cpp.obj 2025-07-24T03:55:47.5137515Z [1713/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_1x1_conv_kernel_f32.cpp.obj 2025-07-24T03:55:47.8936196Z [1714/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_conv_kernel_f32.cpp.obj 2025-07-24T03:55:47.9889925Z [1715/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_convolution.cpp.obj 2025-07-24T03:55:48.0036016Z [1716/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_1x1_convolution.cpp.obj 2025-07-24T03:55:48.1055976Z [1717/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_1x1_conv_kernel.cpp.obj 2025-07-24T03:55:48.1077848Z [1718/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_1x1_convolution.cpp.obj 2025-07-24T03:55:48.2097163Z [1719/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_convolution.cpp.obj 2025-07-24T03:55:48.2651950Z [1720/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_1x1_conv_kernel.cpp.obj 2025-07-24T03:55:48.2837081Z [1721/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_conv_kernel.cpp.obj 2025-07-24T03:55:48.7482854Z [1722/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_1x1_convolution.cpp.obj 2025-07-24T03:55:48.7929960Z [1723/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_conv_kernel.cpp.obj 2025-07-24T03:55:48.8252474Z [1724/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_convolution.cpp.obj 2025-07-24T03:55:48.8536952Z [1725/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_1x1_conv_kernel.cpp.obj 2025-07-24T03:55:48.8932333Z [1726/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_deconvolution.cpp.obj 2025-07-24T03:55:49.0286867Z [1727/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_1x1_convolution.cpp.obj 2025-07-24T03:55:49.0369032Z [1728/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_conv_kernel.cpp.obj 2025-07-24T03:55:49.0811804Z [1729/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_convolution.cpp.obj 2025-07-24T03:55:49.4779686Z [1730/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_dw_conv_kernel.cpp.obj 2025-07-24T03:55:49.5468552Z [1731/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp16cvt.cpp.obj 2025-07-24T03:55:49.5745288Z [1732/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp8cvt.cpp.obj 2025-07-24T03:55:49.6228154Z [1733/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_scale_precompute.cpp.obj 2025-07-24T03:55:49.6321374Z [1734/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_resampling.cpp.obj 2025-07-24T03:55:49.7717883Z [1735/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_1x1_conv_kernel.cpp.obj 2025-07-24T03:55:49.8313718Z [1736/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_conv_kernel.cpp.obj 2025-07-24T03:55:49.8339799Z [1737/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_1x1_convolution.cpp.obj 2025-07-24T03:55:50.2697954Z [1738/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_convolution.cpp.obj 2025-07-24T03:55:50.3134222Z [1739/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_sparse_decompress_kernel.cpp.obj 2025-07-24T03:55:50.3961746Z [1740/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_deconvolution.cpp.obj 2025-07-24T03:55:50.4485369Z [1741/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_1x1_conv.cpp.obj 2025-07-24T03:55:50.4700692Z [1742/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brdgmm_dw_conv.cpp.obj 2025-07-24T03:55:50.6137064Z [1743/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_copy_kernel.cpp.obj 2025-07-24T03:55:50.6611825Z [1744/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv.cpp.obj 2025-07-24T03:55:50.7208961Z [1745/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd.cpp.obj 2025-07-24T03:55:51.0854924Z [1746/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_trans_kernel.cpp.obj 2025-07-24T03:55:51.0959810Z [1747/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_strided.cpp.obj 2025-07-24T03:55:51.1731878Z [1748/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_utils.cpp.obj 2025-07-24T03:55:51.2347915Z [1749/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_comp_pad_kernel.cpp.obj 2025-07-24T03:55:51.2476570Z [1750/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_w.cpp.obj 2025-07-24T03:55:51.4305787Z [1751/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_trans_kernel.cpp.obj 2025-07-24T03:55:51.5392781Z [1752/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_utils.cpp.obj 2025-07-24T03:55:51.5543420Z [1753/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_deconv.cpp.obj 2025-07-24T03:55:51.8317312Z [1754/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product_utils.cpp.obj 2025-07-24T03:55:51.8861800Z [1755/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product.cpp.obj 2025-07-24T03:55:51.9746804Z [1756/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_post_ops.cpp.obj 2025-07-24T03:55:52.0118496Z [1757/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_primitive_conf.cpp.obj 2025-07-24T03:55:52.0241703Z [1758/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_transpose_utils.cpp.obj 2025-07-24T03:55:52.2494806Z [1759/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_inner_product_utils.cpp.obj 2025-07-24T03:55:52.2974652Z [1760/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.obj 2025-07-24T03:55:52.3535718Z [1761/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_x8s8s32x_convolution_utils.cpp.obj 2025-07-24T03:55:52.5277286Z [1762/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_generator.cpp.obj 2025-07-24T03:55:52.6214556Z [1763/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_1x1_conv_kernel_f32.cpp.obj 2025-07-24T03:55:52.7526678Z [1764/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_conv_kernel_f32.cpp.obj 2025-07-24T03:55:52.7797341Z [1765/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_1x1_convolution.cpp.obj 2025-07-24T03:55:52.8085234Z [1766/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_convolution.cpp.obj 2025-07-24T03:55:53.0058197Z [1767/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_transpose_utils.cpp.obj 2025-07-24T03:55:53.0823668Z [1768/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization.cpp.obj 2025-07-24T03:55:53.1476931Z [1769/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization_s8.cpp.obj 2025-07-24T03:55:53.3072686Z [1770/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary.cpp.obj 2025-07-24T03:55:53.4054782Z [1771/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary_kernel.cpp.obj 2025-07-24T03:55:53.5428410Z [1772/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_dw_conv_kernel_f32.cpp.obj 2025-07-24T03:55:53.5495859Z [1773/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_convert_xf16.cpp.obj 2025-07-24T03:55:53.5651636Z [1774/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_deconv_zp_pad_str_kernel.cpp.obj 2025-07-24T03:55:53.8288654Z [1775/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_dw_conv_kernel_utils.cpp.obj 2025-07-24T03:55:53.8477663Z [1776/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_dw_convolution.cpp.obj 2025-07-24T03:55:54.0151222Z [1777/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise.cpp.obj 2025-07-24T03:55:54.0385476Z [1778/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise_int.cpp.obj 2025-07-24T03:55:54.2484782Z [1779/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_group_normalization.cpp.obj 2025-07-24T03:55:54.3228770Z [1780/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_instance_normalization.cpp.obj 2025-07-24T03:55:54.3574560Z [1781/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_i8i8_pooling.cpp.obj 2025-07-24T03:55:54.3770192Z [1782/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_layer_normalization.cpp.obj 2025-07-24T03:55:54.6505637Z [1783/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_ncsp_convolution.cpp.obj 2025-07-24T03:55:54.6747972Z [1784/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pool_kernel.cpp.obj 2025-07-24T03:55:54.8525064Z [1785/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pooling.cpp.obj 2025-07-24T03:55:54.8608003Z [1786/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction.cpp.obj 2025-07-24T03:55:55.0768712Z [1787/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction_kernel.cpp.obj 2025-07-24T03:55:55.1199871Z [1788/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_utils.cpp.obj 2025-07-24T03:55:55.1367015Z [1789/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder.cpp.obj 2025-07-24T03:55:55.1783202Z [1790/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_direct_copy.cpp.obj 2025-07-24T03:55:55.4824637Z [1791/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling_kernel.cpp.obj 2025-07-24T03:55:55.4849608Z [1792/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling.cpp.obj 2025-07-24T03:55:55.6538490Z [1793/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_softmax.cpp.obj 2025-07-24T03:55:55.6822655Z [1794/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_tbb_batch_normalization.cpp.obj 2025-07-24T03:55:55.8195226Z [1795/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_1x1_conv_kernel.cpp.obj 2025-07-24T03:55:55.9116972Z [1796/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_conv_kernel.cpp.obj 2025-07-24T03:55:56.0118476Z [1797/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_1x1_convolution.cpp.obj 2025-07-24T03:55:56.0249538Z [1798/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_convolution.cpp.obj 2025-07-24T03:55:56.2631960Z [1799/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_xf16_sum.cpp.obj 2025-07-24T03:55:56.3808651Z [1800/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_deconvolution.cpp.obj 2025-07-24T03:55:56.4084013Z [1801/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_bwd_base.cpp.obj 2025-07-24T03:55:56.4191943Z [1802/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn.cpp.obj 2025-07-24T03:55:56.5796757Z [1803/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_bwd_blocked.cpp.obj 2025-07-24T03:55:56.6079814Z [1804/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_bwd_nhwc.cpp.obj 2025-07-24T03:55:56.7227162Z [1805/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_fwd_base.cpp.obj 2025-07-24T03:55:56.8480607Z [1806/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_fwd_blocked.cpp.obj 2025-07-24T03:55:56.9646724Z [1807/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_fwd_nhwc.cpp.obj 2025-07-24T03:55:57.1159479Z [1808/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn_kernel.cpp.obj 2025-07-24T03:55:57.1355003Z [1809/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn.cpp.obj 2025-07-24T03:55:57.2663572Z [1810/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul.cpp.obj 2025-07-24T03:55:57.3851392Z [1811/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_copy_utils.cpp.obj 2025-07-24T03:55:57.4424571Z [1812/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_reorders.cpp.obj 2025-07-24T03:55:57.4726823Z [1813/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_utils.cpp.obj 2025-07-24T03:55:57.6335069Z [1814/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\jit_uni_sparse_matmul.cpp.obj 2025-07-24T03:55:57.7401882Z [1815/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_backward.cpp.obj 2025-07-24T03:55:57.8522112Z [1816/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_base_kernel.cpp.obj 2025-07-24T03:55:57.9486823Z [1817/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_forward.cpp.obj 2025-07-24T03:55:58.0459888Z [1818/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_reduction_kernel.cpp.obj 2025-07-24T03:55:58.1131767Z [1819/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_utils.cpp.obj 2025-07-24T03:55:58.2361263Z [1820/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_uni_prelu_backward_kernel.cpp.obj 2025-07-24T03:55:58.2467340Z [1821/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_uni_prelu_forward_kernel.cpp.obj 2025-07-24T03:55:58.4224074Z [1822/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_bwd.cpp.obj 2025-07-24T03:55:58.5484919Z [1823/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_fwd.cpp.obj 2025-07-24T03:55:58.5595333Z [1824/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_utils.cpp.obj 2025-07-24T03:55:58.6493356Z [1825/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_reorders.cpp.obj 2025-07-24T03:55:58.8279715Z [1826/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_brgemm_transpose_single_row.cpp.obj 2025-07-24T03:55:58.8932202Z [1827/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_diff_weights_peephole.cpp.obj 2025-07-24T03:55:58.9791278Z [1828/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_gates_reduction.cpp.obj 2025-07-24T03:55:59.0007796Z [1829/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\rnn_brgemm_utils.cpp.obj 2025-07-24T03:55:59.1678228Z [1830/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle.cpp.obj 2025-07-24T03:55:59.2985803Z [1831/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle_kernel.cpp.obj 2025-07-24T03:55:59.3612602Z [1832/7681] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\utils\jit_io_helper.cpp.obj 2025-07-24T03:55:59.3817110Z [1833/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\allocator.cpp.obj 2025-07-24T03:55:59.5289340Z [1834/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\backend.cpp.obj 2025-07-24T03:55:59.6856093Z [1835/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\constant_tensor_cache.cpp.obj 2025-07-24T03:55:59.7273812Z [1836/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\graph.cpp.obj 2025-07-24T03:55:59.7447081Z [1837/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\logical_tensor.cpp.obj 2025-07-24T03:55:59.7618039Z [1838/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op.cpp.obj 2025-07-24T03:55:59.9701596Z [1839/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_def_constraint.cpp.obj 2025-07-24T03:56:00.0613581Z [1840/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_schema.cpp.obj 2025-07-24T03:56:00.1075202Z [1841/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition.cpp.obj 2025-07-24T03:56:00.2354877Z [1842/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_cache.cpp.obj 2025-07-24T03:56:00.4473723Z [1843/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\tensor.cpp.obj 2025-07-24T03:56:00.4899144Z [1844/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_hashing.cpp.obj 2025-07-24T03:56:00.5383270Z [1845/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\shape_infer.cpp.obj 2025-07-24T03:56:00.5806431Z [1846/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_impl.cpp.obj 2025-07-24T03:56:00.6754584Z [1847/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\value.cpp.obj 2025-07-24T03:56:00.7904260Z [1848/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\fake\CMakeFiles\dnnl_graph_backend_fake.dir\fake_backend.cpp.obj 2025-07-24T03:56:00.8413682Z [1849/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\common.cpp.obj 2025-07-24T03:56:01.1626372Z [1850/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_backend.cpp.obj 2025-07-24T03:56:01.2129874Z [1851/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_shape_infer.cpp.obj 2025-07-24T03:56:01.2841008Z [1852/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_partition_impl.cpp.obj 2025-07-24T03:56:01.4016738Z [1853/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\fusion_info.cpp.obj 2025-07-24T03:56:04.3677761Z [1854/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_id_mgr.cpp.obj 2025-07-24T03:56:04.4250648Z [1855/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_propagator.cpp.obj 2025-07-24T03:56:04.4901412Z [1856/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\platform.cpp.obj 2025-07-24T03:56:04.5965671Z [1857/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\op_executable.cpp.obj 2025-07-24T03:56:04.6712113Z [1858/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\batch_norm.cpp.obj 2025-07-24T03:56:04.7177635Z [1859/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\binary.cpp.obj 2025-07-24T03:56:04.7617357Z [1860/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\subgraph.cpp.obj 2025-07-24T03:56:04.7787413Z [1861/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\concat.cpp.obj 2025-07-24T03:56:05.0893591Z [1862/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv.cpp.obj 2025-07-24T03:56:05.1216805Z [1863/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_base.cpp.obj 2025-07-24T03:56:05.1866124Z [1864/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_transpose.cpp.obj 2025-07-24T03:56:05.3705210Z [1865/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\dummy.cpp.obj 2025-07-24T03:56:05.4719796Z [1866/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\gen_index.cpp.obj 2025-07-24T03:56:05.5043303Z [1867/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\eltwise.cpp.obj 2025-07-24T03:56:05.5487883Z [1868/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\kernel_base.cpp.obj 2025-07-24T03:56:05.9326718Z [1869/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\large_partition.cpp.obj 2025-07-24T03:56:05.9349757Z [1870/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\layer_norm.cpp.obj 2025-07-24T03:56:05.9598689Z [1871/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\group_norm.cpp.obj 2025-07-24T03:56:05.9868423Z [1872/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\log_softmax.cpp.obj 2025-07-24T03:56:06.1882984Z [1873/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\matmul.cpp.obj 2025-07-24T03:56:06.2324788Z [1874/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\mqa_decomp.cpp.obj 2025-07-24T03:56:06.3089359Z [1875/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\mqa_decomp_config.cpp.obj 2025-07-24T03:56:06.3386758Z [1876/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\pool.cpp.obj 2025-07-24T03:56:06.7416626Z [1877/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\quantize.cpp.obj 2025-07-24T03:56:06.7694809Z [1878/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\prelu.cpp.obj 2025-07-24T03:56:06.8001392Z [1879/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reduction.cpp.obj 2025-07-24T03:56:06.8394860Z [1880/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reorder.cpp.obj 2025-07-24T03:56:07.0278654Z [1881/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_decomp.cpp.obj 2025-07-24T03:56:07.0385932Z [1882/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\resampling.cpp.obj 2025-07-24T03:56:07.1147601Z [1883/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_decomp_config.cpp.obj 2025-07-24T03:56:07.1487057Z [1884/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_primitive.cpp.obj 2025-07-24T03:56:07.5375122Z [1885/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\select.cpp.obj 2025-07-24T03:56:07.5450956Z [1886/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_primitive_config.cpp.obj 2025-07-24T03:56:07.5805544Z [1887/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\shuffle.cpp.obj 2025-07-24T03:56:07.6662701Z [1888/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\softmax.cpp.obj 2025-07-24T03:56:07.7997490Z [1889/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sum.cpp.obj 2025-07-24T03:56:07.8438636Z [1890/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\compile_ops.cpp.obj 2025-07-24T03:56:07.9387315Z [1891/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\insert_ops.cpp.obj 2025-07-24T03:56:07.9937073Z [1892/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\constant_propagation.cpp.obj 2025-07-24T03:56:08.3013792Z [1893/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\layout_propagation.cpp.obj 2025-07-24T03:56:08.3521965Z [1894/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\lower.cpp.obj 2025-07-24T03:56:08.3798246Z [1895/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\memory_planning.cpp.obj 2025-07-24T03:56:08.4306791Z [1896/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\transform.cpp.obj 2025-07-24T03:56:08.5980879Z [1897/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\binary_fusion.cpp.obj 2025-07-24T03:56:08.6106021Z [1898/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\utils.cpp.obj 2025-07-24T03:56:08.7250749Z [1899/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\bn_fusion.cpp.obj 2025-07-24T03:56:08.8744201Z [1900/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\concat_fusion.cpp.obj 2025-07-24T03:56:09.1252015Z [1901/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\conv_post_ops.cpp.obj 2025-07-24T03:56:09.1680345Z [1902/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\convtranspose_fusion.cpp.obj 2025-07-24T03:56:09.1804120Z [1903/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\conv_block_fusion.cpp.obj 2025-07-24T03:56:09.1836317Z [1904/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\eltwise_fusion.cpp.obj 2025-07-24T03:56:09.4356537Z [1905/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\interpolate_fusion.cpp.obj 2025-07-24T03:56:09.4381235Z [1906/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\groupnorm_fusion.cpp.obj 2025-07-24T03:56:09.5431784Z [1907/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\layernorm_fusion.cpp.obj 2025-07-24T03:56:09.7178771Z [1908/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\matmul_post_ops.cpp.obj 2025-07-24T03:56:09.9422412Z [1909/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\mlp.cpp.obj 2025-07-24T03:56:09.9709355Z [1910/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reduction_fusion.cpp.obj 2025-07-24T03:56:09.9799161Z [1911/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\quantize_fusion.cpp.obj 2025-07-24T03:56:10.0543092Z [1912/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\pool_post_ops.cpp.obj 2025-07-24T03:56:10.2337930Z [1913/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reorder_fusion.cpp.obj 2025-07-24T03:56:10.2660427Z [1914/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sdp.cpp.obj 2025-07-24T03:56:10.2723072Z [1915/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\debug.cpp.obj 2025-07-24T03:56:10.3302503Z [1916/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\alloc.cpp.obj 2025-07-24T03:56:10.3373255Z [1917/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\shuffle_fusion.cpp.obj 2025-07-24T03:56:10.3425098Z [1918/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\ocl_usm_utils.cpp.obj 2025-07-24T03:56:10.3583219Z [1919/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\id.cpp.obj 2025-07-24T03:56:10.5666504Z [1920/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\single_op_pattern.cpp.obj 2025-07-24T03:56:10.7713162Z [1921/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sum_fusion.cpp.obj 2025-07-24T03:56:10.7828178Z [1922/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\softmax_post_ops.cpp.obj 2025-07-24T03:56:10.9782519Z [1923/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pbuilder.cpp.obj 2025-07-24T03:56:10.9863467Z [1924/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\nested_matcher.cpp.obj 2025-07-24T03:56:11.0105223Z [1925/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\utils.cpp.obj 2025-07-24T03:56:11.0839004Z [1926/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_manager.cpp.obj 2025-07-24T03:56:11.0961011Z [1927/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_base.cpp.obj 2025-07-24T03:56:11.2122950Z [1928/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\libkineto_api.cpp.obj 2025-07-24T03:56:11.2772483Z [1929/7681] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\verbose.cpp.obj 2025-07-24T03:56:11.3393038Z [1930/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\ThreadUtil.cpp.obj 2025-07-24T03:56:11.3394206Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(21): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-07-24T03:56:11.3395713Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(21): note: 'WIN32_LEAN_AND_MEAN' previously declared on the command line 2025-07-24T03:56:11.3396991Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(22): warning C4005: 'NOGDI': macro redefinition 2025-07-24T03:56:11.7152858Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(22): note: 'NOGDI' previously declared on the command line 2025-07-24T03:56:11.7154780Z [1931/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfiler.cpp.obj 2025-07-24T03:56:11.7231520Z [1932/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfilerConfig.cpp.obj 2025-07-24T03:56:11.7312743Z [1933/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityApi.cpp.obj 2025-07-24T03:56:11.7432657Z [1934/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiNvPerfMetric.cpp.obj 2025-07-24T03:56:11.8040940Z [1935/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiCallbackApi.cpp.obj 2025-07-24T03:56:11.8299521Z [1936/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiEventApi.cpp.obj 2025-07-24T03:56:11.8487656Z [1937/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiMetricApi.cpp.obj 2025-07-24T03:56:11.8589910Z [1938/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfilerApi.cpp.obj 2025-07-24T03:56:11.8761295Z [1939/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Demangle.cpp.obj 2025-07-24T03:56:12.0170634Z [1940/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\KernelRegistry.cpp.obj 2025-07-24T03:56:12.0236086Z [1941/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\WeakSymbols.cpp.obj 2025-07-24T03:56:12.1418976Z [1942/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\cupti_strings.cpp.obj 2025-07-24T03:56:12.2571420Z [1943/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\AbstractConfig.cpp.obj 2025-07-24T03:56:12.3003757Z [1944/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ApproximateClock.cpp.obj 2025-07-24T03:56:12.3096308Z [1945/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\EventProfilerController.cpp.obj 2025-07-24T03:56:12.3713769Z [1946/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\EventProfiler.cpp.obj 2025-07-24T03:56:12.3716079Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\numeric(37): warning C4244: '=': conversion from '_Ty' to '_Ty', possible loss of data 2025-07-24T03:56:12.3717526Z with 2025-07-24T03:56:12.3717858Z [ 2025-07-24T03:56:12.3718182Z _Ty=int64_t 2025-07-24T03:56:12.3718546Z ] 2025-07-24T03:56:12.3718841Z and 2025-07-24T03:56:12.3719134Z [ 2025-07-24T03:56:12.3719467Z _Ty=unsigned long 2025-07-24T03:56:12.3719876Z ] 2025-07-24T03:56:12.3721116Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\numeric(37): note: the template instantiation context (the oldest one first) is 2025-07-24T03:56:12.3802446Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\EventProfiler.cpp(67): note: see reference to function template instantiation '_Ty std::accumulate>,std::vector>>>>>,unsigned long,libkineto::Event::sumInstance::>(const _InIt,const _InIt,_Ty,_Fn)' being compiled 2025-07-24T03:56:12.3806773Z with 2025-07-24T03:56:12.3807114Z [ 2025-07-24T03:56:12.3807429Z _Ty=unsigned long, 2025-07-24T03:56:12.3808235Z _InIt=std::_List_const_iterator>>, 2025-07-24T03:56:12.3809447Z _Fn=libkineto::Event::sumInstance:: 2025-07-24T03:56:12.3810229Z ] 2025-07-24T03:56:12.3811150Z [1947/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DaemonConfigLoader.cpp.obj 2025-07-24T03:56:12.4677241Z [1948/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityType.cpp.obj 2025-07-24T03:56:12.6176751Z [1949/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityProfiler.cpp.obj 2025-07-24T03:56:12.6493199Z [1950/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ConfigLoader.cpp.obj 2025-07-24T03:56:12.6660998Z [1951/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerController.cpp.obj 2025-07-24T03:56:12.7141611Z [1952/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Config.cpp.obj 2025-07-24T03:56:12.7350667Z [1953/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\IpcFabricConfigClient.cpp.obj 2025-07-24T03:56:12.7482290Z [1954/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerProxy.cpp.obj 2025-07-24T03:56:12.8755773Z [1955/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\GenericTraceActivity.cpp.obj 2025-07-24T03:56:12.9746028Z [1956/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\LoggingAPI.cpp.obj 2025-07-24T03:56:12.9764478Z [1957/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ILoggerObserver.cpp.obj 2025-07-24T03:56:12.9785346Z [1958/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceUtil.cpp.obj 2025-07-24T03:56:13.0511339Z [1959/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceProperties.cpp.obj 2025-07-24T03:56:13.0537402Z [1960/7681] Building CXX object c10\CMakeFiles\c10.dir\core\AutogradState.cpp.obj 2025-07-24T03:56:13.0665935Z [1961/7681] Linking CXX static library lib\mimalloc.lib 2025-07-24T03:56:13.1309086Z [1962/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Logger.cpp.obj 2025-07-24T03:56:13.2079821Z [1963/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_csv.cpp.obj 2025-07-24T03:56:13.3009752Z [1964/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_json.cpp.obj 2025-07-24T03:56:13.4056089Z [1965/7681] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\init.cpp.obj 2025-07-24T03:56:14.3816364Z [1966/7681] Building CXX object c10\CMakeFiles\c10.dir\core\Allocator.cpp.obj 2025-07-24T03:56:14.5010572Z [1967/7681] Building CXX object c10\CMakeFiles\c10.dir\core\ConstantSymNodeImpl.cpp.obj 2025-07-24T03:56:14.7114499Z [1968/7681] Building CXX object c10\CMakeFiles\c10.dir\core\Device.cpp.obj 2025-07-24T03:56:14.7620636Z [1969/7681] Building CXX object c10\CMakeFiles\c10.dir\core\CopyBytes.cpp.obj 2025-07-24T03:56:14.8493119Z [1970/7681] Building CXX object c10\CMakeFiles\c10.dir\core\GradMode.cpp.obj 2025-07-24T03:56:14.9699211Z [1971/7681] Building CXX object c10\CMakeFiles\c10.dir\core\DeviceType.cpp.obj 2025-07-24T03:56:15.1129993Z [1972/7681] Building CXX object c10\CMakeFiles\c10.dir\core\DefaultDtype.cpp.obj 2025-07-24T03:56:15.6120938Z [1973/7681] Building CXX object c10\CMakeFiles\c10.dir\core\CPUAllocator.cpp.obj 2025-07-24T03:56:16.2062385Z [1974/7681] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKeySet.cpp.obj 2025-07-24T03:56:16.5604271Z [1975/7681] Building CXX object c10\CMakeFiles\c10.dir\core\InferenceMode.cpp.obj 2025-07-24T03:56:16.5860176Z [1976/7681] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKey.cpp.obj 2025-07-24T03:56:17.1128491Z [1977/7681] Building CXX object c10\CMakeFiles\c10.dir\core\RefcountedDeleter.cpp.obj 2025-07-24T03:56:17.2933259Z [1978/7681] Building CXX object c10\CMakeFiles\c10.dir\core\SafePyObject.cpp.obj 2025-07-24T03:56:17.8328012Z [1979/7681] Building CXX object c10\CMakeFiles\c10.dir\core\Scalar.cpp.obj 2025-07-24T03:56:17.9506834Z [1980/7681] Building CXX object c10\CMakeFiles\c10.dir\core\ScalarType.cpp.obj 2025-07-24T03:56:17.9837971Z [1981/7681] Building CXX object c10\CMakeFiles\c10.dir\core\GeneratorImpl.cpp.obj 2025-07-24T03:56:18.6306601Z [1982/7681] Building CXX object c10\CMakeFiles\c10.dir\core\Stream.cpp.obj 2025-07-24T03:56:18.7622136Z [1983/7681] Building CXX object c10\CMakeFiles\c10.dir\core\Storage.cpp.obj 2025-07-24T03:56:19.0667818Z [1984/7681] Building CXX object c10\CMakeFiles\c10.dir\core\SymBool.cpp.obj 2025-07-24T03:56:19.5538759Z [1985/7681] Building CXX object c10\CMakeFiles\c10.dir\core\SymFloat.cpp.obj 2025-07-24T03:56:19.6211929Z [1986/7681] Building CXX object c10\CMakeFiles\c10.dir\core\SymNodeImpl.cpp.obj 2025-07-24T03:56:19.7872802Z [1987/7681] Building CXX object c10\CMakeFiles\c10.dir\core\StorageImpl.cpp.obj 2025-07-24T03:56:19.9615984Z [1988/7681] Building CXX object c10\CMakeFiles\c10.dir\core\SymIntArrayRef.cpp.obj 2025-07-24T03:56:20.2668974Z [1989/7681] Building CXX object c10\CMakeFiles\c10.dir\core\SymInt.cpp.obj 2025-07-24T03:56:21.3276999Z [1990/7681] Building CXX object c10\CMakeFiles\c10.dir\core\SymbolicShapeMeta.cpp.obj 2025-07-24T03:56:21.3681127Z [1991/7681] Building CXX object c10\CMakeFiles\c10.dir\core\WrapDimMinimal.cpp.obj 2025-07-24T03:56:21.5562377Z [1992/7681] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COWDeleter.cpp.obj 2025-07-24T03:56:21.6423887Z [1993/7681] Building CXX object c10\CMakeFiles\c10.dir\core\TensorOptions.cpp.obj 2025-07-24T03:56:21.7366200Z [1994/7681] Building CXX object c10\CMakeFiles\c10.dir\core\impl\HermeticPyObjectTLS.cpp.obj 2025-07-24T03:56:21.7866061Z [1995/7681] Building CXX object c10\CMakeFiles\c10.dir\core\impl\DeviceGuardImplInterface.cpp.obj 2025-07-24T03:56:22.2077993Z [1996/7681] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COW.cpp.obj 2025-07-24T03:56:22.7244391Z [1997/7681] Building CXX object c10\CMakeFiles\c10.dir\core\UndefinedTensorImpl.cpp.obj 2025-07-24T03:56:23.4757258Z [1998/7681] Building CXX object c10\CMakeFiles\c10.dir\core\impl\LocalDispatchKeySet.cpp.obj 2025-07-24T03:56:23.6007245Z [1999/7681] Building CXX object c10\CMakeFiles\c10.dir\core\TensorImpl.cpp.obj 2025-07-24T03:56:23.8476303Z [2000/7681] Building CXX object c10\CMakeFiles\c10.dir\core\impl\GPUTrace.cpp.obj 2025-07-24T03:56:23.9055291Z [2001/7681] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyObjectSlot.cpp.obj 2025-07-24T03:56:24.0704181Z C:\actions-runner\_work\pytorch\pytorch\c10\core\impl\PyObjectSlot.cpp(70): warning C4805: '|': unsafe mix of type 'uintptr_t' and type 'bool' in operation 2025-07-24T03:56:24.0705875Z [2002/7681] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PythonDispatcherTLS.cpp.obj 2025-07-24T03:56:24.2662815Z [2003/7681] Building CXX object c10\CMakeFiles\c10.dir\core\impl\SizesAndStrides.cpp.obj 2025-07-24T03:56:25.0610643Z [2004/7681] Building CXX object c10\CMakeFiles\c10.dir\core\impl\TorchDispatchModeTLS.cpp.obj 2025-07-24T03:56:25.1832122Z [2005/7681] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyInterpreter.cpp.obj 2025-07-24T03:56:25.8835001Z [2006/7681] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUCachingAllocator.cpp.obj 2025-07-24T03:56:26.1682231Z [2007/7681] Building CXX object c10\CMakeFiles\c10.dir\util\C++17.cpp.obj 2025-07-24T03:56:26.1917872Z [2008/7681] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUProfilingAllocator.cpp.obj 2025-07-24T03:56:26.2454728Z [2009/7681] Building CXX object c10\CMakeFiles\c10.dir\core\thread_pool.cpp.obj 2025-07-24T03:56:26.2658183Z [2010/7681] Building CXX object c10\CMakeFiles\c10.dir\core\impl\alloc_cpu.cpp.obj 2025-07-24T03:56:26.2963972Z [2011/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Bfloat16.cpp.obj 2025-07-24T03:56:26.9542865Z [2012/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Backtrace.cpp.obj 2025-07-24T03:56:27.0418984Z [2013/7681] Building CXX object c10\CMakeFiles\c10.dir\util\ApproximateClock.cpp.obj 2025-07-24T03:56:27.1016923Z [2014/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fn.cpp.obj 2025-07-24T03:56:27.1290030Z [2015/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fnuz.cpp.obj 2025-07-24T03:56:27.2540649Z [2016/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2.cpp.obj 2025-07-24T03:56:27.4239851Z [2017/7681] Building CXX object c10\CMakeFiles\c10.dir\util\DeadlockDetection.cpp.obj 2025-07-24T03:56:27.4690916Z [2018/7681] Building CXX object c10\CMakeFiles\c10.dir\util\DynamicCounter.cpp.obj 2025-07-24T03:56:27.8493345Z [2019/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Exception.cpp.obj 2025-07-24T03:56:27.9332757Z [2020/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2fnuz.cpp.obj 2025-07-24T03:56:27.9500308Z [2021/7681] Building CXX object c10\CMakeFiles\c10.dir\util\LeftRight.cpp.obj 2025-07-24T03:56:27.9675929Z [2022/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e8m0fnu.cpp.obj 2025-07-24T03:56:28.0478533Z [2023/7681] Building CXX object c10\CMakeFiles\c10.dir\util\ParallelGuard.cpp.obj 2025-07-24T03:56:28.1305582Z [2024/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Half.cpp.obj 2025-07-24T03:56:28.1780906Z [2025/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Optional.cpp.obj 2025-07-24T03:56:28.3344030Z [2026/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Metaprogramming.cpp.obj 2025-07-24T03:56:28.3746822Z [2027/7681] Building CXX object c10\CMakeFiles\c10.dir\util\MathConstants.cpp.obj 2025-07-24T03:56:28.5170924Z [2028/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Gauge.cpp.obj 2025-07-24T03:56:28.7731841Z [2029/7681] Building CXX object c10\CMakeFiles\c10.dir\util\TypeList.cpp.obj 2025-07-24T03:56:28.9269675Z [2030/7681] Building CXX object c10\CMakeFiles\c10.dir\util\TypeTraits.cpp.obj 2025-07-24T03:56:29.0250757Z [2031/7681] Building CXX object c10\CMakeFiles\c10.dir\util\SmallVector.cpp.obj 2025-07-24T03:56:29.1779009Z [2032/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Type_demangle.cpp.obj 2025-07-24T03:56:29.4317221Z [2033/7681] Building CXX object c10\CMakeFiles\c10.dir\util\ThreadLocalDebugInfo.cpp.obj 2025-07-24T03:56:29.4994919Z [2034/7681] Building CXX object c10\CMakeFiles\c10.dir\util\TypeCast.cpp.obj 2025-07-24T03:56:29.6893474Z [2035/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Type_no_demangle.cpp.obj 2025-07-24T03:56:29.9186578Z [2036/7681] Building CXX object c10\CMakeFiles\c10.dir\util\UniqueVoidPtr.cpp.obj 2025-07-24T03:56:29.9256380Z [2037/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Logging.cpp.obj 2025-07-24T03:56:29.9540913Z [2038/7681] Building CXX object c10\CMakeFiles\c10.dir\util\NetworkFlow.cpp.obj 2025-07-24T03:56:30.0594597Z [2039/7681] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_gflags.cpp.obj 2025-07-24T03:56:30.1858078Z [2040/7681] Building CXX object c10\CMakeFiles\c10.dir\util\StringUtil.cpp.obj 2025-07-24T03:56:30.5023109Z [2041/7681] Building CXX object c10\CMakeFiles\c10.dir\util\error.cpp.obj 2025-07-24T03:56:30.7128785Z [2042/7681] Building CXX object c10\CMakeFiles\c10.dir\util\complex_math.cpp.obj 2025-07-24T03:56:30.8353404Z [2043/7681] Building CXX object c10\CMakeFiles\c10.dir\util\Unicode.cpp.obj 2025-07-24T03:56:31.2280497Z [2044/7681] Building CXX object c10\CMakeFiles\c10.dir\util\WaitCounter.cpp.obj 2025-07-24T03:56:31.4554188Z [2045/7681] Building CXX object c10\CMakeFiles\c10.dir\util\intrusive_ptr.cpp.obj 2025-07-24T03:56:31.6142673Z [2046/7681] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_no_gflags.cpp.obj 2025-07-24T03:56:31.8175836Z [2047/7681] Building CXX object c10\CMakeFiles\c10.dir\util\int128.cpp.obj 2025-07-24T03:56:31.9280265Z [2048/7681] Building CXX object c10\CMakeFiles\c10.dir\util\thread_name.cpp.obj 2025-07-24T03:56:32.7084252Z [2049/7681] Building CXX object c10\CMakeFiles\c10.dir\util\numa.cpp.obj 2025-07-24T03:56:32.7105591Z [2050/7681] Building CXX object c10\CMakeFiles\c10.dir\util\signal_handler.cpp.obj 2025-07-24T03:56:32.7715668Z [2051/7681] Building CXX object c10\CMakeFiles\c10.dir\util\env.cpp.obj 2025-07-24T03:56:33.4088598Z [2052/7681] Building CXX object c10\CMakeFiles\c10.dir\util\tempfile.cpp.obj 2025-07-24T03:56:33.7774493Z [2053/7681] Building CXX object c10\CMakeFiles\c10.dir\util\typeid.cpp.obj 2025-07-24T03:56:37.0691592Z [2054/7681] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.1360091Z [2055/7681] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.1514764Z [2056/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.2047159Z [2057/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.2278916Z [2058/7681] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.2513443Z [2059/7681] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.2583849Z [2060/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.2862087Z [2061/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.3103950Z [2062/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.3176359Z [2063/7681] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.3240346Z [2064/7681] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.3949470Z [2065/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.4225486Z [2066/7681] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.4394177Z [2067/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.4492583Z [2068/7681] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.4753644Z [2069/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.4854401Z [2070/7681] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.5154214Z [2071/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.5209626Z [2072/7681] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.5917074Z [2073/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.6044539Z [2074/7681] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.6057644Z [2075/7681] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.6616439Z [2076/7681] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.6698047Z [2077/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.6789497Z [2078/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.7605167Z [2079/7681] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.7762421Z [2080/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.7815626Z [2081/7681] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.7949673Z [2082/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.8341694Z [2083/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.8541777Z [2084/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.9167343Z [2085/7681] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.9217840Z [2086/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.9271602Z [2087/7681] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimddp.c.obj 2025-07-24T03:56:37.9608759Z [2088/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.9857378Z [2089/7681] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-07-24T03:56:37.9956635Z [2090/7681] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimddp.c.obj 2025-07-24T03:56:38.0198475Z [2091/7681] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimddp.c.obj 2025-07-24T03:56:38.0597032Z [2092/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-07-24T03:56:38.0657205Z [2093/7681] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimddp.c.obj 2025-07-24T03:56:38.0944748Z [2094/7681] Building C object sleef\src\libm\CMakeFiles\sleef.dir\rempitab.c.obj 2025-07-24T03:56:38.1094105Z [2095/7681] Building C object sleef\src\libm\CMakeFiles\dispsse_obj.dir\dispsse.c.obj 2025-07-24T03:56:38.1152892Z [2096/7681] Building C object sleef\src\libm\CMakeFiles\dispavx_obj.dir\dispavx.c.obj 2025-07-24T03:56:38.1310708Z [2097/7681] Linking C static library lib\libittnotify.lib 2025-07-24T03:56:38.1328295Z [2098/7681] Building C object sleef\src\libm\CMakeFiles\dispscalar_obj.dir\dispscalar.c.obj 2025-07-24T03:56:38.1391174Z [2099/7681] Building C object sleef\src\common\CMakeFiles\common.dir\common.c.obj 2025-07-24T03:56:38.1630196Z [2100/7681] Linking CXX static library lib\XNNPACK.lib 2025-07-24T03:56:38.2145620Z [2101/7681] Linking CXX static library lib\gloo.lib 2025-07-24T03:56:38.6258855Z [2102/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_local.cc.obj 2025-07-24T03:56:38.6532153Z [2103/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_halving_doubling.cc.obj 2025-07-24T03:56:38.6830633Z [2104/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_bcube.cc.obj 2025-07-24T03:56:38.6832804Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data 2025-07-24T03:56:38.6835291Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): note: the template instantiation context (the oldest one first) is 2025-07-24T03:56:38.6838447Z C:\actions-runner\_work\pytorch\pytorch\third_party\gloo\gloo\cuda_allreduce_bcube.cc(508): note: see reference to class template instantiation 'gloo::CudaAllreduceBcube>' being compiled 2025-07-24T03:56:38.6842358Z C:\actions-runner\_work\pytorch\pytorch\third_party\gloo\gloo\cuda_allreduce_bcube.cc(296): note: while compiling class template member function 'void gloo::CudaAllreduceBcube>::createNodes(void)' 2025-07-24T03:56:38.6846145Z C:\actions-runner\_work\pytorch\pytorch\third_party\gloo\gloo\cuda_allreduce_bcube.cc(298): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::emplace_back(int &,const size_t &)' being compiled 2025-07-24T03:56:38.6848227Z with 2025-07-24T03:56:38.6848552Z [ 2025-07-24T03:56:38.6848901Z _Ty=gloo::cuda::bcube::Node 2025-07-24T03:56:38.6849351Z ] 2025-07-24T03:56:38.6851471Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(862): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(int &,const size_t &)' being compiled 2025-07-24T03:56:38.6853765Z with 2025-07-24T03:56:38.6854105Z [ 2025-07-24T03:56:38.6854469Z _Ty=gloo::cuda::bcube::Node 2025-07-24T03:56:38.6854951Z ] 2025-07-24T03:56:38.6857029Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(780): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(int &,const size_t &)' being compiled 2025-07-24T03:56:38.6859329Z with 2025-07-24T03:56:38.6859697Z [ 2025-07-24T03:56:38.6860029Z _Ty=gloo::cuda::bcube::Node 2025-07-24T03:56:38.6860492Z ] 2025-07-24T03:56:38.7130617Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(798): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,int&,const size_t&>(_Alloc &,_Objty *const ,int &,const size_t &)' being compiled 2025-07-24T03:56:38.7133002Z with 2025-07-24T03:56:38.7133296Z [ 2025-07-24T03:56:38.7133698Z _Alloc=std::allocator, 2025-07-24T03:56:38.7134248Z _Ty=gloo::cuda::bcube::Node, 2025-07-24T03:56:38.7134789Z _Objty=gloo::cuda::bcube::Node 2025-07-24T03:56:38.7135266Z ] 2025-07-24T03:56:38.7136033Z [2105/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_ring_chunked.cc.obj 2025-07-24T03:56:38.7159488Z [2106/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_ring.cc.obj 2025-07-24T03:56:38.8466062Z [2107/7681] Linking CXX shared library bin\fbgemm.dll 2025-07-24T03:56:39.0617325Z [2108/7681] Linking CXX static library lib\kineto.lib 2025-07-24T03:56:39.1402022Z [2109/7681] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_broadcast_one_to_all.cc.obj 2025-07-24T03:56:40.9157813Z [2110/7681] Building CUDA object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda.cu.obj 2025-07-24T03:56:40.9187453Z cuda.cu 2025-07-24T03:56:40.9187895Z tmpxft_000017bc_00000000-7_cuda.cudafe1.cpp 2025-07-24T03:56:40.9188504Z [2111/7681] Linking CXX static library lib\onnx.lib 2025-07-24T03:56:41.4399490Z [2112/7681] Building CUDA object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_private.cu.obj 2025-07-24T03:56:41.4523008Z cuda_private.cu 2025-07-24T03:56:41.4523498Z tmpxft_000015b0_00000000-7_cuda_private.cudafe1.cpp 2025-07-24T03:56:41.4524224Z [2113/7681] Linking CXX shared library bin\c10.dll 2025-07-24T03:56:42.1160184Z [2114/7681] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAException.cpp.obj 2025-07-24T03:56:42.6525685Z [2115/7681] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAAllocatorConfig.cpp.obj 2025-07-24T03:56:42.7416380Z [2116/7681] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDADeviceAssertionHost.cpp.obj 2025-07-24T03:56:42.9765509Z [2117/7681] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAMiscFunctions.cpp.obj 2025-07-24T03:56:43.2767935Z [2118/7681] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAFunctions.cpp.obj 2025-07-24T03:56:43.3300868Z [2119/7681] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\driver_api.cpp.obj 2025-07-24T03:56:43.4589193Z [2120/7681] Linking C static library sleef\lib\sleef.lib 2025-07-24T03:56:43.7718871Z [2121/7681] Linking CXX static library lib\gloo_cuda.lib 2025-07-24T03:56:44.1568409Z [2122/7681] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAMallocAsyncAllocator.cpp.obj 2025-07-24T03:56:44.3647169Z [2123/7681] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\impl\CUDATest.cpp.obj 2025-07-24T03:56:44.4256758Z [2124/7681] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest.dir\src\gtest-all.cc.obj 2025-07-24T03:56:45.0917065Z [2125/7681] Generating C:/actions-runner/_work/pytorch/pytorch/torch/utils/data/datapipes/datapipe.pyi 2025-07-24T03:56:45.2596111Z [2126/7681] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\impl\CUDAGuardImpl.cpp.obj 2025-07-24T03:56:45.3110384Z [2127/7681] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAStream.cpp.obj 2025-07-24T03:56:47.1720945Z [2128/7681] Regenerating version file... 2025-07-24T03:56:47.2158392Z [2129/7681] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\src\gmock-all.cc.obj 2025-07-24T03:56:51.3474329Z [2130/7681] Linking CXX static library lib\gtest.lib 2025-07-24T03:56:51.3750462Z [2131/7681] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\__\googletest\src\gtest-all.cc.obj 2025-07-24T03:56:51.4222730Z [2132/7681] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDACachingAllocator.cpp.obj 2025-07-24T03:56:51.4526340Z [2133/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark.cc.obj 2025-07-24T03:56:51.6603908Z [2134/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_name.cc.obj 2025-07-24T03:56:55.6409161Z [2135/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_api_internal.cc.obj 2025-07-24T03:56:55.6481769Z [2136/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_runner.cc.obj 2025-07-24T03:56:55.6559156Z [2137/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_register.cc.obj 2025-07-24T03:56:56.0634640Z [2138/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\check.cc.obj 2025-07-24T03:56:56.1366900Z [2139/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\colorprint.cc.obj 2025-07-24T03:56:56.1553761Z [2140/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\commandlineflags.cc.obj 2025-07-24T03:56:56.4944713Z [2141/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\counter.cc.obj 2025-07-24T03:56:56.5630380Z [2142/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\complexity.cc.obj 2025-07-24T03:56:56.6808378Z [2143/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\console_reporter.cc.obj 2025-07-24T03:56:57.0050788Z [2144/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\csv_reporter.cc.obj 2025-07-24T03:56:57.0356944Z [2145/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\json_reporter.cc.obj 2025-07-24T03:56:57.1338050Z [2146/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\perf_counters.cc.obj 2025-07-24T03:56:57.1900140Z [2147/7681] Generating C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_3.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_4.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_3.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_4.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterLazy.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/variable_factories.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyIr.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNonNativeIr.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_3.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_4.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_variable_methods.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nn_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_fft_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_linalg_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nested_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_sparse_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_special_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_enum_tag.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.h, C:/actions-runner/_work/pytorch/pytorch/torch/testing/_internal/generated/annotated_fn_args.py, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.cpp 2025-07-24T03:56:58.8353356Z [2148/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\reporter.cc.obj 2025-07-24T03:56:58.8372422Z [2149/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\statistics.cc.obj 2025-07-24T03:56:58.8391600Z [2150/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\string_util.cc.obj 2025-07-24T03:56:59.0139992Z [2151/7681] Generating C:/actions-runner/_work/pytorch/pytorch/torch/_C/__init__.pyi, C:/actions-runner/_work/pytorch/pytorch/torch/_C/_VariableFunctions.pyi, C:/actions-runner/_work/pytorch/pytorch/torch/nn/functional.pyi 2025-07-24T03:56:59.9846660Z [2152/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\AccumulateType.cpp.obj 2025-07-24T03:57:01.3566445Z [2153/7681] Linking CXX static library lib\dnnl.lib 2025-07-24T03:57:01.5600505Z [2154/7681] Linking CXX shared library bin\c10_cuda.dll 2025-07-24T03:57:01.6149599Z [2155/7681] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest_main.dir\src\gtest_main.cc.obj 2025-07-24T03:57:02.1560088Z [2156/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Context.cpp.obj 2025-07-24T03:57:02.5344923Z [2157/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CPUGeneratorImpl.cpp.obj 2025-07-24T03:57:03.1832477Z [2158/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Dispatch.cpp.obj 2025-07-24T03:57:03.5186198Z [2159/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FuncTorchTLS.cpp.obj 2025-07-24T03:57:04.0642114Z [2160/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DeviceAccelerator.cpp.obj 2025-07-24T03:57:04.9481596Z [2161/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\EmptyTensor.cpp.obj 2025-07-24T03:57:06.3423792Z [2162/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DynamicLibrary.cpp.obj 2025-07-24T03:57:08.8448839Z [2163/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ConjugateFallback.cpp.obj 2025-07-24T03:57:11.2438852Z [2164/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ExpandUtils.cpp.obj 2025-07-24T03:57:16.5835354Z [2165/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalStorageImpl.cpp.obj 2025-07-24T03:57:18.1765615Z [2166/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CachedTensorUtils.cpp.obj 2025-07-24T03:57:18.9860074Z [2167/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalTensorWrapper.cpp.obj 2025-07-24T03:57:19.5801440Z [2168/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalizeFallbackKernel.cpp.obj 2025-07-24T03:57:19.9674869Z [2169/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapMode.cpp.obj 2025-07-24T03:57:22.5927422Z [2170/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DLConvertor.cpp.obj 2025-07-24T03:57:22.5967471Z [2171/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MemoryOverlap.cpp.obj 2025-07-24T03:57:23.1390262Z [2172/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MapAllocator.cpp.obj 2025-07-24T03:57:25.1551807Z [2173/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedTensorImpl.cpp.obj 2025-07-24T03:57:25.2336447Z [2174/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelNative.cpp.obj 2025-07-24T03:57:27.9093641Z [2175/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelCommon.cpp.obj 2025-07-24T03:57:28.4068924Z [2176/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalInverses.cpp.obj 2025-07-24T03:57:31.3877636Z [2177/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NamedTensorUtils.cpp.obj 2025-07-24T03:57:31.4293291Z [2178/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\PythonTorchFunctionTLS.cpp.obj 2025-07-24T03:57:35.0761372Z [2179/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelOpenMP.cpp.obj 2025-07-24T03:57:35.2651710Z [2180/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SequenceNumber.cpp.obj 2025-07-24T03:57:35.2805467Z [2181/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SavedTensorHooks.cpp.obj 2025-07-24T03:57:36.6326889Z [2182/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedFallback.cpp.obj 2025-07-24T03:57:38.0980423Z [2183/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelThreadPoolNative.cpp.obj 2025-07-24T03:57:40.8032168Z [2184/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapTransforms.cpp.obj 2025-07-24T03:57:40.8068968Z [2185/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorGeometry.cpp.obj 2025-07-24T03:57:44.0530671Z [2186/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ScalarOps.cpp.obj 2025-07-24T03:57:44.6936795Z [2187/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NestedTensorImpl.cpp.obj 2025-07-24T03:57:46.5952114Z [2188/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorMeta.cpp.obj 2025-07-24T03:57:49.6706871Z [2189/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchingRegistrations.cpp.obj 2025-07-24T03:57:53.0047685Z [2190/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIndexing.cpp.obj 2025-07-24T03:57:53.8640366Z [2191/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalPythonObjects.cpp.obj 2025-07-24T03:57:54.0529097Z [2192/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\StorageUtils.cpp.obj 2025-07-24T03:57:55.9796183Z [2193/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorNames.cpp.obj 2025-07-24T03:57:56.4385577Z [2194/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIterator.cpp.obj 2025-07-24T03:58:00.5169252Z [2195/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseTensorImpl.cpp.obj 2025-07-24T03:58:00.9127263Z [2196/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseCsrTensorImpl.cpp.obj 2025-07-24T03:58:01.0709075Z [2197/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\FlushDenormal.cpp.obj 2025-07-24T03:58:01.1696368Z [2198/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\Utils.cpp.obj 2025-07-24T03:58:02.2305871Z [2199/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Version.cpp.obj 2025-07-24T03:58:02.5837817Z [2200/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CPUGuardImpl.cpp.obj 2025-07-24T03:58:04.5570902Z [2201/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CUDAHooksInterface.cpp.obj 2025-07-24T03:58:04.8559354Z [2202/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HIPHooksInterface.cpp.obj 2025-07-24T03:58:09.3830158Z [2203/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\VmapModeRegistrations.cpp.obj 2025-07-24T03:58:09.7610720Z [2204/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorUtils.cpp.obj 2025-07-24T03:58:10.0952333Z [2205/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\IPUHooksInterface.cpp.obj 2025-07-24T03:58:10.1473659Z [2206/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HPUHooksInterface.cpp.obj 2025-07-24T03:58:11.5949396Z [2207/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MetaGuardImpl.cpp.obj 2025-07-24T03:58:12.1282143Z [2208/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MAIAHooksInterface.cpp.obj 2025-07-24T03:58:12.5918349Z [2209/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MPSHooksInterface.cpp.obj 2025-07-24T03:58:12.8916286Z [2210/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MTIAHooksInterface.cpp.obj 2025-07-24T03:58:13.1300366Z [2211/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Utils.cpp.obj 2025-07-24T03:58:14.2001921Z [2212/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\PrivateUse1HooksInterface.cpp.obj 2025-07-24T03:58:15.3357687Z [2213/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\XPUHooksInterface.cpp.obj 2025-07-24T03:58:18.0187456Z [2214/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalState.cpp.obj 2025-07-24T03:58:21.3728856Z [2215/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ZeroTensorFallback.cpp.obj 2025-07-24T03:58:25.4251973Z [2216/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\ADInterpreters.cpp.obj 2025-07-24T03:58:30.6238365Z [2217/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\autocast_mode.cpp.obj 2025-07-24T03:58:45.1291047Z [2218/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesActivation.cpp.obj 2025-07-24T03:58:45.9177586Z [2219/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesConvolution.cpp.obj 2025-07-24T03:58:52.8483404Z [2220/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDynamic.cpp.obj 2025-07-24T03:58:52.8748760Z [2221/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesBinaryOps.cpp.obj 2025-07-24T03:58:53.1071037Z [2222/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDecompositions.cpp.obj 2025-07-24T03:58:53.9380922Z [2223/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesFactory.cpp.obj 2025-07-24T03:58:57.7697204Z [2224/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesHelper.cpp.obj 2025-07-24T03:59:07.7717224Z [2225/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesIndexing.cpp.obj 2025-07-24T03:59:20.8436284Z [2226/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLoss.cpp.obj 2025-07-24T03:59:22.3153198Z [2227/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesPooling.cpp.obj 2025-07-24T03:59:27.4781852Z [2228/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesModules.cpp.obj 2025-07-24T03:59:27.4989474Z [2229/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesNorm.cpp.obj 2025-07-24T03:59:27.5200225Z [2230/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesRandomness.cpp.obj 2025-07-24T03:59:27.8561292Z [2231/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLinearAlgebra.cpp.obj 2025-07-24T03:59:29.8292319Z [2232/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesReduceOps.cpp.obj 2025-07-24T03:59:34.8224682Z [2233/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedTensorImpl.cpp.obj 2025-07-24T03:59:38.7374214Z [2234/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\FunctionalizeInterpreter.cpp.obj 2025-07-24T03:59:40.9752773Z [2235/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\Interpreter.cpp.obj 2025-07-24T03:59:47.7853205Z [2236/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesScatterOps.cpp.obj 2025-07-24T03:59:50.0305843Z [2237/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedFallback.cpp.obj 2025-07-24T03:59:55.0548754Z [2238/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesUnaryOps.cpp.obj 2025-07-24T03:59:56.5680136Z [2239/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesViews.cpp.obj 2025-07-24T03:59:57.8649074Z [2240/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PlumbingHelper.cpp.obj 2025-07-24T04:00:00.2534996Z [2241/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\DynamicLayer.cpp.obj 2025-07-24T04:00:00.3402953Z [2242/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenGeneral.cpp.obj 2025-07-24T04:00:07.2684481Z [2243/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\TensorWrapper.cpp.obj 2025-07-24T04:00:08.1135234Z [2244/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyVmapTransforms.cpp.obj 2025-07-24T04:00:09.7084782Z [2245/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapInterpreter.cpp.obj 2025-07-24T04:00:10.1883374Z [2246/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\CachingHostAllocator.cpp.obj 2025-07-24T04:00:10.5154670Z [2247/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\record_function.cpp.obj 2025-07-24T04:00:12.8960962Z [2248/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypePropertiesRegistry.cpp.obj 2025-07-24T04:00:13.4203411Z [2249/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dimname.cpp.obj 2025-07-24T04:00:13.9648801Z [2250/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\BackendSelectFallbackKernel.cpp.obj 2025-07-24T04:00:15.1116406Z [2251/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyBatchingRegistrations.cpp.obj 2025-07-24T04:00:15.4049858Z [2252/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypeProperties.cpp.obj 2025-07-24T04:00:16.7930082Z [2253/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\GeneratorForPrivateuseone.cpp.obj 2025-07-24T04:00:19.9522144Z [2254/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dict.cpp.obj 2025-07-24T04:00:20.0968960Z [2255/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Generator.cpp.obj 2025-07-24T04:00:20.6110267Z [2256/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PyTorchOperatorHacks.cpp.obj 2025-07-24T04:00:21.1095556Z [2257/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Formatting.cpp.obj 2025-07-24T04:00:21.7535855Z [2258/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NestedIntSymNodeImpl.cpp.obj 2025-07-24T04:00:22.7618789Z [2259/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedTensor.cpp.obj 2025-07-24T04:00:23.1190566Z [2260/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Range.cpp.obj 2025-07-24T04:00:26.7106039Z [2261/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapModeRegistrations.cpp.obj 2025-07-24T04:00:26.8885079Z [2262/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\List.cpp.obj 2025-07-24T04:00:29.3751792Z [2263/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\MetaFallbackKernel.cpp.obj 2025-07-24T04:00:31.7114212Z [2264/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Vitals.cpp.obj 2025-07-24T04:00:32.7786734Z [2265/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonFallbackKernel.cpp.obj 2025-07-24T04:00:32.9382986Z [2266/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedRegistrations.cpp.obj 2025-07-24T04:00:35.4029576Z [2267/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableHooksInterface.cpp.obj 2025-07-24T04:00:35.5453856Z [2268/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonOpRegistrationTrampoline.cpp.obj 2025-07-24T04:00:36.1440504Z [2269/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Tensor.cpp.obj 2025-07-24T04:00:37.1174354Z [2270/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\blob.cpp.obj 2025-07-24T04:00:37.9745738Z [2271/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TorchDispatchUtils.cpp.obj 2025-07-24T04:00:39.4152732Z [2272/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\ObservedOperators.cpp.obj 2025-07-24T04:00:43.1620056Z [2273/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableFallbackKernel.cpp.obj 2025-07-24T04:00:44.3309774Z [2274/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\adaption.cpp.obj 2025-07-24T04:00:45.0738579Z [2275/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\boxing\KernelFunction.cpp.obj 2025-07-24T04:00:49.2437176Z [2276/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\DispatchKeyExtractor.cpp.obj 2025-07-24T04:00:49.4628703Z [2277/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\custom_class.cpp.obj 2025-07-24T04:00:49.8701708Z [2278/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\class_type.cpp.obj 2025-07-24T04:00:49.9235447Z [2279/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\Dispatcher.cpp.obj 2025-07-24T04:00:57.7497804Z [2280/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\OperatorEntry.cpp.obj 2025-07-24T04:00:59.2410275Z [2281/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dynamic_type.cpp.obj 2025-07-24T04:01:00.1191572Z [2282/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\function_schema.cpp.obj 2025-07-24T04:01:01.2416699Z [2283/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ivalue.cpp.obj 2025-07-24T04:01:02.9876706Z [2284/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\operator_name.cpp.obj 2025-07-24T04:01:04.4475690Z [2285/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\infer_schema.cpp.obj 2025-07-24T04:01:04.6025051Z [2286/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\library.cpp.obj 2025-07-24T04:01:04.6578166Z [2287/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\op_registration.cpp.obj 2025-07-24T04:01:04.9043669Z [2288/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\register_symbols.cpp.obj 2025-07-24T04:01:06.5359288Z [2289/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\error_report.cpp.obj 2025-07-24T04:01:08.2309885Z [2290/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\lexer.cpp.obj 2025-07-24T04:01:09.3880110Z [2291/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\strtod.cpp.obj 2025-07-24T04:01:10.5808127Z [2292/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\tensor_type.cpp.obj 2025-07-24T04:01:11.1549838Z [2293/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type_factory.cpp.obj 2025-07-24T04:01:14.2383597Z [2294/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type.cpp.obj 2025-07-24T04:01:15.4850556Z [2295/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\union_type.cpp.obj 2025-07-24T04:01:17.1061216Z [2296/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\interned_strings.cpp.obj 2025-07-24T04:01:19.0702455Z [2297/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\function_schema_parser.cpp.obj 2025-07-24T04:01:21.1870742Z [2298/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_type_parser.cpp.obj 2025-07-24T04:01:21.8148561Z [2299/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling.cpp.obj 2025-07-24T04:01:23.5124392Z [2300/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling2d.cpp.obj 2025-07-24T04:01:24.0966209Z [2301/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling3d.cpp.obj 2025-07-24T04:01:24.1102620Z [2302/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\source_range.cpp.obj 2025-07-24T04:01:27.1724758Z [2303/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling3d.cpp.obj 2025-07-24T04:01:28.3027982Z [2304/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Activation.cpp.obj 2025-07-24T04:01:32.5930020Z [2305/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AffineGridGenerator.cpp.obj 2025-07-24T04:01:32.6480995Z [2306/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AmpKernels.cpp.obj 2025-07-24T04:01:35.6815914Z [2307/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool2d.cpp.obj 2025-07-24T04:01:35.7937848Z [2308/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AutogradComposite.cpp.obj 2025-07-24T04:01:37.3849851Z [2309/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebra.cpp.obj 2025-07-24T04:01:37.4512000Z [2310/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool3d.cpp.obj 2025-07-24T04:01:39.1347565Z [2311/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BlasKernel.cpp.obj 2025-07-24T04:01:43.1121016Z [2312/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebraKernel.cpp.obj 2025-07-24T04:01:44.9470587Z [2313/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BinaryOps.cpp.obj 2025-07-24T04:01:46.4739012Z [2314/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Blas.cpp.obj 2025-07-24T04:01:46.7590905Z [2315/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Bucketization.cpp.obj 2025-07-24T04:01:51.4548145Z [2316/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUFallback.cpp.obj 2025-07-24T04:01:51.4644184Z [2317/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUBlas.cpp.obj 2025-07-24T04:01:51.9608129Z [2318/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ComparisonUtils.cpp.obj 2025-07-24T04:01:53.3396578Z [2319/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ChanelShuffle.cpp.obj 2025-07-24T04:01:54.0802686Z [2320/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Col2Im.cpp.obj 2025-07-24T04:01:59.8799007Z [2321/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Constraints.cpp.obj 2025-07-24T04:02:00.2668732Z [2322/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM2d.cpp.obj 2025-07-24T04:02:02.6075982Z [2323/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM3d.cpp.obj 2025-07-24T04:02:03.2485606Z [2324/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionTBC.cpp.obj 2025-07-24T04:02:04.0866909Z [2325/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Convolution.cpp.obj 2025-07-24T04:02:04.1690508Z [2326/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DispatchStub.cpp.obj 2025-07-24T04:02:05.6869548Z [2327/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Correlation.cpp.obj 2025-07-24T04:02:08.6927154Z [2328/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Copy.cpp.obj 2025-07-24T04:02:08.7304242Z [2329/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Cross.cpp.obj 2025-07-24T04:02:12.5174124Z [2330/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool2d.cpp.obj 2025-07-24T04:02:12.6965442Z [2331/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool3d.cpp.obj 2025-07-24T04:02:15.8489333Z [2332/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distance.cpp.obj 2025-07-24T04:02:17.6572797Z [2333/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Dropout.cpp.obj 2025-07-24T04:02:19.6676361Z [2334/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distributions.cpp.obj 2025-07-24T04:02:19.8323526Z [2335/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Embedding.cpp.obj 2025-07-24T04:02:22.4232810Z [2336/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool2d.cpp.obj 2025-07-24T04:02:22.7261057Z [2337/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Fill.cpp.obj 2025-07-24T04:02:24.0063185Z [2338/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\EmbeddingBag.cpp.obj 2025-07-24T04:02:25.9228664Z [2339/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ForeachOpsKernels.cpp.obj 2025-07-24T04:02:29.8144216Z [2340/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool3d.cpp.obj 2025-07-24T04:02:30.0773218Z [2341/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FunctionOfAMatrixUtils.cpp.obj 2025-07-24T04:02:32.6021388Z [2342/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdagrad.cpp.obj 2025-07-24T04:02:32.8587892Z [2343/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdam.cpp.obj 2025-07-24T04:02:33.2075408Z [2344/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedSGD.cpp.obj 2025-07-24T04:02:35.1153686Z [2345/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GatedLinearUnit.cpp.obj 2025-07-24T04:02:39.0081876Z [2346/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Histogram.cpp.obj 2025-07-24T04:02:41.1706536Z [2347/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GridSampler.cpp.obj 2025-07-24T04:02:43.9237201Z [2348/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Lerp.cpp.obj 2025-07-24T04:02:44.1070077Z [2349/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LegacyBatching.cpp.obj 2025-07-24T04:02:44.3580121Z [2350/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\IndexingUtils.cpp.obj 2025-07-24T04:02:45.6476138Z [2351/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Itertools.cpp.obj 2025-07-24T04:02:46.9464029Z [2352/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Integration.cpp.obj 2025-07-24T04:02:46.9539547Z [2353/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Im2Col.cpp.obj 2025-07-24T04:02:54.0079820Z [2354/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiLabelMargin.cpp.obj 2025-07-24T04:02:54.6604397Z [2355/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Linear.cpp.obj 2025-07-24T04:02:56.8632141Z [2356/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossCTC.cpp.obj 2025-07-24T04:02:57.2016842Z [2357/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiMargin.cpp.obj 2025-07-24T04:02:57.2766890Z [2358/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Loss.cpp.obj 2025-07-24T04:03:00.5516993Z [2359/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL2d.cpp.obj 2025-07-24T04:03:02.4072316Z [2360/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LinearAlgebra.cpp.obj 2025-07-24T04:03:02.4288164Z [2361/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL.cpp.obj 2025-07-24T04:03:04.6565564Z [2362/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MetaTensor.cpp.obj 2025-07-24T04:03:08.4819494Z [2363/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxUnpooling.cpp.obj 2025-07-24T04:03:09.2091919Z [2364/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Memory.cpp.obj 2025-07-24T04:03:11.0586432Z [2365/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NNPACK.cpp.obj 2025-07-24T04:03:11.1265941Z [2366/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxPooling.cpp.obj 2025-07-24T04:03:12.7178697Z [2367/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose2d.cpp.obj 2025-07-24T04:03:13.9020850Z [2368/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose3d.cpp.obj 2025-07-24T04:03:16.4978126Z [2369/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveDilatedConvolution.cpp.obj 2025-07-24T04:03:21.0846750Z [2370/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NamedTensor.cpp.obj 2025-07-24T04:03:22.7123918Z [2371/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Onehot.cpp.obj 2025-07-24T04:03:23.6028553Z [2372/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PackedSequence.cpp.obj 2025-07-24T04:03:26.2225676Z [2373/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PadNd.cpp.obj 2025-07-24T04:03:26.3042936Z [2374/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PixelShuffle.cpp.obj 2025-07-24T04:03:26.9271029Z [2375/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Normalization.cpp.obj 2025-07-24T04:03:27.5252017Z [2376/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NegateFallback.cpp.obj 2025-07-24T04:03:29.0042220Z [2377/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PointwiseOps.cpp.obj 2025-07-24T04:03:34.5662050Z [2378/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pow.cpp.obj 2025-07-24T04:03:35.2057668Z [2379/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pooling.cpp.obj 2025-07-24T04:03:38.3355074Z [2380/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceAllOps.cpp.obj 2025-07-24T04:03:38.4419183Z [2381/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RangeFactories.cpp.obj 2025-07-24T04:03:38.5091027Z [2382/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\QuantizedLinear.cpp.obj 2025-07-24T04:03:41.2496225Z [2383/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceOps.cpp.obj 2025-07-24T04:03:42.4430517Z [2384/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReflectionPad.cpp.obj 2025-07-24T04:03:46.8993166Z [2385/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReplicationPadding.cpp.obj 2025-07-24T04:03:48.9927234Z [2386/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RNN.cpp.obj 2025-07-24T04:03:49.7908748Z [2387/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RowwisePrune.cpp.obj 2025-07-24T04:03:50.0178126Z [2388/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Repeat.cpp.obj 2025-07-24T04:03:51.7002222Z [2389/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Scalar.cpp.obj 2025-07-24T04:03:53.0822220Z [2390/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Resize.cpp.obj 2025-07-24T04:03:56.9828031Z [2391/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOps.cpp.obj 2025-07-24T04:03:57.1759686Z [2392/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SegmentReduce.cpp.obj 2025-07-24T04:04:00.7784538Z [2393/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOpsUtils.cpp.obj 2025-07-24T04:04:02.9859623Z [2394/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SoftMax.cpp.obj 2025-07-24T04:04:04.0590676Z [2395/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Sorting.cpp.obj 2025-07-24T04:04:04.5667243Z [2396/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SummaryOps.cpp.obj 2025-07-24T04:04:07.1312123Z [2397/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SpectralOps.cpp.obj 2025-07-24T04:04:12.1034801Z [2398/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorCompare.cpp.obj 2025-07-24T04:04:14.4804629Z [2399/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorProperties.cpp.obj 2025-07-24T04:04:15.6065791Z [2400/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SparseTensorUtils.cpp.obj 2025-07-24T04:04:15.7442936Z [2401/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorIteratorReduce.cpp.obj 2025-07-24T04:04:17.2171954Z [2402/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorFactories.cpp.obj 2025-07-24T04:04:26.3763388Z [2403/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorTransformations.cpp.obj 2025-07-24T04:04:26.4835258Z [2404/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorShape.cpp.obj 2025-07-24T04:04:27.6099303Z [2405/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TestOps.cpp.obj 2025-07-24T04:04:28.2845255Z [2406/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TriangularOps.cpp.obj 2025-07-24T04:04:28.4453565Z [2407/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TypeProperties.cpp.obj 2025-07-24T04:04:29.4610520Z [2408/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold2d.cpp.obj 2025-07-24T04:04:34.1399870Z [2409/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorConversions.cpp.obj 2025-07-24T04:04:34.2248920Z [2410/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorAdvancedIndexing.cpp.obj 2025-07-24T04:04:34.8997748Z [2411/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnaryOps.cpp.obj 2025-07-24T04:04:35.2103803Z [2412/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold3d.cpp.obj 2025-07-24T04:04:35.5714692Z [2413/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSample.cpp.obj 2025-07-24T04:04:38.0685574Z [2414/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnfoldBackward.cpp.obj 2025-07-24T04:04:41.3283639Z [2415/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unique.cpp.obj 2025-07-24T04:04:41.8063581Z [2416/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBicubic2d.cpp.obj 2025-07-24T04:04:47.2015557Z [2417/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBilinear2d.cpp.obj 2025-07-24T04:04:47.9944165Z [2418/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest2d.cpp.obj 2025-07-24T04:04:48.7464772Z [2419/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest3d.cpp.obj 2025-07-24T04:04:50.1477513Z [2420/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleLinear1d.cpp.obj 2025-07-24T04:04:50.8683573Z [2421/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest1d.cpp.obj 2025-07-24T04:04:51.3513701Z [2422/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleTrilinear3d.cpp.obj 2025-07-24T04:04:55.6839890Z [2423/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\VariableMethodStubs.cpp.obj 2025-07-24T04:04:55.7491234Z [2424/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\WeightNorm.cpp.obj 2025-07-24T04:04:55.7890961Z [2425/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\prim_native_functions.cpp.obj 2025-07-24T04:04:57.8454037Z [2426/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\group_norm.cpp.obj 2025-07-24T04:05:00.6184858Z [2427/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\layer_norm.cpp.obj 2025-07-24T04:05:01.0954425Z [2428/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\verbose_wrapper.cpp.obj 2025-07-24T04:05:02.0851497Z [2429/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\library.cpp.obj 2025-07-24T04:05:05.8039179Z [2430/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.cpp.obj 2025-07-24T04:05:09.3371042Z [2431/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_dynamic.cpp.obj 2025-07-24T04:05:09.4114293Z [2432/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear.cpp.obj 2025-07-24T04:05:14.4190954Z [2433/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_prepack.cpp.obj 2025-07-24T04:05:15.3268952Z [2434/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_unpack.cpp.obj 2025-07-24T04:05:15.9766322Z [2435/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\FlattenIndicesKernel.cpp.obj 2025-07-24T04:05:18.4325748Z [2436/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ParamUtils.cpp.obj 2025-07-24T04:05:19.5005167Z [2437/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_deserialize.cpp.obj 2025-07-24T04:05:24.2327096Z [2438/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SoftMax.cpp.obj 2025-07-24T04:05:25.6957736Z [2439/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBinaryOpIntersectionKernel.cpp.obj 2025-07-24T04:05:27.7371619Z [2440/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_serialize.cpp.obj 2025-07-24T04:05:29.0612545Z [2441/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlas.cpp.obj 2025-07-24T04:05:31.7550766Z [2442/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensor.cpp.obj 2025-07-24T04:05:31.7706232Z [2443/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlasImpl.cpp.obj 2025-07-24T04:05:35.3459871Z [2444/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseFactories.cpp.obj 2025-07-24T04:05:37.3330741Z [2445/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensorMath.cpp.obj 2025-07-24T04:05:41.0149455Z [2446/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensor.cpp.obj 2025-07-24T04:05:41.1621657Z [2447/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseMatMul.cpp.obj 2025-07-24T04:05:45.3323686Z [2448/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseUnaryOps.cpp.obj 2025-07-24T04:05:45.5683672Z [2449/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensorMath.cpp.obj 2025-07-24T04:05:46.8017392Z [2450/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ValidateCompressedIndicesKernel.cpp.obj 2025-07-24T04:05:54.8282743Z [2451/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorAliases.cpp.obj 2025-07-24T04:05:57.2805165Z [2452/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBackward.cpp.obj 2025-07-24T04:06:00.6351641Z [2453/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBinaryOps.cpp.obj 2025-07-24T04:06:01.9774227Z [2454/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorFactories.cpp.obj 2025-07-24T04:06:02.3162225Z [2455/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizerBase.cpp.obj 2025-07-24T04:06:06.5330954Z [2456/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMath.cpp.obj 2025-07-24T04:06:07.3673340Z [2457/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUtils.cpp.obj 2025-07-24T04:06:07.7096721Z [2458/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizer.cpp.obj 2025-07-24T04:06:08.1028808Z [2459/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMatmul.cpp.obj 2025-07-24T04:06:11.0021389Z [2460/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorTransformerFunctions.cpp.obj 2025-07-24T04:06:12.5850763Z [2461/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUnaryOps.cpp.obj 2025-07-24T04:06:12.6429501Z [2462/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ACLUtils.cpp.obj 2025-07-24T04:06:21.9845529Z [2463/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AdaptiveAveragePooling.cpp.obj 2025-07-24T04:06:26.1125763Z [2464/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\Copy.cpp.obj 2025-07-24T04:06:28.1696074Z [2465/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerChannelAffine.cpp.obj 2025-07-24T04:06:28.5960338Z [2466/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorCompare.cpp.obj 2025-07-24T04:06:29.5608722Z [2467/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerTensorAffine.cpp.obj 2025-07-24T04:06:30.9913726Z [2468/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\QTensor.cpp.obj 2025-07-24T04:06:32.9171620Z [2469/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorAdvancedIndexing.cpp.obj 2025-07-24T04:06:37.0731979Z [2470/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorFactories.cpp.obj 2025-07-24T04:06:37.9050110Z [2471/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ChannelShuffle.cpp.obj 2025-07-24T04:06:38.8069925Z [2472/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool2d.cpp.obj 2025-07-24T04:06:41.3798446Z [2473/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\IntReprQuant.cpp.obj 2025-07-24T04:06:41.4350847Z [2474/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\RuyUtils.cpp.obj 2025-07-24T04:06:41.6227565Z [2475/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\BinaryOps.cpp.obj 2025-07-24T04:06:41.6384535Z [2476/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool3d.cpp.obj 2025-07-24T04:06:47.4862018Z [2477/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\MakePerTensorQuantizedTensor.cpp.obj 2025-07-24T04:06:50.3720555Z [2478/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ReduceOps.cpp.obj 2025-07-24T04:06:53.7422264Z [2479/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Normalization.cpp.obj 2025-07-24T04:06:54.1637382Z [2480/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Sorting.cpp.obj 2025-07-24T04:06:55.0782013Z [2481/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\LinearUnpackImpl.cpp.obj 2025-07-24T04:06:55.2618840Z [2482/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorOperators.cpp.obj 2025-07-24T04:06:56.0853930Z [2483/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Pooling.cpp.obj 2025-07-24T04:06:56.1528710Z [2484/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\init_qnnpack.cpp.obj 2025-07-24T04:06:59.6995497Z [2485/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorShape.cpp.obj 2025-07-24T04:07:04.5852028Z [2486/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest3d.cpp.obj 2025-07-24T04:07:04.6170428Z [2487/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest2d.cpp.obj 2025-07-24T04:07:06.1990055Z [2488/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleBilinear2d.cpp.obj 2025-07-24T04:07:06.7324394Z [2489/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fused_obs_fake_quant.cpp.obj 2025-07-24T04:07:10.2159743Z [2490/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qclamp.cpp.obj 2025-07-24T04:07:16.2992703Z [2491/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fbgemm_utils.cpp.obj 2025-07-24T04:07:17.3858067Z [2492/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\XnnpackUtils.cpp.obj 2025-07-24T04:07:21.6150160Z [2493/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_dynamic.cpp.obj 2025-07-24T04:07:23.3905146Z [2494/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv.cpp.obj 2025-07-24T04:07:26.9266575Z [2495/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qelu.cpp.obj 2025-07-24T04:07:27.7444207Z [2496/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_prepack.cpp.obj 2025-07-24T04:07:32.9905894Z [2497/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qgelu.cpp.obj 2025-07-24T04:07:35.7281542Z [2498/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag.cpp.obj 2025-07-24T04:07:37.0178592Z [2499/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_prepack.cpp.obj 2025-07-24T04:07:38.3463913Z [2500/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_unpack.cpp.obj 2025-07-24T04:07:39.3358525Z [2501/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardsigmoid.cpp.obj 2025-07-24T04:07:40.3848676Z [2502/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qdropout.cpp.obj 2025-07-24T04:07:45.2139795Z [2503/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_unpack_impl.cpp.obj 2025-07-24T04:07:46.9656092Z [2504/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardswish.cpp.obj 2025-07-24T04:07:53.5292278Z [2505/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qnormalization.cpp.obj 2025-07-24T04:07:56.1649270Z [2506/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_dynamic.cpp.obj 2025-07-24T04:07:57.3250410Z [2507/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmul.cpp.obj 2025-07-24T04:08:01.4187485Z [2508/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_prepack.cpp.obj 2025-07-24T04:08:02.5273546Z [2509/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear.cpp.obj 2025-07-24T04:08:03.4777883Z [2510/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qrelu.cpp.obj 2025-07-24T04:08:06.1915605Z [2511/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsigmoid.cpp.obj 2025-07-24T04:08:07.9586559Z [2512/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qtanh.cpp.obj 2025-07-24T04:08:08.0675259Z [2513/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\MklAllocationHelper.cpp.obj 2025-07-24T04:08:10.5399330Z [2514/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmatmul.cpp.obj 2025-07-24T04:08:10.5432472Z [2515/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\LinearAlgebra.cpp.obj 2025-07-24T04:08:11.8878732Z [2516/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qthreshold.cpp.obj 2025-07-24T04:08:14.6319823Z [2517/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\library.cpp.obj 2025-07-24T04:08:21.9790817Z [2518/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseBlasImpl.cpp.obj 2025-07-24T04:08:22.6860459Z [2519/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsoftmax.cpp.obj 2025-07-24T04:08:23.9233618Z [2520/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SpectralOps.cpp.obj 2025-07-24T04:08:24.6660791Z [2521/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseCsrLinearAlgebra.cpp.obj 2025-07-24T04:08:25.0030086Z [2522/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qconv_unpack.cpp.obj 2025-07-24T04:08:26.7036021Z [2523/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\BinaryOps.cpp.obj 2025-07-24T04:08:29.4881080Z [2524/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\IDeepRegistration.cpp.obj 2025-07-24T04:08:31.3373886Z [2525/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Copy.cpp.obj 2025-07-24T04:08:37.7624050Z [2526/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qlinear_unpack.cpp.obj 2025-07-24T04:08:39.2585699Z [2527/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Conv.cpp.obj 2025-07-24T04:08:39.5533756Z [2528/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Gelu.cpp.obj 2025-07-24T04:08:41.0605464Z [2529/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNCommon.cpp.obj 2025-07-24T04:08:45.6830894Z [2530/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Linear.cpp.obj 2025-07-24T04:08:47.4370064Z [2531/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MkldnnTensorMath.cpp.obj 2025-07-24T04:08:51.4911239Z [2532/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNConversions.cpp.obj 2025-07-24T04:08:52.6564778Z [2533/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Matmul.cpp.obj 2025-07-24T04:08:55.2610394Z [2534/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Normalization.cpp.obj 2025-07-24T04:08:56.2881768Z [2535/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\ConvPrepack.cpp.obj 2025-07-24T04:09:00.4148006Z [2536/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Pooling.cpp.obj 2025-07-24T04:09:04.3732923Z [2537/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\SoftMax.cpp.obj 2025-07-24T04:09:04.9538945Z [2538/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorFactories.cpp.obj 2025-07-24T04:09:05.5523564Z [2539/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\OpContext.cpp.obj 2025-07-24T04:09:07.9477667Z [2540/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Relu.cpp.obj 2025-07-24T04:09:10.0412759Z [2541/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorShape.cpp.obj 2025-07-24T04:09:15.2738896Z [2542/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\UnaryOps.cpp.obj 2025-07-24T04:09:19.7618269Z [2543/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RegisterMkldnnOpContextClass.cpp.obj 2025-07-24T04:09:19.8735127Z [2544/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\attention.cpp.obj 2025-07-24T04:09:20.2322379Z [2545/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Utils.cpp.obj 2025-07-24T04:09:21.0838428Z [2546/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\sdp_utils_cpp.cpp.obj 2025-07-24T04:09:22.3315391Z [2547/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Prelu.cpp.obj 2025-07-24T04:09:23.6208998Z [2548/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Init.cpp.obj 2025-07-24T04:09:24.1635060Z [2549/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RNN.cpp.obj 2025-07-24T04:09:24.7301558Z [2550/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\AveragePooling.cpp.obj 2025-07-24T04:09:24.9925803Z [2551/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Activation.cpp.obj 2025-07-24T04:09:25.4070964Z [2552/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\ChannelShuffle.cpp.obj 2025-07-24T04:09:25.4641571Z [2553/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Shim.cpp.obj 2025-07-24T04:09:28.7081299Z [2554/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\utils\Factory.cpp.obj 2025-07-24T04:09:29.2547315Z [2555/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\transformer.cpp.obj 2025-07-24T04:09:30.6895566Z [2556/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Convolution.cpp.obj 2025-07-24T04:09:31.5666093Z [2557/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\MaxPooling.cpp.obj 2025-07-24T04:09:35.2183069Z [2558/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Linear.cpp.obj 2025-07-24T04:09:35.4206007Z [2559/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\OpContext.cpp.obj 2025-07-24T04:09:38.9507455Z [2560/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\RegisterOpContextClass.cpp.obj 2025-07-24T04:09:44.8596253Z [2561/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Functions.cpp.obj 2025-07-24T04:09:46.6601703Z [2562/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CompositeViewCopyKernels.cpp.obj 2025-07-24T04:09:54.6905948Z [2563/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterBackendSelect.cpp.obj 2025-07-24T04:10:18.8227927Z [2564/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_0.cpp.obj 2025-07-24T04:10:20.5294146Z [2565/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_4.cpp.obj 2025-07-24T04:10:37.6258320Z [2566/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_3.cpp.obj 2025-07-24T04:10:40.7847654Z [2567/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutogradNestedTensor_0.cpp.obj 2025-07-24T04:10:40.8648465Z [2568/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_1.cpp.obj 2025-07-24T04:10:47.2200599Z [2569/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_2.cpp.obj 2025-07-24T04:10:58.6961952Z [2570/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutograd_0.cpp.obj 2025-07-24T04:11:13.1066020Z [2571/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_2.cpp.obj 2025-07-24T04:11:15.3360353Z [2572/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutogradNonFunctional_0.cpp.obj 2025-07-24T04:11:21.1184817Z [2573/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_0.cpp.obj 2025-07-24T04:11:25.7124100Z [2574/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_3.cpp.obj 2025-07-24T04:11:26.8780420Z [2575/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_0.cpp.obj 2025-07-24T04:11:28.3129200Z [2576/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_1.cpp.obj 2025-07-24T04:11:40.6414714Z [2577/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMkldnnCPU_0.cpp.obj 2025-07-24T04:11:46.3634937Z [2578/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorCPU_0.cpp.obj 2025-07-24T04:11:51.2743673Z [2579/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorHPU_0.cpp.obj 2025-07-24T04:11:51.8999648Z [2580/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutograd_0.cpp.obj 2025-07-24T04:11:59.0242640Z [2581/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_2.cpp.obj 2025-07-24T04:12:01.2852592Z [2582/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_1.cpp.obj 2025-07-24T04:12:10.5284082Z [2583/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorXPU_0.cpp.obj 2025-07-24T04:12:11.3163025Z [2584/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_3.cpp.obj 2025-07-24T04:12:11.3246283Z [2585/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorMeta_0.cpp.obj 2025-07-24T04:12:16.3898023Z [2586/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedMeta_0.cpp.obj 2025-07-24T04:12:18.8341487Z [2587/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedCPU_0.cpp.obj 2025-07-24T04:12:20.2939764Z [2588/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSchema.cpp.obj 2025-07-24T04:12:27.8975733Z [2589/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrMPS_0.cpp.obj 2025-07-24T04:12:30.2751238Z [2590/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCPU_0.cpp.obj 2025-07-24T04:12:32.2240342Z [2591/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMeta_0.cpp.obj 2025-07-24T04:12:32.9086325Z [2592/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrXPU_0.cpp.obj 2025-07-24T04:12:35.7955463Z [2593/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrMeta_0.cpp.obj 2025-07-24T04:12:36.9799402Z [2594/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseMeta_0.cpp.obj 2025-07-24T04:12:37.4393534Z [2595/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPU_add.cpp.obj 2025-07-24T04:12:37.5667415Z [2596/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrCPU_0.cpp.obj 2025-07-24T04:12:39.7298860Z [2597/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TensorMethods.cpp.obj 2025-07-24T04:12:43.0137895Z [2598/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\QTensorImpl.cpp.obj 2025-07-24T04:12:43.7243364Z [2599/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_model_loader.cpp.obj 2025-07-24T04:12:44.2721002Z [2600/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseXPU_0.cpp.obj 2025-07-24T04:12:45.3355200Z [2601/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseMPS_0.cpp.obj 2025-07-24T04:12:45.4380312Z [2602/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_wrapper.cpp.obj 2025-07-24T04:12:48.9291024Z [2603/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterZeroTensor_0.cpp.obj 2025-07-24T04:12:49.4776934Z [2604/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:49.6673043Z [2605/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:52.2428591Z [2606/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:52.7283868Z [2607/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.DEFAULT.cpp.obj 2025-07-24T04:12:57.3993918Z [2608/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\Quantizer.cpp.obj 2025-07-24T04:13:02.0980863Z [2609/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:02.3607433Z [2610/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:02.8396922Z [2611/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_bind.cpp.obj 2025-07-24T04:13:08.9014991Z [2612/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:09.8443932Z [2613/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:10.5460338Z [2614/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:10.8835612Z [2615/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_register.cpp.obj 2025-07-24T04:13:11.8411691Z [2616/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:14.7256859Z [2617/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenOpList.cpp.obj 2025-07-24T04:13:16.7044560Z [2618/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:17.7697025Z [2619/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:17.8922127Z [2620/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:23.4000352Z [2621/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:25.0039828Z [2622/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:25.1439090Z [2623/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:25.3546979Z [2624/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:26.6469768Z [2625/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:28.8690489Z [2626/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:33.2890775Z [2627/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:37.0648780Z [2628/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:41.8965623Z [2629/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:50.0310645Z [2630/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:51.8885884Z [2631/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:52.4649752Z [2632/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:53.6478480Z [2633/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:54.8374794Z [2634/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:55.0634115Z [2635/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:57.2878890Z [2636/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:13:57.2958471Z [2637/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:00.0193387Z [2638/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:01.3649503Z [2639/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:03.0806841Z [2640/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:04.7693802Z [2641/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:05.9800248Z [2642/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:08.9516020Z [2643/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:10.0051645Z [2644/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:10.8074659Z [2645/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:11.2475295Z [2646/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:11.8422888Z [2647/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:15.4370196Z [2648/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:16.1296262Z [2649/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:20.0298378Z [2650/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:20.4285988Z [2651/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:20.4741821Z [2652/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:20.8615006Z [2653/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:21.9735905Z [2654/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:22.2123565Z [2655/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:25.2925609Z [2656/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:28.8054023Z [2657/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:28.8056554Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): warning C4180: qualifier applied to function type has no meaning; ignored 2025-07-24T04:14:28.8061741Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): note: the template instantiation context (the oldest one first) is 2025-07-24T04:14:28.8064804Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(422): note: see reference to class template instantiation 'at::native::`anonymous-namespace'::Dist' being compiled 2025-07-24T04:14:28.8068759Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(190): note: while compiling class template member function 'void at::native::`anonymous-namespace'::Dist::apply_pdist(at::Tensor &,const at::Tensor &,const scalar_t)' 2025-07-24T04:14:28.8071724Z with 2025-07-24T04:14:28.8093841Z [ 2025-07-24T04:14:28.8094406Z scalar_t=scalar_t 2025-07-24T04:14:28.8104450Z ] 2025-07-24T04:14:28.8114978Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see the first reference to 'at::native::`anonymous-namespace'::Dist::apply_pdist' in 'at::native::`anonymous-namespace'::pdist_forward_kernel_impl::::()::::operator ()' 2025-07-24T04:14:28.8131582Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(192): note: see reference to function template instantiation 'void at::native::`anonymous-namespace'::Dist::run_parallel_pdist::zdist_calc>>(at::Tensor &,const at::Tensor &,const scalar_t)' being compiled 2025-07-24T04:14:28.8135568Z with 2025-07-24T04:14:28.8136111Z [ 2025-07-24T04:14:28.8136563Z scalar_t=scalar_t 2025-07-24T04:14:28.8137075Z ] 2025-07-24T04:14:28.8144222Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(175): note: see reference to function template instantiation 'scalar_t at::vec::map2_reduce_all::run_parallel_pdist::::()::,data_t(const data_t &,const data_t &),0>(const MapOp &,ReduceOp (__cdecl &),const scalar_t *,const scalar_t *,int64_t)' being compiled 2025-07-24T04:14:28.8147679Z with 2025-07-24T04:14:28.8148226Z [ 2025-07-24T04:14:28.8148703Z scalar_t=scalar_t, 2025-07-24T04:14:28.8149338Z data_t=at::vec::DEFAULT::Vectorized, 2025-07-24T04:14:28.8150347Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-07-24T04:14:28.8152106Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-07-24T04:14:28.8153270Z ] 2025-07-24T04:14:28.8155393Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(299): note: see reference to function template instantiation 'scalar_t at::vec::vec_reduce_all(Op (__cdecl &),const at::vec::DEFAULT::Vectorized &)' being compiled 2025-07-24T04:14:28.8157801Z with 2025-07-24T04:14:28.8158200Z [ 2025-07-24T04:14:28.8158608Z scalar_t=float, 2025-07-24T04:14:28.8159955Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &), 2025-07-24T04:14:28.8161980Z Op=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-07-24T04:14:28.8163050Z ] 2025-07-24T04:14:34.1342447Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(176): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-07-24T04:14:34.1348910Z with 2025-07-24T04:14:34.1349265Z [ 2025-07-24T04:14:34.1350714Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-07-24T04:14:34.1351745Z ] 2025-07-24T04:14:34.1372747Z [2658/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:34.1418811Z [2659/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:37.3614551Z [2660/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:40.1847177Z [2661/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:40.2691000Z [2662/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:41.7436777Z [2663/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:44.8233906Z [2664/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:50.9095662Z [2665/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:51.7749844Z [2666/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:54.6315195Z [2667/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:58.5002833Z [2668/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:58.6652240Z [2669/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:14:58.8718827Z [2670/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\mkl\SparseBlas.cpp.obj 2025-07-24T04:15:00.2841182Z [2671/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\core\common.cc.obj 2025-07-24T04:15:00.6710770Z [2672/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\vulkan\Context.cpp.obj 2025-07-24T04:15:02.1432358Z [2673/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:15:03.2757235Z [2674/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\istream_adapter.cc.obj 2025-07-24T04:15:04.8433715Z [2675/7681] Building C object caffe2\CMakeFiles\torch_cpu.dir\__\third_party\miniz-3.0.2\miniz.c.obj 2025-07-24T04:15:05.1623151Z C:\actions-runner\_work\pytorch\pytorch\third_party\miniz-3.0.2\miniz.c(3137): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-07-24T04:15:05.1673538Z C:\actions-runner\_work\pytorch\pytorch\third_party\miniz-3.0.2\miniz.c(3137): note: 'WIN32_LEAN_AND_MEAN' previously declared on the command line 2025-07-24T04:15:05.1702008Z [2676/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\inline_container.cc.obj 2025-07-24T04:15:06.2304464Z [2677/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\metal\Context.cpp.obj 2025-07-24T04:15:08.4537240Z [2678/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\read_adapter_interface.cc.obj 2025-07-24T04:15:09.1435213Z [2679/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\file_adapter.cc.obj 2025-07-24T04:15:09.1436441Z [2680/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\crc.cc.obj 2025-07-24T04:15:09.1780513Z [2681/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.DEFAULT.cpp.obj 2025-07-24T04:15:09.5372043Z [2682/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\thread_pool_guard.cpp.obj 2025-07-24T04:15:11.1918032Z [2683/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\pthreadpool-cpp.cc.obj 2025-07-24T04:15:11.4441335Z [2684/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\string_utils.cc.obj 2025-07-24T04:15:15.8571372Z [2685/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\ThreadPool.cc.obj 2025-07-24T04:15:16.3483894Z [2686/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\proto_wrap.cc.obj 2025-07-24T04:15:18.9238662Z [2687/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:15:18.9240611Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): warning C4333: '>>': right shift by too large amount, data loss 2025-07-24T04:15:18.9242664Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_base.h(1194): warning C4333: '>>': right shift by too large amount, data loss 2025-07-24T04:15:18.9244418Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_base.h(1194): note: the template instantiation context (the oldest one first) is 2025-07-24T04:15:20.5977031Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): note: see reference to function template instantiation 'at::vec::DEFAULT::Vectorized at::vec::DEFAULT::operator >>(const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &)' being compiled 2025-07-24T04:15:20.5980341Z [2688/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.DEFAULT.cpp.obj 2025-07-24T04:15:25.6507072Z [2689/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ViewFuncs.cpp.obj 2025-07-24T04:16:18.8297875Z [2690/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\Functions.cpp.obj 2025-07-24T04:16:26.1391507Z [2691/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_1.cpp.obj 2025-07-24T04:16:46.2670963Z [2692/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_1.cpp.obj 2025-07-24T04:16:47.7185804Z [2693/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_2.cpp.obj 2025-07-24T04:16:48.4396892Z [2694/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_0.cpp.obj 2025-07-24T04:16:50.5772680Z [2695/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_0.cpp.obj 2025-07-24T04:16:54.6812496Z [2696/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_4.cpp.obj 2025-07-24T04:16:54.8284609Z [2697/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_3.cpp.obj 2025-07-24T04:16:58.7843601Z [2698/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.cpp.obj 2025-07-24T04:17:06.0496110Z [2699/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterAutogradLazy.cpp.obj 2025-07-24T04:17:21.4310312Z [2700/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_0.cpp.obj 2025-07-24T04:17:27.0369174Z [2701/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_1.cpp.obj 2025-07-24T04:17:39.5169214Z [2702/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterLazy.cpp.obj 2025-07-24T04:17:42.6231706Z [2703/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_2.cpp.obj 2025-07-24T04:17:45.4175182Z [2704/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_4.cpp.obj 2025-07-24T04:17:46.7779364Z [2705/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_3.cpp.obj 2025-07-24T04:17:48.0560166Z [2706/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_meta.cpp.obj 2025-07-24T04:17:48.0923202Z [2707/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\anomaly_mode.cpp.obj 2025-07-24T04:17:52.3122195Z [2708/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd.cpp.obj 2025-07-24T04:17:53.5562006Z [2709/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\forward_grad.cpp.obj 2025-07-24T04:17:54.4019607Z [2710/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_not_implemented_fallback.cpp.obj 2025-07-24T04:17:57.6559366Z [2711/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\cpp_hook.cpp.obj 2025-07-24T04:18:04.0989891Z [2712/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\engine.cpp.obj 2025-07-24T04:18:11.9581286Z [2713/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\LazyNativeFunctions.cpp.obj 2025-07-24T04:18:12.9781780Z [2714/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\utils.cpp.obj 2025-07-24T04:18:18.6635501Z [2715/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\function.cpp.obj 2025-07-24T04:18:21.5456978Z [2716/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\custom_function.cpp.obj 2025-07-24T04:18:23.8109485Z [2717/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\tensor.cpp.obj 2025-07-24T04:18:28.7304745Z [2718/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\basic_ops.cpp.obj 2025-07-24T04:18:29.1884712Z [2719/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\accumulate_grad.cpp.obj 2025-07-24T04:18:29.6602663Z [2720/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\jit_decomp_interface.cpp.obj 2025-07-24T04:18:30.6884483Z [2721/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\utils\warnings.cpp.obj 2025-07-24T04:18:30.8051126Z [2722/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_buffer.cpp.obj 2025-07-24T04:18:31.2124150Z [2723/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_metadata.cpp.obj 2025-07-24T04:18:40.5495333Z [2724/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_kineto.cpp.obj 2025-07-24T04:18:42.0414164Z [2725/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_legacy.cpp.obj 2025-07-24T04:18:42.6130611Z [2726/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable_info.cpp.obj 2025-07-24T04:18:43.2415435Z [2727/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\record_function_ops.cpp.obj 2025-07-24T04:18:43.8060668Z [2728/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\saved_variable.cpp.obj 2025-07-24T04:18:47.4851856Z [2729/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\dynamo\compiled_autograd.cpp.obj 2025-07-24T04:18:50.7323029Z [2730/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_package\model_package_loader.cpp.obj 2025-07-24T04:18:51.3247357Z [2731/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.cpp.obj 2025-07-24T04:18:52.3680226Z [2732/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\mkldnn_tensor.cpp.obj 2025-07-24T04:18:59.4209626Z [2733/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\tensor_converter.cpp.obj 2025-07-24T04:19:01.4510978Z [2734/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner.cpp.obj 2025-07-24T04:19:06.9949693Z [2735/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_common.cpp.obj 2025-07-24T04:19:09.0994704Z [2736/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\oss_proxy_executor.cpp.obj 2025-07-24T04:19:10.3085078Z [2737/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable.cpp.obj 2025-07-24T04:19:21.8698737Z [2738/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_cpu.cpp.obj 2025-07-24T04:19:25.8371481Z [2739/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\inductor_ops.cpp.obj 2025-07-24T04:19:30.0338820Z [2740/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\object.cpp.obj 2025-07-24T04:19:31.2743179Z [2741/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_handler.cpp.obj 2025-07-24T04:19:31.5855891Z [2742/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_info.cpp.obj 2025-07-24T04:19:33.4177656Z [2743/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module.cpp.obj 2025-07-24T04:19:34.5324099Z [2744/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\function_impl.cpp.obj 2025-07-24T04:19:36.5970526Z [2745/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_detail.cpp.obj 2025-07-24T04:19:41.1756586Z [2746/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_interface.cpp.obj 2025-07-24T04:19:47.1114815Z [2747/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_resolver.cpp.obj 2025-07-24T04:20:01.3174690Z [2748/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\compiler.cpp.obj 2025-07-24T04:20:04.2604680Z [2749/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\codegen.cpp.obj 2025-07-24T04:20:07.0274081Z [2750/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\edit_distance.cpp.obj 2025-07-24T04:20:08.0251783Z [2751/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\executor.cpp.obj 2025-07-24T04:20:08.5840921Z [2752/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\fallback.cpp.obj 2025-07-24T04:20:08.7066104Z [2753/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\kernel_cache.cpp.obj 2025-07-24T04:20:09.0902972Z [2754/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\builtin_functions.cpp.obj 2025-07-24T04:20:10.0725716Z [2755/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\interface.cpp.obj 2025-07-24T04:20:10.2851960Z [2756/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\name_mangler.cpp.obj 2025-07-24T04:20:13.3614854Z [2757/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\parser.cpp.obj 2025-07-24T04:20:14.9121866Z [2758/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\canonicalize_modified_loop.cpp.obj 2025-07-24T04:20:22.3833716Z [2759/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\exit_transforms.cpp.obj 2025-07-24T04:20:22.5285279Z [2760/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\inline_loop_condition.cpp.obj 2025-07-24T04:20:31.9178615Z [2761/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_matching.cpp.obj 2025-07-24T04:20:32.3821820Z [2762/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\convert_to_ssa.cpp.obj 2025-07-24T04:20:37.8881331Z [2763/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\ir_emitter.cpp.obj 2025-07-24T04:20:38.4218000Z [2764/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\sugared_value.cpp.obj 2025-07-24T04:20:39.9673399Z [2765/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\script_type_parser.cpp.obj 2025-07-24T04:20:43.4319883Z [2766/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\tracer.cpp.obj 2025-07-24T04:20:50.6103437Z [2767/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\attributes.cpp.obj 2025-07-24T04:20:52.5811214Z [2768/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\versioned_symbols.cpp.obj 2025-07-24T04:20:58.1465540Z [2769/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\graph_utils.cpp.obj 2025-07-24T04:20:59.1652891Z [2770/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\ir.cpp.obj 2025-07-24T04:20:59.5052991Z [2771/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\alias_analysis.cpp.obj 2025-07-24T04:20:59.5089172Z [2772/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\irparser.cpp.obj 2025-07-24T04:21:07.6589150Z [2773/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\scope.cpp.obj 2025-07-24T04:21:09.4285283Z [2774/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\node_hashing.cpp.obj 2025-07-24T04:21:13.8268142Z [2775/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\subgraph_matcher.cpp.obj 2025-07-24T04:21:16.7734950Z [2776/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\type_hashing.cpp.obj 2025-07-24T04:21:19.3415648Z [2777/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\constants.cpp.obj 2025-07-24T04:21:19.6300914Z [2778/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_log.cpp.obj 2025-07-24T04:21:23.3317179Z [2779/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_opt_limit.cpp.obj 2025-07-24T04:21:24.6794695Z [2780/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\model_compatibility.cpp.obj 2025-07-24T04:21:28.4033384Z [2781/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\runtime_compatibility.cpp.obj 2025-07-24T04:21:29.7381439Z [2782/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\function.cpp.obj 2025-07-24T04:21:30.9748934Z [2783/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\registry.cpp.obj 2025-07-24T04:21:31.6898191Z [2784/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\observer.cpp.obj 2025-07-24T04:21:37.3755933Z [2785/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\interpreter.cpp.obj 2025-07-24T04:21:39.2244670Z [2786/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\module.cpp.obj 2025-07-24T04:21:39.6843931Z [2787/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\backend.cpp.obj 2025-07-24T04:21:46.3219349Z [2788/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import.cpp.obj 2025-07-24T04:21:47.5671427Z [2789/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_bytecode.cpp.obj 2025-07-24T04:21:49.0641391Z [2790/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\context.cpp.obj 2025-07-24T04:21:49.2539351Z [2791/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\prim_ops_registery.cpp.obj 2025-07-24T04:21:49.7200372Z [2792/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_operators.cpp.obj 2025-07-24T04:21:59.0547691Z [2793/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\promoted_prim_ops.cpp.obj 2025-07-24T04:22:00.6940746Z [2794/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\flatbuffer_loader.cpp.obj 2025-07-24T04:22:02.9040637Z [2795/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\upgrader_mobile.cpp.obj 2025-07-24T04:22:03.0690272Z [2796/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\utils.cpp.obj 2025-07-24T04:22:06.7625002Z [2797/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders.cpp.obj 2025-07-24T04:22:07.6800523Z [2798/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\register_ops_common_utils.cpp.obj 2025-07-24T04:22:08.5984596Z [2799/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\version_map.cpp.obj 2025-07-24T04:22:11.3031582Z [2800/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\type_parser.cpp.obj 2025-07-24T04:22:13.1444054Z [2801/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\quantization.cpp.obj 2025-07-24T04:22:13.3074346Z [2802/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\aot_compiler.cpp.obj 2025-07-24T04:22:22.3368746Z [2803/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\add_if_then_else.cpp.obj 2025-07-24T04:22:24.1978729Z [2804/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\annotate_warns.cpp.obj 2025-07-24T04:22:27.2978642Z [2805/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.cpp.obj 2025-07-24T04:22:29.3797818Z [2806/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize.cpp.obj 2025-07-24T04:22:31.6155604Z [2807/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders_entry.cpp.obj 2025-07-24T04:22:33.1081707Z [2808/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\check_strict_fusion.cpp.obj 2025-07-24T04:22:44.6308795Z [2809/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\batch_mm.cpp.obj 2025-07-24T04:22:45.5596716Z [2810/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\bailout_graph.cpp.obj 2025-07-24T04:22:47.3384644Z [2811/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\common_subexpression_elimination.cpp.obj 2025-07-24T04:22:47.3459216Z [2812/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_pooling.cpp.obj 2025-07-24T04:22:49.9196079Z [2813/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\concat_opt.cpp.obj 2025-07-24T04:22:54.7268706Z [2814/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_propagation.cpp.obj 2025-07-24T04:23:00.8888663Z [2815/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_profiling.cpp.obj 2025-07-24T04:23:03.3556958Z [2816/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_undefinedness.cpp.obj 2025-07-24T04:23:06.2473120Z [2817/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dead_code_elimination.cpp.obj 2025-07-24T04:23:07.7042485Z [2818/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_autodiff_subgraphs.cpp.obj 2025-07-24T04:23:07.7097018Z [2819/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_functional_graphs.cpp.obj 2025-07-24T04:23:07.8616820Z [2820/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.cpp.obj 2025-07-24T04:23:22.0051698Z [2821/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\device_type_analysis.cpp.obj 2025-07-24T04:23:22.9913815Z [2822/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\eliminate_no_ops.cpp.obj 2025-07-24T04:23:29.2119347Z [2823/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_linear_bn.cpp.obj 2025-07-24T04:23:29.3396592Z [2824/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dtype_analysis.cpp.obj 2025-07-24T04:23:29.4540922Z [2825/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\erase_number_types.cpp.obj 2025-07-24T04:23:31.1969039Z [2826/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\decompose_ops.cpp.obj 2025-07-24T04:23:31.4224512Z [2827/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_conv_bn.cpp.obj 2025-07-24T04:23:32.9429159Z [2828/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fixup_trace_scope_blocks.cpp.obj 2025-07-24T04:23:46.7019695Z [2829/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_graph_optimizations.cpp.obj 2025-07-24T04:23:47.1786957Z [2830/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.cpp.obj 2025-07-24T04:23:51.3248539Z [2831/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_transpose.cpp.obj 2025-07-24T04:23:51.4842607Z [2832/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_concat_linear.cpp.obj 2025-07-24T04:23:51.6258944Z [2833/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_folding.cpp.obj 2025-07-24T04:23:53.4651748Z [2834/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_folding.cpp.obj 2025-07-24T04:24:07.5119969Z [2835/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_relu.cpp.obj 2025-07-24T04:24:12.8557566Z [2836/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_linear.cpp.obj 2025-07-24T04:24:13.7945809Z [2837/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_rewrite_helper.cpp.obj 2025-07-24T04:24:13.8235681Z [2838/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\hoist_conv_packed_params.cpp.obj 2025-07-24T04:24:13.8544044Z [2839/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\freeze_module.cpp.obj 2025-07-24T04:24:26.4598621Z [2840/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_ops_to_mkldnn.cpp.obj 2025-07-24T04:24:32.6302710Z [2841/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\guard_elimination.cpp.obj 2025-07-24T04:24:34.9485893Z [2842/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_fuser.cpp.obj 2025-07-24T04:24:35.0879555Z [2843/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_autodiff_subgraphs.cpp.obj 2025-07-24T04:24:35.6447977Z [2844/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_fork_wait.cpp.obj 2025-07-24T04:24:36.1043388Z [2845/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inplace_check.cpp.obj 2025-07-24T04:24:38.4001073Z [2846/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inliner.cpp.obj 2025-07-24T04:24:38.6526227Z [2847/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_forked_closures.cpp.obj 2025-07-24T04:24:50.1217539Z [2848/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\integer_value_refinement.cpp.obj 2025-07-24T04:24:50.1409577Z [2849/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\loop_unrolling.cpp.obj 2025-07-24T04:24:54.0788480Z [2850/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_grad_of.cpp.obj 2025-07-24T04:24:55.9082189Z [2851/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_tuples.cpp.obj 2025-07-24T04:24:56.7785439Z [2852/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lift_closures.cpp.obj 2025-07-24T04:25:04.3417712Z [2853/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\insert_guards.cpp.obj 2025-07-24T04:25:08.4412529Z [2854/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\liveness.cpp.obj 2025-07-24T04:25:09.2835148Z [2855/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\normalize_ops.cpp.obj 2025-07-24T04:25:09.3430407Z [2856/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\pass_manager.cpp.obj 2025-07-24T04:25:16.0139103Z [2857/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_alias_sensitive.cpp.obj 2025-07-24T04:25:19.4303659Z [2858/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole.cpp.obj 2025-07-24T04:25:19.5762837Z [2859/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\metal_rewrite.cpp.obj 2025-07-24T04:25:27.1718845Z [2860/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_dict_idioms.cpp.obj 2025-07-24T04:25:27.5136354Z [2861/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_list_idioms.cpp.obj 2025-07-24T04:25:31.6622565Z [2862/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\prepack_folding.cpp.obj 2025-07-24T04:25:33.2955223Z [2863/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_non_tensor.cpp.obj 2025-07-24T04:25:37.1290682Z [2864/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\quantization_type.cpp.obj 2025-07-24T04:25:37.2583558Z [2865/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\dedup_module_uses.cpp.obj 2025-07-24T04:25:40.3092080Z [2866/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\mkldnn_rewrite.cpp.obj 2025-07-24T04:25:43.4706657Z [2867/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\fusion_passes.cpp.obj 2025-07-24T04:25:52.8953087Z [2868/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\refine_tuple_types.cpp.obj 2025-07-24T04:25:56.2462292Z [2869/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\helper.cpp.obj 2025-07-24T04:25:59.6860198Z [2870/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_dropout.cpp.obj 2025-07-24T04:26:03.1023991Z [2871/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_quant_dequant.cpp.obj 2025-07-24T04:26:03.5236842Z [2872/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_observers.cpp.obj 2025-07-24T04:26:05.5984615Z [2873/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\finalize.cpp.obj 2025-07-24T04:26:08.3927586Z [2874/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_exceptions.cpp.obj 2025-07-24T04:26:16.0927351Z [2875/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_expands.cpp.obj 2025-07-24T04:26:17.9394423Z [2876/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_mutation.cpp.obj 2025-07-24T04:26:20.3641346Z [2877/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\requires_grad_analysis.cpp.obj 2025-07-24T04:26:20.8750579Z [2878/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_redundant_profiles.cpp.obj 2025-07-24T04:26:23.5178446Z [2879/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\replacement_of_old_operators.cpp.obj 2025-07-24T04:26:26.1768497Z [2880/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\register_packed_params.cpp.obj 2025-07-24T04:26:28.5846598Z [2881/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\restore_mutation.cpp.obj 2025-07-24T04:26:36.0046252Z [2882/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\shape_analysis.cpp.obj 2025-07-24T04:26:37.3514914Z [2883/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\subgraph_rewrite.cpp.obj 2025-07-24T04:26:40.3384714Z [2884/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_cache.cpp.obj 2025-07-24T04:26:42.1966954Z [2885/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_analysis.cpp.obj 2025-07-24T04:26:48.4481528Z [2886/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.cpp.obj 2025-07-24T04:26:53.0344050Z [2887/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\op_registry.cpp.obj 2025-07-24T04:26:53.2654112Z [2888/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\specialize_autogradzero.cpp.obj 2025-07-24T04:26:55.8453160Z [2889/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\memory_dag.cpp.obj 2025-07-24T04:26:56.8659477Z [2890/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\optimization_utils.cpp.obj 2025-07-24T04:26:58.4819058Z [2891/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\update_graph_executor_opt.cpp.obj 2025-07-24T04:26:58.6193935Z [2892/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\utf8_decoding_ignore.cpp.obj 2025-07-24T04:27:03.3591311Z [2893/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.cpp.obj 2025-07-24T04:27:07.9887148Z [2894/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\subgraph_utils.cpp.obj 2025-07-24T04:27:14.5299431Z [2895/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\value_refinement_utils.cpp.obj 2025-07-24T04:27:14.8416779Z [2896/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\tensorexpr_fuser.cpp.obj 2025-07-24T04:27:15.5153363Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\passes\tensorexpr_fuser.cpp(476): warning C4805: '&=': unsafe mix of type 'bool' and type 'unsigned __int64' in operation 2025-07-24T04:27:15.5155709Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\passes\tensorexpr_fuser.cpp(476): warning C4805: '&': unsafe mix of type 'bool' and type 'unsigned __int64' in operation 2025-07-24T04:27:15.5157463Z [2897/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\argument_spec.cpp.obj 2025-07-24T04:27:16.6864682Z [2898/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\instruction.cpp.obj 2025-07-24T04:27:18.9940046Z [2899/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\variadic_ops.cpp.obj 2025-07-24T04:27:25.2211985Z [2900/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\autodiff.cpp.obj 2025-07-24T04:27:28.5301006Z [2901/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry_util.cpp.obj 2025-07-24T04:27:32.8108799Z [2902/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_exception.cpp.obj 2025-07-24T04:27:33.2851272Z [2903/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry.cpp.obj 2025-07-24T04:27:35.1914232Z [2904/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\logging.cpp.obj 2025-07-24T04:27:36.2746517Z [2905/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\xnnpack_rewrite.cpp.obj 2025-07-24T04:27:37.2280596Z [2906/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\print_handler.cpp.obj 2025-07-24T04:27:45.7621562Z [2907/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\vulkan_rewrite.cpp.obj 2025-07-24T04:27:46.7837087Z [2908/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\preprocess_graph.cpp.obj 2025-07-24T04:27:55.1489732Z [2909/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter.cpp.obj 2025-07-24T04:27:56.1806154Z [2910/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\graph_executor.cpp.obj 2025-07-24T04:27:58.0375535Z [2911/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\frame.cpp.obj 2025-07-24T04:28:06.6721260Z [2912/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\operator.cpp.obj 2025-07-24T04:28:09.6385086Z [2913/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_trace.cpp.obj 2025-07-24T04:28:11.9954626Z [2914/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\script_profile.cpp.obj 2025-07-24T04:28:12.0408303Z [2915/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\slice_indices_adjust.cpp.obj 2025-07-24T04:28:16.1565451Z [2916/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\serialized_shape_function_registry.cpp.obj 2025-07-24T04:28:16.4482111Z [2917/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_graph_executor_impl.cpp.obj 2025-07-24T04:28:29.9299346Z [2918/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_record.cpp.obj 2025-07-24T04:28:31.3042927Z [2919/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\fusion.cpp.obj 2025-07-24T04:28:36.3280288Z [2920/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\impl.cpp.obj 2025-07-24T04:28:39.4172859Z [2921/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\memory_planner.cpp.obj 2025-07-24T04:28:40.3904835Z [2922/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_ops_utils.cpp.obj 2025-07-24T04:28:42.1745239Z [2923/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\simple_graph_executor_impl.cpp.obj 2025-07-24T04:28:54.9841670Z [2924/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\passes.cpp.obj 2025-07-24T04:28:57.5326259Z [2925/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_script.cpp.obj 2025-07-24T04:29:08.0771161Z [2926/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry_util.cpp.obj 2025-07-24T04:29:09.6917442Z [2927/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry.cpp.obj 2025-07-24T04:29:09.9661534Z [2928/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\native_ops.cpp.obj 2025-07-24T04:29:19.0527676Z [2929/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\generated_ops.cpp.obj 2025-07-24T04:29:19.5977901Z [2930/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_export_helpers.cpp.obj 2025-07-24T04:29:21.5356334Z [2931/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\te_wrapper.cpp.obj 2025-07-24T04:29:25.4305193Z [2932/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\vararg_functions.cpp.obj 2025-07-24T04:29:28.3259318Z [2933/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\callstack_debug_info_serialization.cpp.obj 2025-07-24T04:29:33.5679450Z [2934/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_read.cpp.obj 2025-07-24T04:29:45.9260742Z [2935/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\ops.cpp.obj 2025-07-24T04:29:47.1934943Z [2936/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_source.cpp.obj 2025-07-24T04:29:47.3958201Z [2937/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickle.cpp.obj 2025-07-24T04:29:57.1798626Z [2938/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\python_print.cpp.obj 2025-07-24T04:30:01.2276159Z [2939/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import.cpp.obj 2025-07-24T04:30:01.3070593Z [2940/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickler.cpp.obj 2025-07-24T04:30:02.0696515Z [2941/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\source_range_serialization.cpp.obj 2025-07-24T04:30:03.7713598Z [2942/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\type_name_uniquer.cpp.obj 2025-07-24T04:30:07.9046608Z [2943/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickler_helper.cpp.obj 2025-07-24T04:30:22.6732714Z [2944/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\block_codegen.cpp.obj 2025-07-24T04:30:30.4039884Z [2945/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\unpickler.cpp.obj 2025-07-24T04:30:30.6651851Z [2946/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\cpp_codegen.cpp.obj 2025-07-24T04:30:33.6161780Z [2947/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\codegen.cpp.obj 2025-07-24T04:30:34.5174400Z [2948/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_registry.cpp.obj 2025-07-24T04:30:34.6412702Z [2949/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_overlap.cpp.obj 2025-07-24T04:30:37.3752474Z [2950/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_inference.cpp.obj 2025-07-24T04:30:37.4478434Z [2951/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\intrinsic_symbols.cpp.obj 2025-07-24T04:30:42.4072224Z [2952/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\eval.cpp.obj 2025-07-24T04:30:49.4963631Z [2953/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir.cpp.obj 2025-07-24T04:30:49.8589495Z [2954/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\expr.cpp.obj 2025-07-24T04:30:53.8224144Z [2955/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_core.cpp.obj 2025-07-24T04:30:55.0551243Z [2956/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_codegen.cpp.obj 2025-07-24T04:31:01.8013073Z [2957/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\hash_provider.cpp.obj 2025-07-24T04:31:10.4545996Z [2958/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\graph_opt.cpp.obj 2025-07-24T04:31:12.5410520Z [2959/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions.cpp.obj 2025-07-24T04:31:12.7995603Z [2960/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_codegen.cpp.obj 2025-07-24T04:31:12.8711785Z [2961/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_jit.cpp.obj 2025-07-24T04:31:16.2864988Z [2962/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_mutator.cpp.obj 2025-07-24T04:31:17.2010114Z [2963/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_cloner.cpp.obj 2025-07-24T04:31:27.7887708Z [2964/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_printer.cpp.obj 2025-07-24T04:31:32.8150853Z [2965/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_simplifier.cpp.obj 2025-07-24T04:31:32.8153157Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): warning C4805: '==': unsafe mix of type 'c10::impl::ScalarTypeToCPPType::type' and type 'T' in operation 2025-07-24T04:31:32.8154771Z with 2025-07-24T04:31:32.8155100Z [ 2025-07-24T04:31:32.8155372Z T=int 2025-07-24T04:31:32.8155708Z ] 2025-07-24T04:31:32.8156792Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-07-24T04:31:33.0354922Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\tensorexpr\ir_simplifier.cpp(318): note: see reference to function template instantiation 'bool torch::jit::tensorexpr::immediateEquals(const torch::jit::tensorexpr::ExprPtr &,T)' being compiled 2025-07-24T04:31:33.0356097Z with 2025-07-24T04:31:33.0356273Z [ 2025-07-24T04:31:33.0356446Z T=int 2025-07-24T04:31:33.0356628Z ] 2025-07-24T04:31:33.0357091Z [2966/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_verifier.cpp.obj 2025-07-24T04:31:38.6796565Z [2967/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_visitor.cpp.obj 2025-07-24T04:31:50.4537252Z [2968/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest.cpp.obj 2025-07-24T04:31:51.1572347Z [2969/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest_randomization.cpp.obj 2025-07-24T04:32:02.2722149Z [2970/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\mem_dependency_checker.cpp.obj 2025-07-24T04:32:02.2724716Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): warning C4805: '==': unsafe mix of type 'c10::impl::ScalarTypeToCPPType::type' and type 'T' in operation 2025-07-24T04:32:02.2725620Z with 2025-07-24T04:32:02.2725814Z [ 2025-07-24T04:32:02.2725984Z T=int 2025-07-24T04:32:02.2726188Z ] 2025-07-24T04:32:02.2726795Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-07-24T04:32:02.6917620Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\tensorexpr\mem_dependency_checker.cpp(627): note: see reference to function template instantiation 'bool torch::jit::tensorexpr::immediateEquals(const torch::jit::tensorexpr::ExprPtr &,T)' being compiled 2025-07-24T04:32:02.6919876Z with 2025-07-24T04:32:02.6920179Z [ 2025-07-24T04:32:02.6920475Z T=int 2025-07-24T04:32:02.6920783Z ] 2025-07-24T04:32:02.6921603Z [2971/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\kernel.cpp.obj 2025-07-24T04:32:15.2616855Z [2972/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\lowerings.cpp.obj 2025-07-24T04:32:16.5998103Z [2973/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\conv2d.cpp.obj 2025-07-24T04:32:18.5672152Z [2974/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\matmul.cpp.obj 2025-07-24T04:32:25.2258229Z [2975/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\misc.cpp.obj 2025-07-24T04:32:30.7751783Z [2976/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\reduction.cpp.obj 2025-07-24T04:32:37.8767057Z [2977/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\pointwise.cpp.obj 2025-07-24T04:32:45.3050803Z [2978/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\reduction.cpp.obj 2025-07-24T04:32:45.3929719Z [2979/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\norm.cpp.obj 2025-07-24T04:32:45.9878553Z [2980/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\types.cpp.obj 2025-07-24T04:32:48.0794412Z [2981/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\quantization.cpp.obj 2025-07-24T04:32:49.1448308Z [2982/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\tensor.cpp.obj 2025-07-24T04:32:54.8765006Z [2983/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\softmax.cpp.obj 2025-07-24T04:32:55.7529633Z [2984/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\unique_name_manager.cpp.obj 2025-07-24T04:32:56.4179902Z [2985/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\config.cpp.obj 2025-07-24T04:33:03.2463990Z [2986/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_device.cpp.obj 2025-07-24T04:33:04.1380647Z [2987/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\hooks_for_testing.cpp.obj 2025-07-24T04:33:08.2550207Z [2988/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\file_check.cpp.obj 2025-07-24T04:33:10.2732021Z [2989/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_interface.cpp.obj 2025-07-24T04:33:10.9289843Z [2990/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\lowering_context.cpp.obj 2025-07-24T04:33:12.6936520Z [2991/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\registerizer.cpp.obj 2025-07-24T04:33:12.6938149Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): warning C4805: '==': unsafe mix of type 'c10::impl::ScalarTypeToCPPType::type' and type 'T' in operation 2025-07-24T04:33:12.6939034Z with 2025-07-24T04:33:12.6939213Z [ 2025-07-24T04:33:12.6939399Z T=int 2025-07-24T04:33:12.6939585Z ] 2025-07-24T04:33:12.6940176Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-07-24T04:33:12.9618518Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\tensorexpr\registerizer.cpp(92): note: see reference to function template instantiation 'bool torch::jit::tensorexpr::immediateEquals(const torch::jit::tensorexpr::ExprPtr &,T)' being compiled 2025-07-24T04:33:12.9620601Z with 2025-07-24T04:33:12.9620915Z [ 2025-07-24T04:33:12.9621223Z T=int 2025-07-24T04:33:12.9621532Z ] 2025-07-24T04:33:12.9622260Z [2992/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\hash.cpp.obj 2025-07-24T04:33:19.3817976Z [2993/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\debug_util.cpp.obj 2025-07-24T04:33:24.0243745Z [2994/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\helpers.cpp.obj 2025-07-24T04:33:24.3191419Z [2995/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\multi_wait.cpp.obj 2025-07-24T04:33:24.3630257Z [2996/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir.cpp.obj 2025-07-24T04:33:26.6942307Z [2997/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\permutation_util.cpp.obj 2025-07-24T04:33:29.6611616Z [2998/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_metadata.cpp.obj 2025-07-24T04:33:30.0931299Z [2999/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_dump_util.cpp.obj 2025-07-24T04:33:30.3157617Z [3000/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_util.cpp.obj 2025-07-24T04:33:36.9753932Z [3001/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\lazy_graph_executor.cpp.obj 2025-07-24T04:33:37.6987594Z [3002/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\metrics.cpp.obj 2025-07-24T04:33:42.2200716Z [3003/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\thread_pool.cpp.obj 2025-07-24T04:33:42.2529899Z [3004/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\utils.cpp.obj 2025-07-24T04:33:44.0295656Z [3005/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\arithmetic_ir_ops.cpp.obj 2025-07-24T04:33:45.7033417Z [3006/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\counters.cpp.obj 2025-07-24T04:33:49.6247584Z [3007/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_impl.cpp.obj 2025-07-24T04:33:50.5178986Z [3008/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape.cpp.obj 2025-07-24T04:33:50.5843737Z [3009/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\events.cpp.obj 2025-07-24T04:33:51.0513980Z [3010/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor.cpp.obj 2025-07-24T04:33:55.7898300Z [3011/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_util.cpp.obj 2025-07-24T04:34:02.3761219Z [3012/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\mtia\profiler\MTIAMemoryProfiler.cpp.obj 2025-07-24T04:34:02.8838093Z [3013/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\trie.cpp.obj 2025-07-24T04:34:04.5840840Z [3014/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\combined_traceback.cpp.obj 2025-07-24T04:34:04.8557827Z [3015/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_client_interface.cpp.obj 2025-07-24T04:34:06.7052264Z [3016/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\data_flow.cpp.obj 2025-07-24T04:34:07.8163883Z [3017/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\perf.cpp.obj 2025-07-24T04:34:08.3143830Z [3018/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\collection.cpp.obj 2025-07-24T04:34:16.1328755Z [3019/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\python_tracer.cpp.obj 2025-07-24T04:34:17.8718826Z [3020/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\observer.cpp.obj 2025-07-24T04:34:18.7237476Z [3021/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\vulkan.cpp.obj 2025-07-24T04:34:19.7677116Z [3022/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape_inference.cpp.obj 2025-07-24T04:34:19.8454445Z [3023/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\base.cpp.obj 2025-07-24T04:34:20.2606417Z [3024/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind_fb.cpp.obj 2025-07-24T04:34:21.0070408Z [3025/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\itt_observer.cpp.obj 2025-07-24T04:34:21.8448052Z [3026/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_shim.cpp.obj 2025-07-24T04:34:22.3874897Z [3027/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind.cpp.obj 2025-07-24T04:34:22.3896185Z [3028/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\cpp_stacktraces.cpp.obj 2025-07-24T04:34:24.7939776Z [3029/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\execution_trace_observer.cpp.obj 2025-07-24T04:34:25.1877417Z [3030/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\nvtx_observer.cpp.obj 2025-07-24T04:34:28.9275071Z [3031/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\privateuse1_observer.cpp.obj 2025-07-24T04:34:32.1011073Z [3032/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\variadic.cpp.obj 2025-07-24T04:34:32.9311938Z [3033/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\schema_info.cpp.obj 2025-07-24T04:34:37.9978954Z [3034/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\util.cpp.obj 2025-07-24T04:34:43.1638257Z [3035/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_graph.cpp.obj 2025-07-24T04:34:45.9822342Z [3036/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_inplace_ops.cpp.obj 2025-07-24T04:34:47.3146847Z [3037/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\tensor_flatten.cpp.obj 2025-07-24T04:34:51.2813399Z [3038/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\check_alias_annotation.cpp.obj 2025-07-24T04:34:52.3550731Z [3039/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_c10_ops.cpp.obj 2025-07-24T04:34:55.1702269Z [3040/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\cuda\interface.cpp.obj 2025-07-24T04:35:03.5483848Z [3041/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\autocast.cpp.obj 2025-07-24T04:35:04.8425149Z [3042/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\GraphSignature.cpp.obj 2025-07-24T04:35:14.6518907Z [3043/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\GraphPasses.cpp.obj 2025-07-24T04:35:16.0703803Z [3044/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\Graph.cpp.obj 2025-07-24T04:35:19.8601003Z [3045/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\TensorMeta.cpp.obj 2025-07-24T04:35:24.0306284Z [3046/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\Serialization.cpp.obj 2025-07-24T04:35:25.6841498Z [3047/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_special_ops.cpp.obj 2025-07-24T04:35:27.0567702Z [3048/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Placement.cpp.obj 2025-07-24T04:35:27.3784956Z [3049/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops_fulljit.cpp.obj 2025-07-24T04:35:32.4684671Z [3050/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\DelegateExecutor.cpp.obj 2025-07-24T04:35:33.0537153Z [3051/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops.cpp.obj 2025-07-24T04:35:34.8013309Z [3052/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\PlacementUtils.cpp.obj 2025-07-24T04:35:41.6922233Z [3053/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ExecutionPlanner.cpp.obj 2025-07-24T04:35:50.4952815Z [3054/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\FunctionSchema.cpp.obj 2025-07-24T04:35:51.5875179Z [3055/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ExecutionFrame.cpp.obj 2025-07-24T04:35:57.7744731Z [3056/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\GraphExecutorBase.cpp.obj 2025-07-24T04:35:57.8385319Z [3057/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Executor.cpp.obj 2025-07-24T04:35:58.8923196Z [3058/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\common\FileUtil.cpp.obj 2025-07-24T04:36:02.9240880Z [3059/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ConstantFolder.cpp.obj 2025-07-24T04:36:05.3152661Z [3060/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Weights.cpp.obj 2025-07-24T04:36:05.3586292Z [3061/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\SerialGraphExecutor.cpp.obj 2025-07-24T04:36:05.3805318Z [3062/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\OpKernel.cpp.obj 2025-07-24T04:36:05.5313564Z [3063/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\GreedyBySize.cpp.obj 2025-07-24T04:36:05.7677192Z [3064/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\Bump.cpp.obj 2025-07-24T04:36:20.9082150Z [3065/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\detail\ITree.cpp.obj 2025-07-24T04:36:22.9480995Z [3066/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\DisjointStorageGroups.cpp.obj 2025-07-24T04:36:35.1471355Z [3067/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\AutoFunctionalizeKernel.cpp.obj 2025-07-24T04:36:35.9863791Z [3068/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\HigherOrderKernel.cpp.obj 2025-07-24T04:36:39.5414575Z [3069/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ParallelGraphExecutor.cpp.obj 2025-07-24T04:36:40.4551226Z [3070/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\CallTorchBindKernel.cpp.obj 2025-07-24T04:36:41.3425825Z [3071/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\C10Kernel.cpp.obj 2025-07-24T04:36:42.2684228Z [3072/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\KernelFactory.cpp.obj 2025-07-24T04:36:46.5234178Z [3073/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\PrimKernelRegistry.cpp.obj 2025-07-24T04:36:47.4441296Z [3074/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\AliasAnalyzer.cpp.obj 2025-07-24T04:37:01.5539956Z [3075/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\LayoutPlanner.cpp.obj 2025-07-24T04:37:03.4591863Z [3076/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\config.cpp.obj 2025-07-24T04:37:03.5489117Z [3077/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\debug_info.cpp.obj 2025-07-24T04:37:07.1323266Z [3078/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\dynamic_ir.cpp.obj 2025-07-24T04:37:10.7315255Z [3079/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\LayoutManager.cpp.obj 2025-07-24T04:37:12.3403864Z [3080/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\NativeKernels.cpp.obj 2025-07-24T04:37:20.5244100Z [3081/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\GeneratedNativeStaticDispatchKernels.cpp.obj 2025-07-24T04:37:27.7015180Z [3082/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\GeneratedStaticDispatchKernels.cpp.obj 2025-07-24T04:37:28.7920473Z [3083/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\device_data.cpp.obj 2025-07-24T04:37:28.8394857Z [3084/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\generic.cpp.obj 2025-07-24T04:37:33.0564841Z [3085/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\tensor_aten_ops.cpp.obj 2025-07-24T04:37:34.5838425Z [3086/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\KernelRegistry.cpp.obj 2025-07-24T04:37:37.3291511Z [3087/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_autograd_functions.cpp.obj 2025-07-24T04:37:48.3696737Z [3088/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_lowering_context.cpp.obj 2025-07-24T04:37:48.9813054Z [3089/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_backend_impl.cpp.obj 2025-07-24T04:37:53.3982724Z [3090/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node.cpp.obj 2025-07-24T04:37:53.9458001Z [3091/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_eager_fallback.cpp.obj 2025-07-24T04:38:01.2453856Z [3092/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\export_data.cpp.obj 2025-07-24T04:38:03.7660210Z [3093/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node_lowering.cpp.obj 2025-07-24T04:38:08.7123020Z [3094/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_native_functions.cpp.obj 2025-07-24T04:38:09.6086479Z [3095/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\out_types.cpp.obj 2025-07-24T04:38:09.8110459Z [3096/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import_data.cpp.obj 2025-07-24T04:38:11.6789271Z [3097/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\itt_wrapper.cpp.obj 2025-07-24T04:38:13.0821164Z [3098/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\itt.cpp.obj 2025-07-24T04:38:20.6713180Z [3099/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\random.cpp.obj 2025-07-24T04:38:20.7597124Z [3100/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\optim\sgd.cpp.obj 2025-07-24T04:38:24.5898909Z [3101/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\TraceTypeManual.cpp.obj 2025-07-24T04:38:24.9658460Z [3102/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\sequential.cpp.obj 2025-07-24T04:38:34.1496708Z [3103/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\FunctionsManual.cpp.obj 2025-07-24T04:38:35.4041739Z [3104/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport.cpp.obj 2025-07-24T04:38:35.5016073Z [3105/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\flatbuffer_serializer.cpp.obj 2025-07-24T04:38:37.6922135Z [3106/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\jit.cpp.obj 2025-07-24T04:38:46.0206674Z [3107/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\onnx.cpp.obj 2025-07-24T04:38:48.0327880Z [3108/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\byte_order.cpp.obj 2025-07-24T04:38:49.4449311Z [3109/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\VariableTypeManual.cpp.obj 2025-07-24T04:38:49.6856550Z [3110/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backoff.cpp.obj 2025-07-24T04:38:53.9719330Z [3111/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport_manager.cpp.obj 2025-07-24T04:38:56.6102633Z [3112/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_bytecode.cpp.obj 2025-07-24T04:38:59.3562701Z [3113/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module_save.cpp.obj 2025-07-24T04:39:05.6167909Z [3114/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\FileStore.cpp.obj 2025-07-24T04:39:06.4486079Z [3115/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export.cpp.obj 2025-07-24T04:39:13.8048829Z [3116/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.cpp.obj 2025-07-24T04:39:18.6230434Z [3117/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_module.cpp.obj 2025-07-24T04:39:21.7953617Z [3118/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backend.cpp.obj 2025-07-24T04:39:22.9965985Z [3119/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ParamCommsUtils.cpp.obj 2025-07-24T04:39:27.1930091Z [3120/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GlooDeviceFactory.cpp.obj 2025-07-24T04:39:30.6025119Z [3121/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupMPI.cpp.obj 2025-07-24T04:39:35.4458674Z [3122/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Functional.cpp.obj 2025-07-24T04:39:35.4840997Z [3123/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\PrefixStore.cpp.obj 2025-07-24T04:39:38.7639633Z [3124/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\FlightRecorder.cpp.obj 2025-07-24T04:39:42.7172948Z [3125/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GroupRegistry.cpp.obj 2025-07-24T04:39:44.5535313Z [3126/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Ops.cpp.obj 2025-07-24T04:39:45.7007232Z [3127/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Store.cpp.obj 2025-07-24T04:39:53.9297737Z [3128/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreLibUvBackend.cpp.obj 2025-07-24T04:40:02.8301026Z [3129/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroup.cpp.obj 2025-07-24T04:40:04.1928297Z [3130/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupWrapper.cpp.obj 2025-07-24T04:40:05.0056139Z [3131/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStore.cpp.obj 2025-07-24T04:40:06.4656100Z [3132/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreBackend.cpp.obj 2025-07-24T04:40:07.5788576Z [3133/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\Handlers.cpp.obj 2025-07-24T04:40:08.6661951Z [3134/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\cuda\StreamBlock.cpp.obj 2025-07-24T04:40:11.1191591Z [3135/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\debug.cpp.obj 2025-07-24T04:40:15.3661556Z [3136/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Utils.cpp.obj 2025-07-24T04:40:15.6507497Z [3137/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\WorkerServer.cpp.obj 2025-07-24T04:40:15.7676678Z [3138/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupGloo.cpp.obj 2025-07-24T04:40:19.1077672Z [3139/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logging.cpp.obj 2025-07-24T04:40:19.4932055Z [3140/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.cpp.obj 2025-07-24T04:40:20.6828123Z [3141/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Work.cpp.obj 2025-07-24T04:40:23.7155121Z [3142/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\socket.cpp.obj 2025-07-24T04:40:26.9778011Z [3143/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\sequence_num.cpp.obj 2025-07-24T04:40:29.7308774Z [3144/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\cuda.cpp.obj 2025-07-24T04:40:34.8836291Z [3145/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\comm.cpp.obj 2025-07-24T04:40:35.7271815Z [3146/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\quantization\quantization.cpp.obj 2025-07-24T04:40:41.9915736Z [3147/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.cpp.obj 2025-07-24T04:40:46.1893774Z [3148/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logger.cpp.obj 2025-07-24T04:40:50.0659253Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\distributed\c10d\logger.cpp(294): warning C4805: '!=': unsafe mix of type '__int64' and type 'bool' in operation 2025-07-24T04:40:50.0660394Z [3149/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\reducer.cpp.obj 2025-07-24T04:40:50.4143476Z [3150/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.cpp.obj 2025-07-24T04:40:51.2766831Z [3151/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\enum.cpp.obj 2025-07-24T04:40:58.8281816Z [3152/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\imethod.cpp.obj 2025-07-24T04:41:02.1327767Z [3153/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\datasets\mnist.cpp.obj 2025-07-24T04:41:02.5297486Z [3154/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\mps.cpp.obj 2025-07-24T04:41:08.6992806Z [3155/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\distributed.cpp.obj 2025-07-24T04:41:09.1454410Z [3156/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\default_comm_hooks.cpp.obj 2025-07-24T04:41:11.2564512Z [3157/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\random.cpp.obj 2025-07-24T04:41:19.1230188Z [3158/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\stream.cpp.obj 2025-07-24T04:41:19.3083861Z [3159/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\sequential.cpp.obj 2025-07-24T04:41:26.7018871Z [3160/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize.cpp.obj 2025-07-24T04:41:29.3329676Z [3161/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\init.cpp.obj 2025-07-24T04:41:37.2298447Z [3162/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\module.cpp.obj 2025-07-24T04:41:37.9066777Z [3163/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\_functions.cpp.obj 2025-07-24T04:41:42.7325650Z [3164/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\adaptive.cpp.obj 2025-07-24T04:41:48.2775772Z [3165/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\activation.cpp.obj 2025-07-24T04:41:50.6737373Z [3166/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\batchnorm.cpp.obj 2025-07-24T04:42:00.0275920Z [3167/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\normalization.cpp.obj 2025-07-24T04:42:04.3916955Z [3168/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\instancenorm.cpp.obj 2025-07-24T04:42:09.3483589Z [3169/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\distance.cpp.obj 2025-07-24T04:42:09.6935564Z [3170/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\dropout.cpp.obj 2025-07-24T04:42:10.2681556Z [3171/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\conv.cpp.obj 2025-07-24T04:42:20.9135025Z [3172/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\embedding.cpp.obj 2025-07-24T04:42:23.7744780Z [3173/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\fold.cpp.obj 2025-07-24T04:42:28.0541414Z [3174/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\linear.cpp.obj 2025-07-24T04:42:37.8934263Z [3175/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\padding.cpp.obj 2025-07-24T04:42:38.1499462Z [3176/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\loss.cpp.obj 2025-07-24T04:42:43.8382365Z [3177/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pixelshuffle.cpp.obj 2025-07-24T04:42:47.6329177Z [3178/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pooling.cpp.obj 2025-07-24T04:42:48.8298966Z [3179/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\rnn.cpp.obj 2025-07-24T04:42:59.4081218Z [3180/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\upsampling.cpp.obj 2025-07-24T04:43:00.7784275Z [3181/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\adaptive.cpp.obj 2025-07-24T04:43:04.5976643Z [3182/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\activation.cpp.obj 2025-07-24T04:43:06.0956569Z [3183/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\container\functional.cpp.obj 2025-07-24T04:43:08.2409534Z [3184/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\batchnorm.cpp.obj 2025-07-24T04:43:11.9589580Z [3185/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\transformer.cpp.obj 2025-07-24T04:43:19.3641313Z [3186/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\embedding.cpp.obj 2025-07-24T04:43:19.6664520Z [3187/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\instancenorm.cpp.obj 2025-07-24T04:43:25.8698145Z [3188/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\conv.cpp.obj 2025-07-24T04:43:27.4724707Z [3189/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\normalization.cpp.obj 2025-07-24T04:43:29.1867308Z [3190/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\dropout.cpp.obj 2025-07-24T04:43:32.3747822Z [3191/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\linear.cpp.obj 2025-07-24T04:43:32.6711729Z [3192/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\padding.cpp.obj 2025-07-24T04:43:37.7937344Z [3193/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\pooling.cpp.obj 2025-07-24T04:43:45.7323058Z [3194/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\rnn.cpp.obj 2025-07-24T04:43:45.9776035Z [3195/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\vision.cpp.obj 2025-07-24T04:43:54.6216911Z [3196/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adagrad.cpp.obj 2025-07-24T04:44:02.4214659Z [3197/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adam.cpp.obj 2025-07-24T04:44:03.5547610Z [3198/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\transformer.cpp.obj 2025-07-24T04:44:05.3124869Z [3199/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\optimizer.cpp.obj 2025-07-24T04:44:08.7320530Z [3200/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\lr_scheduler.cpp.obj 2025-07-24T04:44:08.7882536Z [3201/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\step_lr.cpp.obj 2025-07-24T04:44:09.3433357Z [3202/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adamw.cpp.obj 2025-07-24T04:44:09.9589232Z [3203/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\lbfgs.cpp.obj 2025-07-24T04:44:10.6167651Z [3204/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\reduce_on_plateau_scheduler.cpp.obj 2025-07-24T04:44:11.7836754Z [3205/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\xpu.cpp.obj 2025-07-24T04:44:14.7450865Z [3206/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX2.cpp.obj 2025-07-24T04:44:14.7452004Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:14.7453293Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:15.1825994Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:15.1827626Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:15.1828884Z [3207/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX2.cpp.obj 2025-07-24T04:44:15.1829938Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:15.1831183Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:21.1618471Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:21.1621191Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:21.1937567Z [3208/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX2.cpp.obj 2025-07-24T04:44:21.1939840Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:21.1942325Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:23.1744204Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:23.1747158Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:23.1762435Z [3209/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX2.cpp.obj 2025-07-24T04:44:23.1764547Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:23.2009237Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:23.2827069Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:23.2829594Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:23.2831584Z [3210/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\serialize.cpp.obj 2025-07-24T04:44:25.7014755Z [3211/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\rmsprop.cpp.obj 2025-07-24T04:44:30.6136733Z [3212/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\sgd.cpp.obj 2025-07-24T04:44:30.9732655Z [3213/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX2.cpp.obj 2025-07-24T04:44:30.9734312Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:30.9736258Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:34.6608570Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:34.6615997Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:34.6618245Z [3214/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX2.cpp.obj 2025-07-24T04:44:34.6620244Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:34.6622453Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:37.0428130Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:37.0430674Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:37.0598918Z [3215/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX2.cpp.obj 2025-07-24T04:44:37.1608328Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:37.2537122Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:37.2836587Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:37.2838955Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:37.2840992Z [3216/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX2.cpp.obj 2025-07-24T04:44:37.2842883Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:37.2845300Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:38.5370939Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:38.6756703Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:38.6944503Z [3217/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX2.cpp.obj 2025-07-24T04:44:38.7118832Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:38.7121786Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:41.6178122Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:41.6181438Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:41.6183989Z [3218/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX2.cpp.obj 2025-07-24T04:44:41.6335154Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:41.6339544Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:44.7824282Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:44.7826938Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:44.7829717Z [3219/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX2.cpp.obj 2025-07-24T04:44:44.7831822Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:44.7834784Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:47.1906136Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:47.1908770Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:47.1910899Z [3220/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\input-archive.cpp.obj 2025-07-24T04:44:47.3266448Z [3221/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX2.cpp.obj 2025-07-24T04:44:47.3288373Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:47.3290695Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:49.4177446Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:49.4180190Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:49.4187682Z [3222/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\output-archive.cpp.obj 2025-07-24T04:44:49.9418148Z [3223/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX2.cpp.obj 2025-07-24T04:44:49.9419957Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:49.9421971Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:50.2257276Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:50.2260081Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:50.2262381Z [3224/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX2.cpp.obj 2025-07-24T04:44:50.2264298Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:50.2266613Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:53.0347696Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:53.0350796Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:53.0353128Z [3225/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX2.cpp.obj 2025-07-24T04:44:53.0355451Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:53.0357963Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:55.6260958Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:55.6363130Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:55.6366771Z [3226/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX2.cpp.obj 2025-07-24T04:44:55.6368951Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:55.6371332Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:56.2597029Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:56.2599291Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:56.2601198Z [3227/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX2.cpp.obj 2025-07-24T04:44:56.2602801Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:56.2604669Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:56.5343324Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:56.5345683Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:56.5348144Z [3228/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX2.cpp.obj 2025-07-24T04:44:56.5350226Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:56.5352332Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:56.7870377Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:56.7872429Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:56.7874144Z [3229/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX2.cpp.obj 2025-07-24T04:44:56.7875380Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:44:56.7876611Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:00.0171412Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:00.0173482Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:00.0175270Z [3230/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:00.0176857Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:00.0178744Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:03.0303244Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:03.0318581Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:03.0321119Z [3231/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:03.0323277Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:03.0325786Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:10.1893766Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:10.2335351Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:10.2736188Z [3232/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:10.3842622Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:10.4358029Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:10.5986781Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:10.6208739Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:10.6210879Z [3233/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:10.6279061Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:10.6281562Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:11.3400581Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:11.4274917Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:11.4277191Z [3234/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:11.4351123Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:11.4353622Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:16.8515246Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:16.8517851Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:16.8519992Z [3235/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:16.8524622Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:16.8526970Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:16.9501912Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:16.9504773Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:16.9507165Z [3236/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:16.9509586Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:16.9512296Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:17.8434216Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:17.8436595Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:17.8438543Z [3237/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:17.8440840Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:17.8443153Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:22.5749321Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:22.5753191Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:22.5754600Z [3238/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:22.5755698Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:22.5756942Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:22.8843246Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:22.9286879Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:22.9289511Z [3239/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:22.9781451Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:23.0950469Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:23.7204189Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:23.7411877Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:23.7413930Z [3240/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:23.7780095Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:23.7923645Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:26.8216121Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:26.8218750Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:26.8219891Z [3241/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:26.8220950Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:26.8222163Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:26.8654629Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:26.8657246Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:26.8659362Z [3242/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:26.8661398Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:26.8663737Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:32.1449661Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:32.2220457Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:32.3485381Z [3243/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:32.4601916Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:32.6397091Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:34.1414628Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:34.2657581Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:34.2737681Z [3244/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:34.2739929Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:34.2996633Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:34.6142981Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:34.6323543Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:34.6326357Z [3245/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:34.6687212Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:34.6689884Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:34.7988684Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:34.7990685Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:34.7992486Z [3246/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX2.cpp.obj 2025-07-24T04:45:34.7994178Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:34.7996165Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:37.1683351Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:37.1684844Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:37.1685981Z [3247/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:37.1687037Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:37.1688269Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:41.2074760Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:41.2076131Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:41.2077317Z [3248/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:41.2078502Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:41.2079741Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:41.2893376Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:41.2894730Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:41.2895846Z [3249/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:41.2897102Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:41.2898466Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:41.4022515Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:41.4024941Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:41.4027035Z [3250/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:41.4031469Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:41.4033767Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:44.7224349Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:44.7536633Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:44.7624433Z [3251/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:44.7845805Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:44.8012630Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:46.2511568Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:46.4270141Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:46.6373885Z [3252/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:46.7699230Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:46.8736892Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:47.6237365Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:47.6239703Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:47.6241933Z [3253/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:48.4566541Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:48.4567859Z [3254/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:48.4569017Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:48.4570258Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:49.3045370Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:49.3046727Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:49.3047866Z [3255/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:49.3048922Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:49.3050174Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:49.3738255Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:49.3740650Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:49.3742829Z [3256/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:51.5372756Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:51.5374842Z [3257/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:51.5426153Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:51.5428456Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:52.1773996Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:52.1775391Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:52.1776537Z [3258/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:52.1777589Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:52.1778820Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:53.8179691Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:53.8182090Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:53.8184455Z [3259/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX2.cpp.obj 2025-07-24T04:45:53.8186502Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:53.8188601Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:59.9481523Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:45:59.9730322Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:00.0574049Z [3260/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX2.cpp.obj 2025-07-24T04:46:00.0576110Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:00.1541312Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:00.2004074Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:00.2471489Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:00.3202505Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): warning C4180: qualifier applied to function type has no meaning; ignored 2025-07-24T04:46:00.3652432Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): note: the template instantiation context (the oldest one first) is 2025-07-24T04:46:00.4937556Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(422): note: see reference to class template instantiation 'at::native::`anonymous-namespace'::Dist' being compiled 2025-07-24T04:46:00.5701566Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(190): note: while compiling class template member function 'void at::native::`anonymous-namespace'::Dist::apply_pdist(at::Tensor &,const at::Tensor &,const scalar_t)' 2025-07-24T04:46:00.6017686Z with 2025-07-24T04:46:00.8578080Z [ 2025-07-24T04:46:00.8855740Z scalar_t=scalar_t 2025-07-24T04:46:00.8856401Z ] 2025-07-24T04:46:00.8928202Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see the first reference to 'at::native::`anonymous-namespace'::Dist::apply_pdist' in 'at::native::`anonymous-namespace'::pdist_forward_kernel_impl::::()::::operator ()' 2025-07-24T04:46:00.9634083Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(192): note: see reference to function template instantiation 'void at::native::`anonymous-namespace'::Dist::run_parallel_pdist::zdist_calc>>(at::Tensor &,const at::Tensor &,const scalar_t)' being compiled 2025-07-24T04:46:00.9712256Z with 2025-07-24T04:46:00.9712749Z [ 2025-07-24T04:46:00.9834109Z scalar_t=scalar_t 2025-07-24T04:46:00.9834619Z ] 2025-07-24T04:46:00.9837885Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(175): note: see reference to function template instantiation 'scalar_t at::vec::map2_reduce_all::run_parallel_pdist::::()::,data_t(const data_t &,const data_t &),0>(const MapOp &,ReduceOp (__cdecl &),const scalar_t *,const scalar_t *,int64_t)' being compiled 2025-07-24T04:46:00.9840473Z with 2025-07-24T04:46:00.9840781Z [ 2025-07-24T04:46:00.9841106Z scalar_t=scalar_t, 2025-07-24T04:46:00.9841632Z data_t=at::vec::AVX2::Vectorized, 2025-07-24T04:46:00.9842523Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-07-24T04:46:00.9843790Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-07-24T04:46:00.9844656Z ] 2025-07-24T04:46:00.9846209Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(299): note: see reference to function template instantiation 'scalar_t at::vec::vec_reduce_all(Op (__cdecl &),const at::vec::AVX2::Vectorized &)' being compiled 2025-07-24T04:46:00.9847811Z with 2025-07-24T04:46:00.9848148Z [ 2025-07-24T04:46:00.9848465Z scalar_t=float, 2025-07-24T04:46:00.9849316Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &), 2025-07-24T04:46:00.9850585Z Op=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-07-24T04:46:00.9851380Z ] 2025-07-24T04:46:00.9852580Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(176): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-07-24T04:46:00.9853898Z with 2025-07-24T04:46:00.9854177Z [ 2025-07-24T04:46:00.9855005Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-07-24T04:46:00.9855838Z ] 2025-07-24T04:46:00.9856607Z [3261/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX2.cpp.obj 2025-07-24T04:46:01.7942307Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:01.7944338Z [3262/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX2.cpp.obj 2025-07-24T04:46:01.7946251Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:01.7948525Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:02.5257555Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:02.5259986Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:02.5262062Z [3263/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX2.cpp.obj 2025-07-24T04:46:03.8779297Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:03.8781598Z [3264/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX2.cpp.obj 2025-07-24T04:46:03.8785847Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:03.9146621Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:05.3048449Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:05.4231424Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:05.4508888Z [3265/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX2.cpp.obj 2025-07-24T04:46:07.4807031Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:07.6299671Z [3266/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX2.cpp.obj 2025-07-24T04:46:07.6489975Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:07.6492429Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:09.2410325Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:09.2412586Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:09.2414625Z [3267/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX2.cpp.obj 2025-07-24T04:46:09.2416466Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:09.2418624Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:12.9246164Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:12.9247586Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:12.9248830Z [3268/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX2.cpp.obj 2025-07-24T04:46:12.9249973Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:12.9251202Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:13.0920791Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:13.0923273Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:13.0925618Z [3269/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX2.cpp.obj 2025-07-24T04:46:13.0927742Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:13.0930024Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:18.1743551Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:18.1998368Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:18.3584133Z [3270/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX2.cpp.obj 2025-07-24T04:46:18.5184155Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:18.7623455Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:21.1233421Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:21.2481379Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:21.4246518Z [3271/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX2.cpp.obj 2025-07-24T04:46:21.6415550Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:21.8008054Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:22.6470887Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:22.6473499Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:22.6761976Z [3272/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX2.cpp.obj 2025-07-24T04:46:22.7483603Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:22.7801513Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:28.1780256Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:28.2228773Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:28.2230915Z [3273/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX2.cpp.obj 2025-07-24T04:46:28.2246442Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:28.2249089Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:28.4395502Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:28.6362292Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:28.8597067Z [3274/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX512.cpp.obj 2025-07-24T04:46:30.8960621Z [3275/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX2.cpp.obj 2025-07-24T04:46:30.8987616Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:30.8990002Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:33.5863707Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:33.5866328Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:33.6070941Z [3276/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX512.cpp.obj 2025-07-24T04:46:35.9808328Z [3277/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX512.cpp.obj 2025-07-24T04:46:39.1879647Z [3278/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX512.cpp.obj 2025-07-24T04:46:41.5495886Z [3279/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX2.cpp.obj 2025-07-24T04:46:41.5497001Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:41.5498228Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:41.8221045Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:41.8223725Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:41.8226131Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): warning C4333: '>>': right shift by too large amount, data loss 2025-07-24T04:46:41.8228169Z [3280/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX512.cpp.obj 2025-07-24T04:46:46.7039940Z [3281/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX512.cpp.obj 2025-07-24T04:46:46.7922116Z [3282/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX512.cpp.obj 2025-07-24T04:46:46.9217913Z [3283/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX512.cpp.obj 2025-07-24T04:46:51.6250723Z [3284/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX512.cpp.obj 2025-07-24T04:46:51.7588548Z [3285/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX512.cpp.obj 2025-07-24T04:46:53.8814599Z [3286/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX2.cpp.obj 2025-07-24T04:46:53.8816798Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:53.8818843Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:58.3032895Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:58.3035715Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T04:46:58.3037728Z [3287/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX512.cpp.obj 2025-07-24T04:46:58.5076977Z [3288/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX512.cpp.obj 2025-07-24T04:46:59.0322448Z [3289/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX512.cpp.obj 2025-07-24T04:47:02.5770415Z [3290/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:04.1018132Z [3291/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:04.8979794Z [3292/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:05.2691896Z [3293/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:08.0475205Z [3294/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:08.8820050Z [3295/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX512.cpp.obj 2025-07-24T04:47:16.9821946Z [3296/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:17.1486470Z [3297/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:17.6058694Z [3298/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:20.9345708Z [3299/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:25.2434334Z [3300/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:27.2252706Z [3301/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:31.7739594Z [3302/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:35.4725943Z [3303/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:36.5207277Z [3304/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:36.9015887Z [3305/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:36.9101389Z [3306/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:38.6755613Z [3307/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:40.2222927Z [3308/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:43.8105664Z [3309/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:44.9852882Z [3310/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:45.2431785Z [3311/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:48.4548537Z [3312/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:49.2077015Z [3313/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX512.cpp.obj 2025-07-24T04:47:49.5051869Z [3314/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:49.5096594Z [3315/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:53.4967997Z [3316/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:55.2278089Z [3317/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:56.0266218Z [3318/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:56.0910549Z [3319/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:58.4618194Z [3320/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX512.cpp.obj 2025-07-24T04:47:59.2970917Z [3321/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:00.3414483Z [3322/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:01.7982392Z [3323/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:02.7692746Z [3324/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:03.5405600Z [3325/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:07.8552523Z [3326/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:08.6008369Z [3327/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:08.6010545Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): warning C4180: qualifier applied to function type has no meaning; ignored 2025-07-24T04:48:08.6886508Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): note: the template instantiation context (the oldest one first) is 2025-07-24T04:48:08.6889694Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(422): note: see reference to class template instantiation 'at::native::`anonymous-namespace'::Dist' being compiled 2025-07-24T04:48:08.8461686Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(190): note: while compiling class template member function 'void at::native::`anonymous-namespace'::Dist::apply_pdist(at::Tensor &,const at::Tensor &,const scalar_t)' 2025-07-24T04:48:08.9644286Z with 2025-07-24T04:48:08.9878421Z [ 2025-07-24T04:48:09.1587605Z scalar_t=scalar_t 2025-07-24T04:48:09.1710229Z ] 2025-07-24T04:48:09.1751022Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see the first reference to 'at::native::`anonymous-namespace'::Dist::apply_pdist' in 'at::native::`anonymous-namespace'::pdist_forward_kernel_impl::::()::::operator ()' 2025-07-24T04:48:09.2248747Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(192): note: see reference to function template instantiation 'void at::native::`anonymous-namespace'::Dist::run_parallel_pdist::zdist_calc>>(at::Tensor &,const at::Tensor &,const scalar_t)' being compiled 2025-07-24T04:48:09.4197333Z with 2025-07-24T04:48:09.4407456Z [ 2025-07-24T04:48:09.4408947Z scalar_t=scalar_t 2025-07-24T04:48:09.4409427Z ] 2025-07-24T04:48:09.4412950Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(175): note: see reference to function template instantiation 'scalar_t at::vec::map2_reduce_all::run_parallel_pdist::::()::,data_t(const data_t &,const data_t &),0>(const MapOp &,ReduceOp (__cdecl &),const scalar_t *,const scalar_t *,int64_t)' being compiled 2025-07-24T04:48:09.4416257Z with 2025-07-24T04:48:09.4417159Z [ 2025-07-24T04:48:09.4417489Z scalar_t=scalar_t, 2025-07-24T04:48:09.4418418Z data_t=at::vec::AVX512::Vectorized, 2025-07-24T04:48:09.4419461Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-07-24T04:48:09.4421358Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-07-24T04:48:09.4422448Z ] 2025-07-24T04:48:09.4428424Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(299): note: see reference to function template instantiation 'scalar_t at::vec::vec_reduce_all(Op (__cdecl &),const at::vec::AVX512::Vectorized &)' being compiled 2025-07-24T04:48:09.4430679Z with 2025-07-24T04:48:09.4431108Z [ 2025-07-24T04:48:09.5283249Z scalar_t=float, 2025-07-24T04:48:09.5284482Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &), 2025-07-24T04:48:09.5311378Z Op=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-07-24T04:48:09.5312563Z ] 2025-07-24T04:48:10.3225691Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(176): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-07-24T04:48:10.3550516Z with 2025-07-24T04:48:10.4296709Z [ 2025-07-24T04:48:10.5197139Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-07-24T04:48:10.5204467Z ] 2025-07-24T04:48:10.5205710Z [3328/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:14.4567654Z [3329/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX512.cpp.obj 2025-07-24T04:48:15.6963918Z [3330/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:19.5780509Z [3331/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:21.2896089Z [3332/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:23.0698511Z [3333/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:28.4159427Z [3334/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:31.0315707Z [3335/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:33.0580721Z [3336/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:38.8988362Z [3337/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX512.cpp.obj 2025-07-24T04:48:39.5490796Z [3338/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:41.4865256Z [3339/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAContext.cpp.obj 2025-07-24T04:48:41.8247048Z [3340/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:47.8600236Z [3341/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:48.0518662Z [3342/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CuSparseHandlePool.cpp.obj 2025-07-24T04:48:51.0649586Z [3343/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX512.cpp.obj 2025-07-24T04:48:53.8332680Z [3344/7681] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX512.cpp.obj 2025-07-24T04:48:53.8657613Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): warning C4333: '>>': right shift by too large amount, data loss 2025-07-24T04:48:53.8659577Z [3345/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\Exceptions.cpp.obj 2025-07-24T04:48:54.0021727Z [3346/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\EmptyTensor.cpp.obj 2025-07-24T04:48:54.0252814Z [3347/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAGeneratorImpl.cpp.obj 2025-07-24T04:48:54.4574574Z [3348/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\llvm_basic.cpp.obj 2025-07-24T04:48:54.9046809Z [3349/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\PeerToPeerAccess.cpp.obj 2025-07-24T04:48:55.0377383Z [3350/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\llvm_complex.cpp.obj 2025-07-24T04:48:55.4267091Z [3351/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDASparseDescriptors.cpp.obj 2025-07-24T04:48:56.0567554Z [3352/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CachingHostAllocator.cpp.obj 2025-07-24T04:48:57.7303771Z [3353/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\LazyNVRTC.cpp.obj 2025-07-24T04:48:57.7393144Z [3354/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAGraph.cpp.obj 2025-07-24T04:48:58.4475207Z [3355/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorCompare.cpp.obj 2025-07-24T04:49:00.6626143Z [3356/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\ConvPlaceholders.cpp.obj 2025-07-24T04:49:00.8366556Z [3357/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Resize.cpp.obj 2025-07-24T04:49:01.2754476Z [3358/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SpectralOps.cpp.obj 2025-07-24T04:49:01.7612483Z [3359/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\AffineGridGenerator.cpp.obj 2025-07-24T04:49:02.4507651Z [3360/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\CUDAHooks.cpp.obj 2025-07-24T04:49:03.7018359Z [3361/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\BatchNorm.cpp.obj 2025-07-24T04:49:04.7740141Z [3362/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\ConvShared.cpp.obj 2025-07-24T04:49:07.0039322Z [3363/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\GridSampler.cpp.obj 2025-07-24T04:49:07.4893718Z [3364/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\Conv_v7.cpp.obj 2025-07-24T04:49:08.0170364Z [3365/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\LossCTC.cpp.obj 2025-07-24T04:49:09.9618640Z [3366/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\BatchNorm_miopen.cpp.obj 2025-07-24T04:49:11.7711419Z [3367/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\RNN.cpp.obj 2025-07-24T04:49:12.4328259Z [3368/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\Conv_miopen.cpp.obj 2025-07-24T04:49:12.7544007Z [3369/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\RNN_miopen.cpp.obj 2025-07-24T04:49:17.6833496Z [3370/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerUtils.cpp.obj 2025-07-24T04:49:19.6330236Z [3371/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\Activation.cpp.obj 2025-07-24T04:49:36.3798957Z [3372/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\Conv_v8.cpp.obj 2025-07-24T04:49:44.8461746Z [3373/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\BinaryOps.cpp.obj 2025-07-24T04:49:45.8338233Z [3374/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\MHA.cpp.obj 2025-07-24T04:49:48.7637059Z [3375/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\ConvPrepack.cpp.obj 2025-07-24T04:49:50.3267727Z [3376/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Conv.cpp.obj 2025-07-24T04:49:53.7057605Z [3377/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\ConvUnpackImpl.cpp.obj 2025-07-24T04:49:56.2639203Z [3378/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\sdp_utils.cpp.obj 2025-07-24T04:49:57.7966190Z [3379/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Linear.cpp.obj 2025-07-24T04:49:58.4676604Z [3380/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\cuSPARSELtOps.cpp.obj 2025-07-24T04:49:58.5861795Z [3381/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Pooling.cpp.obj 2025-07-24T04:50:00.9702914Z [3382/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Handle.cpp.obj 2025-07-24T04:50:04.5679515Z [3383/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\distributed\c10d\reducer_cuda.cpp.obj 2025-07-24T04:50:06.1842750Z [3384/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\AutocastRNN.cpp.obj 2025-07-24T04:50:07.5143221Z [3385/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Descriptors.cpp.obj 2025-07-24T04:50:09.0345313Z [3386/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Types.cpp.obj 2025-07-24T04:50:09.1127453Z [3387/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.cpp.obj 2025-07-24T04:50:12.9527154Z [3388/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\Sleep.cu.obj 2025-07-24T04:50:13.5118565Z Sleep.cu 2025-07-24T04:50:13.5119014Z tmpxft_000011d8_00000000-7_Sleep.cudafe1.cpp 2025-07-24T04:50:13.5120838Z [3389/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorFactories.cu.obj 2025-07-24T04:50:13.6291551Z TensorFactories.cu 2025-07-24T04:50:13.6292441Z tmpxft_00000bb4_00000000-7_TensorFactories.cudafe1.cpp 2025-07-24T04:50:13.6293631Z [3390/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortKeys.cu.obj 2025-07-24T04:50:13.6405351Z cub-RadixSortKeys.cu 2025-07-24T04:50:13.6407610Z tmpxft_00001154_00000000-7_cub-RadixSortKeys.cudafe1.cpp 2025-07-24T04:50:13.6408933Z [3391/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-1.cu.obj 2025-07-24T04:50:13.6433480Z cub-RadixSortPairs-int32-1.cu 2025-07-24T04:50:13.6434294Z tmpxft_00001590_00000000-7_cub-RadixSortPairs-int32-1.cudafe1.cpp 2025-07-24T04:50:13.6523104Z [3392/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-f16-8.cu.obj 2025-07-24T04:50:14.5313566Z cub-RadixSortPairs-f16-8.cu 2025-07-24T04:50:14.5314313Z tmpxft_00001224_00000000-7_cub-RadixSortPairs-f16-8.cudafe1.cpp 2025-07-24T04:50:14.5316312Z [3393/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\LinearPrepack.cpp.obj 2025-07-24T04:50:16.8952667Z [3394/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-2.cu.obj 2025-07-24T04:50:17.3454640Z cub-RadixSortPairs-int32-2.cu 2025-07-24T04:50:17.3455094Z tmpxft_00001110_00000000-7_cub-RadixSortPairs-int32-2.cudafe1.cpp 2025-07-24T04:50:17.3455816Z [3395/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-2.cu.obj 2025-07-24T04:50:17.4018676Z cub-RadixSortPairs-int64-2.cu 2025-07-24T04:50:17.4019455Z tmpxft_00001390_00000000-7_cub-RadixSortPairs-int64-2.cudafe1.cpp 2025-07-24T04:50:17.4020766Z [3396/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-4.cu.obj 2025-07-24T04:50:17.4191919Z cub-RadixSortPairs-int64-4.cu 2025-07-24T04:50:17.4192627Z tmpxft_00001418_00000000-7_cub-RadixSortPairs-int64-4.cudafe1.cpp 2025-07-24T04:50:17.4193774Z [3397/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-1.cu.obj 2025-07-24T04:50:17.4736727Z cub-RadixSortPairs-int64-1.cu 2025-07-24T04:50:17.4737534Z tmpxft_00000e9c_00000000-7_cub-RadixSortPairs-int64-1.cudafe1.cpp 2025-07-24T04:50:17.4739264Z [3398/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-4.cu.obj 2025-07-24T04:50:18.4698846Z cub-RadixSortPairs-int32-4.cu 2025-07-24T04:50:18.4699537Z tmpxft_00000a68_00000000-7_cub-RadixSortPairs-int32-4.cudafe1.cpp 2025-07-24T04:50:18.4700723Z [3399/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-scalars.cu.obj 2025-07-24T04:50:19.9401742Z cub-RadixSortPairs-scalars.cu 2025-07-24T04:50:19.9402567Z tmpxft_000010a4_00000000-7_cub-RadixSortPairs-scalars.cudafe1.cpp 2025-07-24T04:50:19.9403902Z [3400/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\IndexUtils.cu.obj 2025-07-24T04:50:20.1125752Z IndexUtils.cu 2025-07-24T04:50:20.1126311Z tmpxft_00000f9c_00000000-7_IndexUtils.cudafe1.cpp 2025-07-24T04:50:20.1127022Z [3401/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\LinearUnpackImpl.cpp.obj 2025-07-24T04:50:20.7085547Z [3402/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint16-8.cu.obj 2025-07-24T04:50:21.3262539Z cub-RadixSortPairs-uint16-8.cu 2025-07-24T04:50:21.3263314Z tmpxft_00000924_00000000-7_cub-RadixSortPairs-uint16-8.cudafe1.cpp 2025-07-24T04:50:21.3264431Z [3403/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub.cu.obj 2025-07-24T04:50:21.4126582Z cub.cu 2025-07-24T04:50:21.4127076Z tmpxft_000004b4_00000000-7_cub.cudafe1.cpp 2025-07-24T04:50:21.4128296Z [3404/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint32-8.cu.obj 2025-07-24T04:50:21.4767557Z cub-RadixSortPairs-uint32-8.cu 2025-07-24T04:50:21.4768349Z tmpxft_00000694_00000000-7_cub-RadixSortPairs-uint32-8.cudafe1.cpp 2025-07-24T04:50:21.4769625Z [3405/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint64-8.cu.obj 2025-07-24T04:50:21.8249038Z cub-RadixSortPairs-uint64-8.cu 2025-07-24T04:50:21.8249843Z tmpxft_00001488_00000000-7_cub-RadixSortPairs-uint64-8.cudafe1.cpp 2025-07-24T04:50:21.8250722Z [3406/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\jiterator.cu.obj 2025-07-24T04:50:22.6681706Z jiterator.cu 2025-07-24T04:50:22.6682013Z tmpxft_000006f8_00000000-7_jiterator.cudafe1.cpp 2025-07-24T04:50:22.6682722Z [3407/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AbsKernel.cu.obj 2025-07-24T04:50:22.8661833Z AbsKernel.cu 2025-07-24T04:50:22.8662224Z tmpxft_00001728_00000000-7_AbsKernel.cudafe1.cpp 2025-07-24T04:50:22.8663089Z [3408/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationEluKernel.cu.obj 2025-07-24T04:50:23.3876176Z ActivationEluKernel.cu 2025-07-24T04:50:23.3876834Z tmpxft_000015ac_00000000-7_ActivationEluKernel.cudafe1.cpp 2025-07-24T04:50:23.3878071Z [3409/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationGeluKernel.cu.obj 2025-07-24T04:50:24.1324613Z ActivationGeluKernel.cu 2025-07-24T04:50:24.1325027Z tmpxft_00000b3c_00000000-7_ActivationGeluKernel.cudafe1.cpp 2025-07-24T04:50:24.1325727Z [3410/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationGluKernel.cu.obj 2025-07-24T04:50:24.1359535Z ActivationGluKernel.cu 2025-07-24T04:50:24.1359998Z tmpxft_000002d8_00000000-7_ActivationGluKernel.cudafe1.cpp 2025-07-24T04:50:24.1360759Z [3411/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardsigmoidKernel.cu.obj 2025-07-24T04:50:24.2131066Z ActivationHardsigmoidKernel.cu 2025-07-24T04:50:24.2131640Z tmpxft_0000109c_00000000-7_ActivationHardsigmoidKernel.cudafe1.cpp 2025-07-24T04:50:24.2132404Z [3412/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardshrinkKernel.cu.obj 2025-07-24T04:50:24.6648786Z ActivationHardshrinkKernel.cu 2025-07-24T04:50:24.6649652Z tmpxft_00000f00_00000000-7_ActivationHardshrinkKernel.cudafe1.cpp 2025-07-24T04:50:24.6651069Z [3413/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardswishKernel.cu.obj 2025-07-24T04:50:25.3522059Z ActivationHardswishKernel.cu 2025-07-24T04:50:25.3522921Z tmpxft_000016d4_00000000-7_ActivationHardswishKernel.cudafe1.cpp 2025-07-24T04:50:25.3526116Z [3414/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardtanhKernel.cu.obj 2025-07-24T04:50:25.7106223Z ActivationHardtanhKernel.cu 2025-07-24T04:50:25.7106902Z tmpxft_000013d0_00000000-7_ActivationHardtanhKernel.cudafe1.cpp 2025-07-24T04:50:25.7108297Z [3415/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationLeakyReluKernel.cu.obj 2025-07-24T04:50:26.1095475Z ActivationLeakyReluKernel.cu 2025-07-24T04:50:26.1096022Z tmpxft_000004c4_00000000-7_ActivationLeakyReluKernel.cudafe1.cpp 2025-07-24T04:50:26.1096769Z [3416/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationLogSigmoidKernel.cu.obj 2025-07-24T04:50:26.8052985Z ActivationLogSigmoidKernel.cu 2025-07-24T04:50:26.8054249Z tmpxft_000014cc_00000000-7_ActivationLogSigmoidKernel.cudafe1.cpp 2025-07-24T04:50:26.8056039Z [3417/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationPreluKernel.cu.obj 2025-07-24T04:50:26.8086277Z ActivationPreluKernel.cu 2025-07-24T04:50:26.8086709Z tmpxft_00000dcc_00000000-7_ActivationPreluKernel.cudafe1.cpp 2025-07-24T04:50:26.8087461Z [3418/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationMishKernel.cu.obj 2025-07-24T04:50:26.8526681Z ActivationMishKernel.cu 2025-07-24T04:50:26.8527085Z tmpxft_00000e74_00000000-7_ActivationMishKernel.cudafe1.cpp 2025-07-24T04:50:26.8527777Z [3419/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSiluKernel.cu.obj 2025-07-24T04:50:27.2836619Z ActivationSiluKernel.cu 2025-07-24T04:50:27.2837037Z tmpxft_000010cc_00000000-7_ActivationSiluKernel.cudafe1.cpp 2025-07-24T04:50:27.2837746Z [3420/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSoftplusKernel.cu.obj 2025-07-24T04:50:28.0426093Z ActivationSoftplusKernel.cu 2025-07-24T04:50:28.0426894Z tmpxft_0000035c_00000000-7_ActivationSoftplusKernel.cudafe1.cpp 2025-07-24T04:50:28.0428329Z [3421/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSoftshrinkKernel.cu.obj 2025-07-24T04:50:28.4711946Z ActivationSoftshrinkKernel.cu 2025-07-24T04:50:28.4712777Z tmpxft_000004b4_00000000-7_ActivationSoftshrinkKernel.cudafe1.cpp 2025-07-24T04:50:28.4714039Z [3422/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationThresholdKernel.cu.obj 2025-07-24T04:50:29.6611001Z ActivationThresholdKernel.cu 2025-07-24T04:50:29.6611480Z tmpxft_000017f4_00000000-7_ActivationThresholdKernel.cudafe1.cpp 2025-07-24T04:50:29.6612316Z [3423/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveAveragePooling.cu.obj 2025-07-24T04:50:30.1407569Z AdaptiveAveragePooling.cu 2025-07-24T04:50:30.1408075Z tmpxft_000011b0_00000000-7_AdaptiveAveragePooling.cudafe1.cpp 2025-07-24T04:50:30.1408969Z [3424/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveAveragePooling3d.cu.obj 2025-07-24T04:50:30.1707388Z AdaptiveAveragePooling3d.cu 2025-07-24T04:50:30.1708161Z tmpxft_00001488_00000000-7_AdaptiveAveragePooling3d.cudafe1.cpp 2025-07-24T04:50:30.1709521Z [3425/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveMaxPooling2d.cu.obj 2025-07-24T04:50:30.3014081Z AdaptiveMaxPooling2d.cu 2025-07-24T04:50:30.3014486Z tmpxft_000005c4_00000000-7_AdaptiveMaxPooling2d.cudafe1.cpp 2025-07-24T04:50:30.3015191Z [3426/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveMaxPooling3d.cu.obj 2025-07-24T04:50:30.7142831Z AdaptiveMaxPooling3d.cu 2025-07-24T04:50:30.7143536Z tmpxft_00000c0c_00000000-7_AdaptiveMaxPooling3d.cudafe1.cpp 2025-07-24T04:50:30.7144768Z [3427/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AmpKernels.cu.obj 2025-07-24T04:50:31.3893930Z AmpKernels.cu 2025-07-24T04:50:31.3894252Z tmpxft_000004c0_00000000-7_AmpKernels.cudafe1.cpp 2025-07-24T04:50:31.3894882Z [3428/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AveragePool2d.cu.obj 2025-07-24T04:50:31.8346402Z AveragePool2d.cu 2025-07-24T04:50:31.8347051Z tmpxft_00001498_00000000-7_AveragePool2d.cudafe1.cpp 2025-07-24T04:50:31.8347697Z [3429/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AveragePool3d.cu.obj 2025-07-24T04:50:32.3955546Z AveragePool3d.cu 2025-07-24T04:50:32.3955891Z tmpxft_00000e20_00000000-7_AveragePool3d.cudafe1.cpp 2025-07-24T04:50:32.3956674Z [3430/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryBitwiseOpsKernels.cu.obj 2025-07-24T04:50:32.8953093Z BinaryBitwiseOpsKernels.cu 2025-07-24T04:50:32.8953574Z tmpxft_000010c8_00000000-7_BinaryBitwiseOpsKernels.cudafe1.cpp 2025-07-24T04:50:32.8954463Z [3431/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivFloorKernel.cu.obj 2025-07-24T04:50:32.9762502Z BinaryDivFloorKernel.cu 2025-07-24T04:50:32.9763133Z tmpxft_000012bc_00000000-7_BinaryDivFloorKernel.cudafe1.cpp 2025-07-24T04:50:32.9763871Z [3432/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivTruncKernel.cu.obj 2025-07-24T04:50:32.9789818Z BinaryDivTruncKernel.cu 2025-07-24T04:50:32.9790430Z tmpxft_00001718_00000000-7_BinaryDivTruncKernel.cudafe1.cpp 2025-07-24T04:50:32.9791575Z [3433/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivTrueKernel.cu.obj 2025-07-24T04:50:33.3600399Z BinaryDivTrueKernel.cu 2025-07-24T04:50:33.3601042Z tmpxft_000002d8_00000000-7_BinaryDivTrueKernel.cudafe1.cpp 2025-07-24T04:50:33.3602172Z [3434/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryGeometricKernels.cu.obj 2025-07-24T04:50:34.0242192Z BinaryGeometricKernels.cu 2025-07-24T04:50:34.0242925Z tmpxft_00000ef4_00000000-7_BinaryGeometricKernels.cudafe1.cpp 2025-07-24T04:50:34.0244271Z [3435/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryLogicalOpsKernels.cu.obj 2025-07-24T04:50:34.5103265Z BinaryLogicalOpsKernels.cu 2025-07-24T04:50:34.5104088Z tmpxft_00000a3c_00000000-7_BinaryLogicalOpsKernels.cudafe1.cpp 2025-07-24T04:50:34.5105503Z [3436/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMiscBackwardOpsKernels.cu.obj 2025-07-24T04:50:35.1106481Z BinaryMiscBackwardOpsKernels.cu 2025-07-24T04:50:35.1107391Z tmpxft_000004c0_00000000-7_BinaryMiscBackwardOpsKernels.cudafe1.cpp 2025-07-24T04:50:35.1108854Z [3437/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMiscOpsKernels.cu.obj 2025-07-24T04:50:35.6913706Z BinaryMiscOpsKernels.cu 2025-07-24T04:50:35.6914303Z tmpxft_00000d4c_00000000-7_BinaryMiscOpsKernels.cudafe1.cpp 2025-07-24T04:50:35.6915398Z [3438/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryShiftOpsKernels.cu.obj 2025-07-24T04:50:35.7154206Z BinaryShiftOpsKernels.cu 2025-07-24T04:50:35.7154667Z tmpxft_000005d4_00000000-7_BinaryShiftOpsKernels.cudafe1.cpp 2025-07-24T04:50:35.7155458Z [3439/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryRemainderKernel.cu.obj 2025-07-24T04:50:35.8352655Z BinaryRemainderKernel.cu 2025-07-24T04:50:35.8353362Z tmpxft_00001408_00000000-7_BinaryRemainderKernel.cudafe1.cpp 2025-07-24T04:50:35.8354742Z [3440/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMulKernel.cu.obj 2025-07-24T04:50:36.9635006Z BinaryMulKernel.cu 2025-07-24T04:50:36.9635600Z tmpxft_00000328_00000000-7_BinaryMulKernel.cudafe1.cpp 2025-07-24T04:50:36.9636801Z [3441/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Bucketization.cu.obj 2025-07-24T04:50:37.2433690Z Bucketization.cu 2025-07-24T04:50:37.2434255Z tmpxft_000001cc_00000000-7_Bucketization.cudafe1.cpp 2025-07-24T04:50:37.2435397Z [3442/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CUDAScalar.cu.obj 2025-07-24T04:50:37.9317556Z CUDAScalar.cu 2025-07-24T04:50:37.9318338Z tmpxft_000011ac_00000000-7_CUDAScalar.cudafe1.cpp 2025-07-24T04:50:37.9319418Z [3443/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Col2Im.cu.obj 2025-07-24T04:50:37.9579561Z Col2Im.cu 2025-07-24T04:50:37.9579991Z tmpxft_00001028_00000000-7_Col2Im.cudafe1.cpp 2025-07-24T04:50:37.9580692Z [3444/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CompareEQKernel.cu.obj 2025-07-24T04:50:38.2881785Z CompareEQKernel.cu 2025-07-24T04:50:38.2882368Z tmpxft_000011b0_00000000-7_CompareEQKernel.cudafe1.cpp 2025-07-24T04:50:38.2883591Z [3445/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CompareKernels.cu.obj 2025-07-24T04:50:39.2761978Z CompareKernels.cu 2025-07-24T04:50:39.2762350Z tmpxft_00001440_00000000-7_CompareKernels.cudafe1.cpp 2025-07-24T04:50:39.2763005Z [3446/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ComplexKernel.cu.obj 2025-07-24T04:50:39.3631070Z ComplexKernel.cu 2025-07-24T04:50:39.3631783Z tmpxft_000017d0_00000000-7_ComplexKernel.cudafe1.cpp 2025-07-24T04:50:39.3633604Z [3447/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ConvolutionMM2d.cu.obj 2025-07-24T04:50:39.8998695Z ConvolutionMM2d.cu 2025-07-24T04:50:39.8999273Z tmpxft_0000171c_00000000-7_ConvolutionMM2d.cudafe1.cpp 2025-07-24T04:50:39.9000463Z [3448/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CopysignKernel.cu.obj 2025-07-24T04:50:40.5278415Z CopysignKernel.cu 2025-07-24T04:50:40.5279027Z tmpxft_00001434_00000000-7_CopysignKernel.cudafe1.cpp 2025-07-24T04:50:40.5280231Z [3449/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Copy.cu.obj 2025-07-24T04:50:41.2956642Z Copy.cu 2025-07-24T04:50:41.2957041Z tmpxft_000014b0_00000000-7_Copy.cudafe1.cpp 2025-07-24T04:50:41.2957701Z [3450/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CrossKernel.cu.obj 2025-07-24T04:50:41.9441151Z CrossKernel.cu 2025-07-24T04:50:41.9441482Z tmpxft_00000fd8_00000000-7_CrossKernel.cudafe1.cpp 2025-07-24T04:50:41.9442185Z [3451/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumminmaxKernel.cu.obj 2025-07-24T04:50:42.3325944Z CumminmaxKernel.cu 2025-07-24T04:50:42.3326478Z tmpxft_000015a8_00000000-7_CumminmaxKernel.cudafe1.cpp 2025-07-24T04:50:42.3327616Z [3452/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumprodKernel.cu.obj 2025-07-24T04:50:42.7126903Z CumprodKernel.cu 2025-07-24T04:50:42.7127460Z tmpxft_00001248_00000000-7_CumprodKernel.cudafe1.cpp 2025-07-24T04:50:42.7128104Z [3453/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DepthwiseConv2d.cu.obj 2025-07-24T04:50:43.1862386Z DepthwiseConv2d.cu 2025-07-24T04:50:43.1863023Z tmpxft_000012c0_00000000-7_DepthwiseConv2d.cudafe1.cpp 2025-07-24T04:50:43.1864226Z [3454/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumsumKernel.cu.obj 2025-07-24T04:50:43.4923852Z CumsumKernel.cu 2025-07-24T04:50:43.9087436Z tmpxft_000002d8_00000000-7_CumsumKernel.cudafe1.cpp 2025-07-24T04:50:43.9088743Z [3455/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DepthwiseConv3d.cu.obj 2025-07-24T04:50:43.9089965Z DepthwiseConv3d.cu 2025-07-24T04:50:43.9090625Z tmpxft_0000119c_00000000-7_DepthwiseConv3d.cudafe1.cpp 2025-07-24T04:50:43.9091836Z [3456/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DilatedMaxPool2d.cu.obj 2025-07-24T04:50:44.7238139Z DilatedMaxPool2d.cu 2025-07-24T04:50:44.7238776Z tmpxft_00001734_00000000-7_DilatedMaxPool2d.cudafe1.cpp 2025-07-24T04:50:44.7239984Z [3457/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DilatedMaxPool3d.cu.obj 2025-07-24T04:50:45.3092207Z DilatedMaxPool3d.cu 2025-07-24T04:50:45.3092623Z tmpxft_00000810_00000000-7_DilatedMaxPool3d.cudafe1.cpp 2025-07-24T04:50:45.3093315Z [3458/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistanceKernel.cu.obj 2025-07-24T04:50:45.4365363Z DistanceKernel.cu 2025-07-24T04:50:45.4365728Z tmpxft_00000bfc_00000000-7_DistanceKernel.cudafe1.cpp 2025-07-24T04:50:45.4366419Z [3459/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionBernoulli.cu.obj 2025-07-24T04:50:45.7345402Z DistributionBernoulli.cu 2025-07-24T04:50:45.7346115Z tmpxft_000017f0_00000000-7_DistributionBernoulli.cudafe1.cpp 2025-07-24T04:50:45.7347488Z [3460/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionCauchyKernel.cu.obj 2025-07-24T04:50:46.1812194Z DistributionCauchyKernel.cu 2025-07-24T04:50:46.1812951Z tmpxft_0000162c_00000000-7_DistributionCauchyKernel.cudafe1.cpp 2025-07-24T04:50:46.1814441Z [3461/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionExponentialKernel.cu.obj 2025-07-24T04:50:46.6822206Z DistributionExponentialKernel.cu 2025-07-24T04:50:46.6822772Z tmpxft_000011b8_00000000-7_DistributionExponentialKernel.cudafe1.cpp 2025-07-24T04:50:46.6823599Z [3462/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionGeometricKernel.cu.obj 2025-07-24T04:50:46.9105632Z DistributionGeometricKernel.cu 2025-07-24T04:50:46.9106480Z tmpxft_00000700_00000000-7_DistributionGeometricKernel.cudafe1.cpp 2025-07-24T04:50:46.9107845Z [3463/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionLogNormalKernel.cu.obj 2025-07-24T04:50:47.8022788Z DistributionLogNormalKernel.cu 2025-07-24T04:50:47.8023598Z tmpxft_00000a64_00000000-7_DistributionLogNormalKernel.cudafe1.cpp 2025-07-24T04:50:47.8024382Z [3464/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionNormal.cu.obj 2025-07-24T04:50:48.4718316Z DistributionNormal.cu 2025-07-24T04:50:48.4729526Z tmpxft_000016bc_00000000-7_DistributionNormal.cudafe1.cpp 2025-07-24T04:50:48.4730965Z [3465/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionRandomKernel.cu.obj 2025-07-24T04:50:48.6846079Z DistributionRandomKernel.cu 2025-07-24T04:50:48.6846891Z tmpxft_00000fa0_00000000-7_DistributionRandomKernel.cudafe1.cpp 2025-07-24T04:50:48.6848249Z [3466/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionUniform.cu.obj 2025-07-24T04:50:49.1296669Z DistributionUniform.cu 2025-07-24T04:50:49.1297173Z tmpxft_00000fc4_00000000-7_DistributionUniform.cudafe1.cpp 2025-07-24T04:50:49.1297878Z [3467/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Distributions.cu.obj 2025-07-24T04:50:50.0196164Z Distributions.cu 2025-07-24T04:50:50.0196770Z tmpxft_00001214_00000000-7_Distributions.cudafe1.cpp 2025-07-24T04:50:50.0197669Z [3468/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Dropout.cu.obj 2025-07-24T04:50:51.1189345Z Dropout.cu 2025-07-24T04:50:51.1189649Z tmpxft_00000eb4_00000000-7_Dropout.cudafe1.cpp 2025-07-24T04:50:51.1190269Z [3469/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FillKernel.cu.obj 2025-07-24T04:50:51.6564165Z FillKernel.cu 2025-07-24T04:50:51.6564486Z tmpxft_00000bb4_00000000-7_FillKernel.cudafe1.cpp 2025-07-24T04:50:51.6565094Z [3470/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Embedding.cu.obj 2025-07-24T04:50:51.7266993Z Embedding.cu 2025-07-24T04:50:51.7267524Z tmpxft_0000128c_00000000-7_Embedding.cudafe1.cpp 2025-07-24T04:50:51.7268775Z [3471/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\EmbeddingBackwardKernel.cu.obj 2025-07-24T04:50:52.0787087Z EmbeddingBackwardKernel.cu 2025-07-24T04:50:52.0787886Z tmpxft_0000044c_00000000-7_EmbeddingBackwardKernel.cudafe1.cpp 2025-07-24T04:50:52.0789346Z [3472/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FlattenIndicesKernel.cu.obj 2025-07-24T04:50:52.5809325Z FlattenIndicesKernel.cu 2025-07-24T04:50:52.5809861Z tmpxft_000006c0_00000000-7_FlattenIndicesKernel.cudafe1.cpp 2025-07-24T04:50:52.5810581Z [3473/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\EmbeddingBag.cu.obj 2025-07-24T04:50:52.6763422Z EmbeddingBag.cu 2025-07-24T04:50:52.6763821Z tmpxft_000003f8_00000000-7_EmbeddingBag.cudafe1.cpp 2025-07-24T04:50:52.6764524Z [3474/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpList.cu.obj 2025-07-24T04:50:53.3257560Z ForeachBinaryOpList.cu 2025-07-24T04:50:53.3258209Z tmpxft_000007dc_00000000-7_ForeachBinaryOpList.cudafe1.cpp 2025-07-24T04:50:53.3259533Z [3475/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalar.cu.obj 2025-07-24T04:50:54.5105677Z ForeachBinaryOpScalar.cu 2025-07-24T04:50:54.5106098Z tmpxft_000002dc_00000000-7_ForeachBinaryOpScalar.cudafe1.cpp 2025-07-24T04:50:54.5106921Z [3476/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalarList.cu.obj 2025-07-24T04:50:55.0172215Z ForeachBinaryOpScalarList.cu 2025-07-24T04:50:55.0172672Z tmpxft_00000e4c_00000000-7_ForeachBinaryOpScalarList.cudafe1.cpp 2025-07-24T04:50:55.0173585Z [3477/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalarTensor.cu.obj 2025-07-24T04:50:55.1628578Z ForeachBinaryOpScalarTensor.cu 2025-07-24T04:50:55.1629397Z tmpxft_00000f18_00000000-7_ForeachBinaryOpScalarTensor.cudafe1.cpp 2025-07-24T04:50:55.1630799Z [3478/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachPointwiseOp.cu.obj 2025-07-24T04:50:55.6193293Z ForeachPointwiseOp.cu 2025-07-24T04:50:55.6193937Z tmpxft_000011c8_00000000-7_ForeachPointwiseOp.cudafe1.cpp 2025-07-24T04:50:55.6194779Z [3479/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachReduceOp.cu.obj 2025-07-24T04:50:55.9594530Z ForeachReduceOp.cu 2025-07-24T04:50:55.9594896Z tmpxft_000016e0_00000000-7_ForeachReduceOp.cudafe1.cpp 2025-07-24T04:50:55.9595607Z [3480/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachTernaryOp.cu.obj 2025-07-24T04:50:56.2957557Z ForeachTernaryOp.cu 2025-07-24T04:50:56.2958187Z tmpxft_00000ca0_00000000-7_ForeachTernaryOp.cudafe1.cpp 2025-07-24T04:50:56.2959400Z [3481/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachUnaryOp.cu.obj 2025-07-24T04:50:56.6210279Z ForeachUnaryOp.cu 2025-07-24T04:50:56.6210883Z tmpxft_000002ec_00000000-7_ForeachUnaryOp.cudafe1.cpp 2025-07-24T04:50:56.6212212Z [3482/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FractionalMaxPool2d.cu.obj 2025-07-24T04:50:57.9084687Z FractionalMaxPool2d.cu 2025-07-24T04:50:57.9085376Z tmpxft_00000a30_00000000-7_FractionalMaxPool2d.cudafe1.cpp 2025-07-24T04:50:57.9086744Z [3483/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FunctionOfAMatrixUtilsKernel.cu.obj 2025-07-24T04:50:57.9371079Z FunctionOfAMatrixUtilsKernel.cu 2025-07-24T04:50:57.9371904Z tmpxft_00000874_00000000-7_FunctionOfAMatrixUtilsKernel.cudafe1.cpp 2025-07-24T04:50:57.9373281Z [3484/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FractionalMaxPool3d.cu.obj 2025-07-24T04:50:58.1152373Z FractionalMaxPool3d.cu 2025-07-24T04:50:58.1153086Z tmpxft_00001718_00000000-7_FractionalMaxPool3d.cudafe1.cpp 2025-07-24T04:50:58.1154572Z [3485/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedAdamKernel.cu.obj 2025-07-24T04:50:58.6323833Z FusedAdamKernel.cu 2025-07-24T04:50:58.6324490Z tmpxft_00000e9c_00000000-7_FusedAdamKernel.cudafe1.cpp 2025-07-24T04:50:58.6325642Z [3486/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedAdamWKernel.cu.obj 2025-07-24T04:50:58.9742150Z FusedAdamWKernel.cu 2025-07-24T04:50:58.9742762Z tmpxft_00000f70_00000000-7_FusedAdamWKernel.cudafe1.cpp 2025-07-24T04:50:58.9743956Z [3487/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GcdLcmKernel.cu.obj 2025-07-24T04:50:59.2022802Z GcdLcmKernel.cu 2025-07-24T04:50:59.2023355Z tmpxft_00000a6c_00000000-7_GcdLcmKernel.cudafe1.cpp 2025-07-24T04:50:59.2024573Z [3488/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedSgdKernel.cu.obj 2025-07-24T04:50:59.3491698Z FusedSgdKernel.cu 2025-07-24T04:50:59.3492307Z tmpxft_000003f8_00000000-7_FusedSgdKernel.cudafe1.cpp 2025-07-24T04:50:59.3493522Z [3489/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GridSampler.cu.obj 2025-07-24T04:51:00.7884121Z GridSampler.cu 2025-07-24T04:51:00.7884453Z tmpxft_00000e8c_00000000-7_GridSampler.cudafe1.cpp 2025-07-24T04:51:00.7885084Z [3490/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IGammaKernel.cu.obj 2025-07-24T04:51:01.1027283Z IGammaKernel.cu 2025-07-24T04:51:01.1027915Z tmpxft_000011dc_00000000-7_IGammaKernel.cudafe1.cpp 2025-07-24T04:51:01.1029037Z [3491/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GroupMM.cu.obj 2025-07-24T04:51:01.4661723Z GroupMM.cu 2025-07-24T04:51:01.4662093Z tmpxft_00000fec_00000000-7_GroupMM.cudafe1.cpp 2025-07-24T04:51:01.4662762Z [3492/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernel.cu.obj 2025-07-24T04:51:01.4862304Z IndexKernel.cu 2025-07-24T04:51:01.4862896Z tmpxft_00000df0_00000000-7_IndexKernel.cudafe1.cpp 2025-07-24T04:51:01.4864068Z [3493/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Im2Col.cu.obj 2025-07-24T04:51:01.6149108Z Im2Col.cu 2025-07-24T04:51:01.6149586Z tmpxft_000014e4_00000000-7_Im2Col.cudafe1.cpp 2025-07-24T04:51:01.6151338Z [3494/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernelUtils.cu.obj 2025-07-24T04:51:03.0127722Z IndexKernelUtils.cu 2025-07-24T04:51:03.0128153Z tmpxft_00000928_00000000-7_IndexKernelUtils.cudafe1.cpp 2025-07-24T04:51:03.0129120Z [3495/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Indexing.cu.obj 2025-07-24T04:51:03.5381406Z Indexing.cu 2025-07-24T04:51:03.5381712Z tmpxft_00000e98_00000000-7_Indexing.cudafe1.cpp 2025-07-24T04:51:03.5382304Z [3496/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Lerp.cu.obj 2025-07-24T04:51:04.1242968Z Lerp.cu 2025-07-24T04:51:04.1243419Z tmpxft_000012fc_00000000-7_Lerp.cudafe1.cpp 2025-07-24T04:51:04.1244529Z [3497/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LogAddExpKernel.cu.obj 2025-07-24T04:51:04.5719265Z LogAddExpKernel.cu 2025-07-24T04:51:04.5720129Z tmpxft_000017b0_00000000-7_LogAddExpKernel.cudafe1.cpp 2025-07-24T04:51:04.5721374Z [3498/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LinearAlgebra.cu.obj 2025-07-24T04:51:04.9362198Z LinearAlgebra.cu 2025-07-24T04:51:04.9362772Z tmpxft_00001028_00000000-7_LinearAlgebra.cudafe1.cpp 2025-07-24T04:51:04.9363984Z [3499/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LegacyThrustHelpers.cu.obj 2025-07-24T04:51:05.0692006Z LegacyThrustHelpers.cu 2025-07-24T04:51:05.0692661Z tmpxft_00000f18_00000000-7_LegacyThrustHelpers.cudafe1.cpp 2025-07-24T04:51:05.0694142Z [3500/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Loss.cu.obj 2025-07-24T04:51:05.5233351Z Loss.cu 2025-07-24T04:51:05.5233794Z tmpxft_000013d0_00000000-7_Loss.cudafe1.cpp 2025-07-24T04:51:05.5234989Z [3501/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LogcumsumexpKernel.cu.obj 2025-07-24T04:51:06.2799199Z LogcumsumexpKernel.cu 2025-07-24T04:51:06.2799656Z tmpxft_00001770_00000000-7_LogcumsumexpKernel.cudafe1.cpp 2025-07-24T04:51:06.2801023Z [3502/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MaxMinElementwiseKernel.cu.obj 2025-07-24T04:51:06.4914127Z MaxMinElementwiseKernel.cu 2025-07-24T04:51:06.4914882Z tmpxft_000002dc_00000000-7_MaxMinElementwiseKernel.cudafe1.cpp 2025-07-24T04:51:06.4916037Z [3503/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LossCTC.cu.obj 2025-07-24T04:51:07.6023523Z LossCTC.cu 2025-07-24T04:51:07.6024008Z tmpxft_000016fc_00000000-7_LossCTC.cudafe1.cpp 2025-07-24T04:51:07.6025156Z [3504/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MaxUnpooling.cu.obj 2025-07-24T04:51:08.4743689Z MaxUnpooling.cu 2025-07-24T04:51:08.4744151Z tmpxft_0000092c_00000000-7_MaxUnpooling.cudafe1.cpp 2025-07-24T04:51:08.4744989Z [3505/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultiLabelMarginCriterion.cu.obj 2025-07-24T04:51:08.5505160Z MultiLabelMarginCriterion.cu 2025-07-24T04:51:08.5505896Z tmpxft_000002e8_00000000-7_MultiLabelMarginCriterion.cudafe1.cpp 2025-07-24T04:51:08.5507308Z [3506/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultiMarginLoss.cu.obj 2025-07-24T04:51:09.1999328Z MultiMarginLoss.cu 2025-07-24T04:51:09.1999692Z tmpxft_000006d0_00000000-7_MultiMarginLoss.cudafe1.cpp 2025-07-24T04:51:09.2000613Z [3507/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultinomialKernel.cu.obj 2025-07-24T04:51:09.7232732Z MultinomialKernel.cu 2025-07-24T04:51:09.7233157Z tmpxft_00000344_00000000-7_MultinomialKernel.cudafe1.cpp 2025-07-24T04:51:09.7233803Z [3508/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NLLLoss2d.cu.obj 2025-07-24T04:51:09.9995059Z NLLLoss2d.cu 2025-07-24T04:51:09.9995413Z tmpxft_000013a0_00000000-7_NLLLoss2d.cudafe1.cpp 2025-07-24T04:51:09.9996145Z [3509/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveConvolutionTranspose2d.cu.obj 2025-07-24T04:51:10.9274356Z NaiveConvolutionTranspose2d.cu 2025-07-24T04:51:10.9274839Z tmpxft_0000100c_00000000-7_NaiveConvolutionTranspose2d.cudafe1.cpp 2025-07-24T04:51:10.9275742Z [3510/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveConvolutionTranspose3d.cu.obj 2025-07-24T04:51:11.7413733Z NaiveConvolutionTranspose3d.cu 2025-07-24T04:51:11.7414206Z tmpxft_00000f18_00000000-7_NaiveConvolutionTranspose3d.cudafe1.cpp 2025-07-24T04:51:11.7414989Z [3511/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveDilatedConvolution.cu.obj 2025-07-24T04:51:12.4323430Z NaiveDilatedConvolution.cu 2025-07-24T04:51:12.4324199Z tmpxft_000015e0_00000000-7_NaiveDilatedConvolution.cudafe1.cpp 2025-07-24T04:51:12.4325566Z [3512/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\PointwiseOpsKernel.cu.obj 2025-07-24T04:51:12.7226253Z PointwiseOpsKernel.cu 2025-07-24T04:51:12.7226656Z tmpxft_00000d40_00000000-7_PointwiseOpsKernel.cudafe1.cpp 2025-07-24T04:51:12.7227307Z [3513/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\PowKernel.cu.obj 2025-07-24T04:51:12.8494160Z PowKernel.cu 2025-07-24T04:51:12.8494686Z tmpxft_00001704_00000000-7_PowKernel.cudafe1.cpp 2025-07-24T04:51:12.8495866Z [3514/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Normalization.cu.obj 2025-07-24T04:51:13.0853807Z Normalization.cu 2025-07-24T04:51:13.0854643Z tmpxft_00001280_00000000-7_Normalization.cudafe1.cpp 2025-07-24T04:51:13.0856015Z [3515/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MixedDtypesLinear.cu.obj 2025-07-24T04:51:13.1167561Z MixedDtypesLinear.cu 2025-07-24T04:51:13.1243639Z tmpxft_000016b4_00000000-7_MixedDtypesLinear.cudafe1.cpp 2025-07-24T04:51:13.1244997Z [3516/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Nonzero.cu.obj 2025-07-24T04:51:14.1120268Z Nonzero.cu 2025-07-24T04:51:14.1120602Z tmpxft_0000146c_00000000-7_Nonzero.cudafe1.cpp 2025-07-24T04:51:14.1121351Z [3517/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RNN.cu.obj 2025-07-24T04:51:15.4053528Z RNN.cu 2025-07-24T04:51:15.4053805Z tmpxft_000006c0_00000000-7_RNN.cudafe1.cpp 2025-07-24T04:51:15.4054403Z [3518/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Randperm.cu.obj 2025-07-24T04:51:15.4692701Z Randperm.cu 2025-07-24T04:51:15.4693067Z tmpxft_00000f94_00000000-7_Randperm.cudafe1.cpp 2025-07-24T04:51:15.4693734Z [3519/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Reduce.cu.obj 2025-07-24T04:51:15.5323224Z Reduce.cu 2025-07-24T04:51:15.5323513Z tmpxft_00000e5c_00000000-7_Reduce.cudafe1.cpp 2025-07-24T04:51:15.5324128Z [3520/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RecordStream.cu.obj 2025-07-24T04:51:15.5913813Z RecordStream.cu 2025-07-24T04:51:15.5914362Z tmpxft_00000eb4_00000000-7_RecordStream.cudafe1.cpp 2025-07-24T04:51:15.5915513Z [3521/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RangeFactories.cu.obj 2025-07-24T04:51:15.6503260Z RangeFactories.cu 2025-07-24T04:51:15.6503862Z tmpxft_00001444_00000000-7_RangeFactories.cudafe1.cpp 2025-07-24T04:51:15.6505193Z [3522/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceArgMaxKernel.cu.obj 2025-07-24T04:51:15.6742808Z ReduceArgMaxKernel.cu 2025-07-24T04:51:15.6743410Z tmpxft_00001234_00000000-7_ReduceArgMaxKernel.cudafe1.cpp 2025-07-24T04:51:15.6744863Z [3523/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceAMinMaxKernel.cu.obj 2025-07-24T04:51:16.6939560Z ReduceAMinMaxKernel.cu 2025-07-24T04:51:16.6940203Z tmpxft_00001230_00000000-7_ReduceAMinMaxKernel.cudafe1.cpp 2025-07-24T04:51:16.6941478Z [3524/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceArgMinKernel.cu.obj 2025-07-24T04:51:18.1675008Z ReduceArgMinKernel.cu 2025-07-24T04:51:18.1675434Z tmpxft_000014f0_00000000-7_ReduceArgMinKernel.cudafe1.cpp 2025-07-24T04:51:18.1676146Z [3525/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceLogicKernel.cu.obj 2025-07-24T04:51:18.2587096Z ReduceLogicKernel.cu 2025-07-24T04:51:18.2587571Z tmpxft_000008dc_00000000-7_ReduceLogicKernel.cudafe1.cpp 2025-07-24T04:51:18.2588330Z [3526/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceNormKernel.cu.obj 2025-07-24T04:51:18.2662668Z ReduceNormKernel.cu 2025-07-24T04:51:18.2663104Z tmpxft_00000f44_00000000-7_ReduceNormKernel.cudafe1.cpp 2025-07-24T04:51:18.2663786Z [3527/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMinValuesKernel.cu.obj 2025-07-24T04:51:18.2990390Z ReduceMinValuesKernel.cu 2025-07-24T04:51:18.2991137Z tmpxft_00000438_00000000-7_ReduceMinValuesKernel.cudafe1.cpp 2025-07-24T04:51:18.2992478Z [3528/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMaxValuesKernel.cu.obj 2025-07-24T04:51:18.3262361Z ReduceMaxValuesKernel.cu 2025-07-24T04:51:18.3263067Z tmpxft_00000728_00000000-7_ReduceMaxValuesKernel.cudafe1.cpp 2025-07-24T04:51:18.3264412Z [3529/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMomentKernel.cu.obj 2025-07-24T04:51:18.4024666Z ReduceMomentKernel.cu 2025-07-24T04:51:18.4025776Z tmpxft_00001428_00000000-7_ReduceMomentKernel.cudafe1.cpp 2025-07-24T04:51:18.4027120Z [3530/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceSumProdKernel.cu.obj 2025-07-24T04:51:20.2059807Z ReduceSumProdKernel.cu 2025-07-24T04:51:20.2060200Z tmpxft_00001354_00000000-7_ReduceSumProdKernel.cudafe1.cpp 2025-07-24T04:51:20.2060859Z [3531/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReflectionPad.cu.obj 2025-07-24T04:51:20.7912858Z ReflectionPad.cu 2025-07-24T04:51:20.7913481Z tmpxft_00000dd0_00000000-7_ReflectionPad.cudafe1.cpp 2025-07-24T04:51:20.7914789Z [3532/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RenormKernel.cu.obj 2025-07-24T04:51:21.6691478Z RenormKernel.cu 2025-07-24T04:51:21.6691859Z tmpxft_000005a8_00000000-7_RenormKernel.cudafe1.cpp 2025-07-24T04:51:21.6692574Z [3533/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScaledGroupMM.cu.obj 2025-07-24T04:51:21.7842564Z ScaledGroupMM.cu 2025-07-24T04:51:21.7842946Z tmpxft_000013b4_00000000-7_ScaledGroupMM.cudafe1.cpp 2025-07-24T04:51:21.7843718Z [3534/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReplicationPadding.cu.obj 2025-07-24T04:51:21.7879071Z ReplicationPadding.cu 2025-07-24T04:51:21.7879766Z tmpxft_00001794_00000000-7_ReplicationPadding.cudafe1.cpp 2025-07-24T04:51:21.7880945Z [3535/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Repeat.cu.obj 2025-07-24T04:51:21.9829083Z Repeat.cu 2025-07-24T04:51:21.9829536Z tmpxft_00000ca0_00000000-7_Repeat.cudafe1.cpp 2025-07-24T04:51:21.9831499Z [3536/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RreluWithNoise.cu.obj 2025-07-24T04:51:23.1970593Z RreluWithNoise.cu 2025-07-24T04:51:23.1971223Z tmpxft_000012dc_00000000-7_RreluWithNoise.cudafe1.cpp 2025-07-24T04:51:23.1972259Z [3537/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RowwiseScaledMM.cu.obj 2025-07-24T04:51:23.5769904Z RowwiseScaledMM.cu 2025-07-24T04:51:23.5770597Z tmpxft_0000120c_00000000-7_RowwiseScaledMM.compute_89.cudafe1.cpp 2025-07-24T04:51:23.5771883Z [3538/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScatterGatherKernel.cu.obj 2025-07-24T04:51:25.2895263Z ScatterGatherKernel.cu 2025-07-24T04:51:25.2895680Z tmpxft_000006c0_00000000-7_ScatterGatherKernel.cudafe1.cpp 2025-07-24T04:51:25.2896334Z [3539/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Shape.cu.obj 2025-07-24T04:51:25.3032163Z Shape.cu 2025-07-24T04:51:25.3032449Z tmpxft_00001784_00000000-7_Shape.cudafe1.cpp 2025-07-24T04:51:25.3033073Z [3540/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SoftMax.cu.obj 2025-07-24T04:51:25.4314902Z SoftMax.cu 2025-07-24T04:51:25.4315392Z tmpxft_0000159c_00000000-7_SoftMax.cudafe1.cpp 2025-07-24T04:51:25.4316524Z [3541/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SegmentReduce.cu.obj 2025-07-24T04:51:25.7605568Z SegmentReduce.cu 2025-07-24T04:51:25.7606042Z tmpxft_0000179c_00000000-7_SegmentReduce.cudafe1.cpp 2025-07-24T04:51:25.7607034Z [3542/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sort.cu.obj 2025-07-24T04:51:26.0267897Z Sort.cu 2025-07-24T04:51:26.0268346Z tmpxft_00000e34_00000000-7_Sort.cudafe1.cpp 2025-07-24T04:51:26.0269670Z [3543/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sorting.cu.obj 2025-07-24T04:51:26.4791552Z Sorting.cu 2025-07-24T04:51:26.4792022Z tmpxft_00000eb4_00000000-7_Sorting.cudafe1.cpp 2025-07-24T04:51:26.4793978Z [3544/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SortImpl.cu.obj 2025-07-24T04:51:27.3857683Z SortImpl.cu 2025-07-24T04:51:27.3858208Z tmpxft_00001440_00000000-7_SortImpl.cudafe1.cpp 2025-07-24T04:51:27.3859355Z [3545/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SortStable.cu.obj 2025-07-24T04:51:28.2150975Z SortStable.cu 2025-07-24T04:51:28.2151515Z tmpxft_00000cf4_00000000-7_SortStable.cudafe1.cpp 2025-07-24T04:51:28.2152666Z [3546/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SparseMM.cu.obj 2025-07-24T04:51:28.2176199Z SparseMM.cu 2025-07-24T04:51:28.2176660Z tmpxft_00000700_00000000-7_SparseMM.cudafe1.cpp 2025-07-24T04:51:28.2177816Z [3547/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SpectralOps.cu.obj 2025-07-24T04:51:28.4698238Z SpectralOps.cu 2025-07-24T04:51:28.4698581Z tmpxft_000002dc_00000000-7_SpectralOps.cudafe1.cpp 2025-07-24T04:51:28.4699227Z [3548/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\StepKernel.cu.obj 2025-07-24T04:51:28.8888858Z StepKernel.cu 2025-07-24T04:51:28.8889582Z tmpxft_00000df4_00000000-7_StepKernel.cudafe1.cpp 2025-07-24T04:51:28.8890921Z [3549/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SparseBinaryOpIntersectionKernel.cu.obj 2025-07-24T04:51:29.2458931Z SparseBinaryOpIntersectionKernel.cu 2025-07-24T04:51:29.2460529Z tmpxft_00001158_00000000-7_SparseBinaryOpIntersectionKernel.cudafe1.cpp 2025-07-24T04:51:29.2461287Z [3550/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorCompare.cu.obj 2025-07-24T04:51:29.4434132Z TensorCompare.cu 2025-07-24T04:51:29.4435547Z tmpxft_000013a0_00000000-7_TensorCompare.cudafe1.cpp 2025-07-24T04:51:29.4436908Z [3551/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SummaryOps.cu.obj 2025-07-24T04:51:31.5729340Z SummaryOps.cu 2025-07-24T04:51:31.5729691Z tmpxft_00000e2c_00000000-7_SummaryOps.cudafe1.cpp 2025-07-24T04:51:31.5730309Z [3552/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorShape.cu.obj 2025-07-24T04:51:31.6832098Z TensorShape.cu 2025-07-24T04:51:31.6832620Z tmpxft_000010ec_00000000-7_TensorShape.cudafe1.cpp 2025-07-24T04:51:31.6833861Z [3553/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTransformations.cu.obj 2025-07-24T04:51:31.7079112Z TensorTransformations.cu 2025-07-24T04:51:31.7079678Z tmpxft_00000874_00000000-7_TensorTransformations.cudafe1.cpp 2025-07-24T04:51:31.7080622Z [3554/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorModeKernel.cu.obj 2025-07-24T04:51:31.7962753Z TensorModeKernel.cu 2025-07-24T04:51:31.7963338Z tmpxft_000005d8_00000000-7_TensorModeKernel.cudafe1.cpp 2025-07-24T04:51:31.7964169Z [3555/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryComplexKernels.cu.obj 2025-07-24T04:51:32.0819048Z UnaryComplexKernels.cu 2025-07-24T04:51:32.0819508Z tmpxft_0000092c_00000000-7_UnaryComplexKernels.cudafe1.cpp 2025-07-24T04:51:32.0820714Z [3556/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryFractionKernels.cu.obj 2025-07-24T04:51:32.2468068Z UnaryFractionKernels.cu 2025-07-24T04:51:32.2469259Z tmpxft_00000db8_00000000-7_UnaryFractionKernels.cudafe1.cpp 2025-07-24T04:51:32.2469918Z [3557/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTopK.cu.obj 2025-07-24T04:51:32.3219015Z TensorTopK.cu 2025-07-24T04:51:32.3221920Z tmpxft_0000143c_00000000-7_TensorTopK.cudafe1.cpp 2025-07-24T04:51:32.3223819Z [3558/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TriangularOps.cu.obj 2025-07-24T04:51:34.4066455Z TriangularOps.cu 2025-07-24T04:51:34.4067559Z tmpxft_00000854_00000000-7_TriangularOps.cudafe1.cpp 2025-07-24T04:51:34.4396757Z [3559/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAcosKernel.cu.obj 2025-07-24T04:51:34.4397858Z UnaryGeometricAcosKernel.cu 2025-07-24T04:51:34.4398467Z tmpxft_00001738_00000000-7_UnaryGeometricAcosKernel.cudafe1.cpp 2025-07-24T04:51:34.4399610Z [3560/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGammaKernels.cu.obj 2025-07-24T04:51:34.5461335Z UnaryGammaKernels.cu 2025-07-24T04:51:34.5461968Z tmpxft_0000160c_00000000-7_UnaryGammaKernels.cudafe1.cpp 2025-07-24T04:51:34.5463230Z [3561/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAsinKernel.cu.obj 2025-07-24T04:51:34.6201901Z UnaryGeometricAsinKernel.cu 2025-07-24T04:51:34.6202495Z tmpxft_0000109c_00000000-7_UnaryGeometricAsinKernel.cudafe1.cpp 2025-07-24T04:51:34.6203367Z [3562/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAcoshKernel.cu.obj 2025-07-24T04:51:34.6938974Z UnaryGeometricAcoshKernel.cu 2025-07-24T04:51:34.6939767Z tmpxft_00001428_00000000-7_UnaryGeometricAcoshKernel.cudafe1.cpp 2025-07-24T04:51:34.6941188Z [3563/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAsinhKernel.cu.obj 2025-07-24T04:51:34.8141745Z UnaryGeometricAsinhKernel.cu 2025-07-24T04:51:34.8142548Z tmpxft_00001678_00000000-7_UnaryGeometricAsinhKernel.cudafe1.cpp 2025-07-24T04:51:34.8143967Z [3564/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAtanKernel.cu.obj 2025-07-24T04:51:35.0071886Z UnaryGeometricAtanKernel.cu 2025-07-24T04:51:35.0077837Z tmpxft_00000560_00000000-7_UnaryGeometricAtanKernel.cudafe1.cpp 2025-07-24T04:51:35.0081437Z [3565/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAtanhKernel.cu.obj 2025-07-24T04:51:37.2006643Z UnaryGeometricAtanhKernel.cu 2025-07-24T04:51:37.2007151Z tmpxft_0000073c_00000000-7_UnaryGeometricAtanhKernel.cudafe1.cpp 2025-07-24T04:51:37.2008010Z [3566/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricCosKernel.cu.obj 2025-07-24T04:51:37.2179866Z UnaryGeometricCosKernel.cu 2025-07-24T04:51:37.2180296Z tmpxft_00000928_00000000-7_UnaryGeometricCosKernel.cudafe1.cpp 2025-07-24T04:51:37.2181019Z [3567/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricCoshKernel.cu.obj 2025-07-24T04:51:37.4630692Z UnaryGeometricCoshKernel.cu 2025-07-24T04:51:37.4631376Z tmpxft_0000065c_00000000-7_UnaryGeometricCoshKernel.cudafe1.cpp 2025-07-24T04:51:37.4632573Z [3568/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricSinKernel.cu.obj 2025-07-24T04:51:37.4731445Z UnaryGeometricSinKernel.cu 2025-07-24T04:51:37.4731918Z tmpxft_00000404_00000000-7_UnaryGeometricSinKernel.cudafe1.cpp 2025-07-24T04:51:37.4732662Z [3569/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricSinhKernel.cu.obj 2025-07-24T04:51:37.4760490Z UnaryGeometricSinhKernel.cu 2025-07-24T04:51:37.4761231Z tmpxft_00001154_00000000-7_UnaryGeometricSinhKernel.cudafe1.cpp 2025-07-24T04:51:37.4762606Z [3570/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricTanKernel.cu.obj 2025-07-24T04:51:37.5564933Z UnaryGeometricTanKernel.cu 2025-07-24T04:51:37.5565898Z tmpxft_00000574_00000000-7_UnaryGeometricTanKernel.cudafe1.cpp 2025-07-24T04:51:37.5571161Z [3571/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricTanhKernel.cu.obj 2025-07-24T04:51:37.8039487Z UnaryGeometricTanhKernel.cu 2025-07-24T04:51:37.8040258Z tmpxft_00000b24_00000000-7_UnaryGeometricTanhKernel.cudafe1.cpp 2025-07-24T04:51:37.8041915Z [3572/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryLogKernels.cu.obj 2025-07-24T04:51:40.2588318Z UnaryLogKernels.cu 2025-07-24T04:51:40.2588695Z tmpxft_00000f44_00000000-7_UnaryLogKernels.cudafe1.cpp 2025-07-24T04:51:40.2589378Z [3573/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnarySignKernels.cu.obj 2025-07-24T04:51:40.3378921Z UnarySignKernels.cu 2025-07-24T04:51:40.3379286Z tmpxft_00001728_00000000-7_UnarySignKernels.cudafe1.cpp 2025-07-24T04:51:40.3380035Z [3574/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryOpsKernel.cu.obj 2025-07-24T04:51:40.3450387Z UnaryOpsKernel.cu 2025-07-24T04:51:40.3450768Z tmpxft_00001748_00000000-7_UnaryOpsKernel.cudafe1.cpp 2025-07-24T04:51:40.3451562Z [3575/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnarySpecialOpsKernel.cu.obj 2025-07-24T04:51:40.9196296Z UnarySpecialOpsKernel.cu 2025-07-24T04:51:40.9197088Z tmpxft_00000d3c_00000000-7_UnarySpecialOpsKernel.cudafe1.cpp 2025-07-24T04:51:40.9198381Z [3576/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleBicubic2d.cu.obj 2025-07-24T04:51:40.9636762Z UpSampleBicubic2d.cu 2025-07-24T04:51:40.9637380Z tmpxft_00000628_00000000-7_UpSampleBicubic2d.cudafe1.cpp 2025-07-24T04:51:40.9638723Z [3577/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnfoldBackwardKernel.cu.obj 2025-07-24T04:51:41.3110645Z UnfoldBackwardKernel.cu 2025-07-24T04:51:41.3111351Z tmpxft_00001670_00000000-7_UnfoldBackwardKernel.cudafe1.cpp 2025-07-24T04:51:41.3112617Z [3578/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleBilinear2d.cu.obj 2025-07-24T04:51:42.3458759Z UpSampleBilinear2d.cu 2025-07-24T04:51:42.3459432Z tmpxft_00000438_00000000-7_UpSampleBilinear2d.cudafe1.cpp 2025-07-24T04:51:42.3460762Z [3579/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UniqueCub.cu.obj 2025-07-24T04:51:43.5448569Z UniqueCub.cu 2025-07-24T04:51:43.5448879Z tmpxft_00001500_00000000-7_UniqueCub.cudafe1.cpp 2025-07-24T04:51:43.5449519Z [3580/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleLinear1d.cu.obj 2025-07-24T04:51:43.6038874Z UpSampleLinear1d.cu 2025-07-24T04:51:43.6039432Z tmpxft_00001574_00000000-7_UpSampleLinear1d.cudafe1.cpp 2025-07-24T04:51:43.6040579Z [3581/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest1d.cu.obj 2025-07-24T04:51:43.8145259Z UpSampleNearest1d.cu 2025-07-24T04:51:43.8145909Z tmpxft_000014f8_00000000-7_UpSampleNearest1d.cudafe1.cpp 2025-07-24T04:51:43.8147140Z [3582/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest2d.cu.obj 2025-07-24T04:51:44.3285399Z UpSampleNearest2d.cu 2025-07-24T04:51:44.3285874Z tmpxft_000015f8_00000000-7_UpSampleNearest2d.cudafe1.cpp 2025-07-24T04:51:44.3286653Z [3583/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleTrilinear3d.cu.obj 2025-07-24T04:51:44.4970234Z UpSampleTrilinear3d.cu 2025-07-24T04:51:44.4970800Z tmpxft_0000167c_00000000-7_UpSampleTrilinear3d.cudafe1.cpp 2025-07-24T04:51:44.4971799Z [3584/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest3d.cu.obj 2025-07-24T04:51:44.7411981Z UpSampleNearest3d.cu 2025-07-24T04:51:44.7412626Z tmpxft_00000574_00000000-7_UpSampleNearest3d.cudafe1.cpp 2025-07-24T04:51:44.7414550Z [3585/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ValidateCompressedIndicesKernel.cu.obj 2025-07-24T04:51:45.6425038Z ValidateCompressedIndicesKernel.cu 2025-07-24T04:51:45.6425909Z tmpxft_000017f8_00000000-7_ValidateCompressedIndicesKernel.cudafe1.cpp 2025-07-24T04:51:45.6427423Z [3586/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\WeightNorm.cu.obj 2025-07-24T04:51:46.2822721Z WeightNorm.cu 2025-07-24T04:51:46.2823045Z tmpxft_00000f10_00000000-7_WeightNorm.cudafe1.cpp 2025-07-24T04:51:46.2823882Z [3587/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\airy_ai.cu.obj 2025-07-24T04:51:46.3059268Z airy_ai.cu 2025-07-24T04:51:46.3059676Z tmpxft_00001674_00000000-7_airy_ai.cudafe1.cpp 2025-07-24T04:51:46.3060692Z [3588/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ZetaKernel.cu.obj 2025-07-24T04:51:46.6092724Z ZetaKernel.cu 2025-07-24T04:51:46.6093376Z tmpxft_000015fc_00000000-7_ZetaKernel.cudafe1.cpp 2025-07-24T04:51:46.6094484Z [3589/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_j0.cu.obj 2025-07-24T04:51:47.1395491Z bessel_j0.cu 2025-07-24T04:51:47.1395992Z tmpxft_0000092c_00000000-7_bessel_j0.cudafe1.cpp 2025-07-24T04:51:47.1397092Z [3590/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_j1.cu.obj 2025-07-24T04:51:47.2405229Z bessel_j1.cu 2025-07-24T04:51:47.2405522Z tmpxft_000006cc_00000000-7_bessel_j1.cudafe1.cpp 2025-07-24T04:51:47.2406137Z [3591/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_y0.cu.obj 2025-07-24T04:51:47.4495958Z bessel_y0.cu 2025-07-24T04:51:47.4496595Z tmpxft_00000694_00000000-7_bessel_y0.cudafe1.cpp 2025-07-24T04:51:47.4497633Z [3592/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_y1.cu.obj 2025-07-24T04:51:48.4630524Z bessel_y1.cu 2025-07-24T04:51:48.4631023Z tmpxft_00001720_00000000-7_bessel_y1.cudafe1.cpp 2025-07-24T04:51:48.4632247Z [3593/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_t.cu.obj 2025-07-24T04:51:49.0586015Z chebyshev_polynomial_t.cu 2025-07-24T04:51:49.0586443Z tmpxft_0000143c_00000000-7_chebyshev_polynomial_t.cudafe1.cpp 2025-07-24T04:51:49.0587168Z [3594/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_v.cu.obj 2025-07-24T04:51:49.2019682Z chebyshev_polynomial_v.cu 2025-07-24T04:51:49.2020083Z tmpxft_00000cf4_00000000-7_chebyshev_polynomial_v.cudafe1.cpp 2025-07-24T04:51:49.2020920Z [3595/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_u.cu.obj 2025-07-24T04:51:49.3973231Z chebyshev_polynomial_u.cu 2025-07-24T04:51:49.3973659Z tmpxft_00001320_00000000-7_chebyshev_polynomial_u.cudafe1.cpp 2025-07-24T04:51:49.3974400Z [3596/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_w.cu.obj 2025-07-24T04:51:50.5354018Z chebyshev_polynomial_w.cu 2025-07-24T04:51:50.5354428Z tmpxft_000014c0_00000000-7_chebyshev_polynomial_w.cudafe1.cpp 2025-07-24T04:51:50.5355212Z [3597/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adam_amsgrad_impl.cu.obj 2025-07-24T04:51:50.7647775Z fused_adam_amsgrad_impl.cu 2025-07-24T04:51:50.7648185Z tmpxft_00001738_00000000-7_fused_adam_amsgrad_impl.cudafe1.cpp 2025-07-24T04:51:50.7648864Z [3598/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adam_impl.cu.obj 2025-07-24T04:51:50.9086902Z fused_adam_impl.cu 2025-07-24T04:51:50.9087246Z tmpxft_00001004_00000000-7_fused_adam_impl.cudafe1.cpp 2025-07-24T04:51:50.9087910Z [3599/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adamw_amsgrad_impl.cu.obj 2025-07-24T04:51:51.8292795Z fused_adamw_amsgrad_impl.cu 2025-07-24T04:51:51.8293738Z tmpxft_000006fc_00000000-7_fused_adamw_amsgrad_impl.cudafe1.cpp 2025-07-24T04:51:51.8295015Z [3600/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adamw_impl.cu.obj 2025-07-24T04:51:51.9670319Z fused_adamw_impl.cu 2025-07-24T04:51:51.9671192Z tmpxft_0000164c_00000000-7_fused_adamw_impl.cudafe1.cpp 2025-07-24T04:51:51.9672504Z [3601/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\hermite_polynomial_h.cu.obj 2025-07-24T04:51:52.3109434Z hermite_polynomial_h.cu 2025-07-24T04:51:52.3110124Z tmpxft_000006e0_00000000-7_hermite_polynomial_h.cudafe1.cpp 2025-07-24T04:51:52.3111466Z [3602/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\hermite_polynomial_he.cu.obj 2025-07-24T04:51:52.6455953Z hermite_polynomial_he.cu 2025-07-24T04:51:52.6456528Z tmpxft_00000bb4_00000000-7_hermite_polynomial_he.cudafe1.cpp 2025-07-24T04:51:52.6457581Z [3603/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\group_norm_kernel.cu.obj 2025-07-24T04:51:53.5653474Z group_norm_kernel.cu 2025-07-24T04:51:53.5653849Z tmpxft_0000017c_00000000-7_group_norm_kernel.cudafe1.cpp 2025-07-24T04:51:53.5654549Z [3604/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\laguerre_polynomial_l.cu.obj 2025-07-24T04:51:54.5046050Z laguerre_polynomial_l.cu 2025-07-24T04:51:54.5046511Z tmpxft_000002ec_00000000-7_laguerre_polynomial_l.cudafe1.cpp 2025-07-24T04:51:54.5047200Z [3605/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\layer_norm_kernel.cu.obj 2025-07-24T04:51:54.6184236Z layer_norm_kernel.cu 2025-07-24T04:51:54.6185203Z tmpxft_00001238_00000000-7_layer_norm_kernel.cudafe1.cpp 2025-07-24T04:51:54.6186421Z [3606/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\legendre_polynomial_p.cu.obj 2025-07-24T04:51:54.8760019Z legendre_polynomial_p.cu 2025-07-24T04:51:54.8760744Z tmpxft_0000166c_00000000-7_legendre_polynomial_p.cudafe1.cpp 2025-07-24T04:51:54.8762544Z [3607/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_i0.cu.obj 2025-07-24T04:51:55.0839126Z modified_bessel_i0.cu 2025-07-24T04:51:55.0839872Z tmpxft_00000564_00000000-7_modified_bessel_i0.cudafe1.cpp 2025-07-24T04:51:55.0841109Z [3608/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_i1.cu.obj 2025-07-24T04:51:55.4152939Z modified_bessel_i1.cu 2025-07-24T04:51:55.4153565Z tmpxft_00000e00_00000000-7_modified_bessel_i1.cudafe1.cpp 2025-07-24T04:51:55.4154807Z [3609/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_k0.cu.obj 2025-07-24T04:51:56.3579872Z modified_bessel_k0.cu 2025-07-24T04:51:56.3580249Z tmpxft_000015d0_00000000-7_modified_bessel_k0.cudafe1.cpp 2025-07-24T04:51:56.3581090Z [3610/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_k1.cu.obj 2025-07-24T04:51:57.2365574Z modified_bessel_k1.cu 2025-07-24T04:51:57.2366017Z tmpxft_0000157c_00000000-7_modified_bessel_k1.cudafe1.cpp 2025-07-24T04:51:57.2366726Z [3611/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\scaled_modified_bessel_k0.cu.obj 2025-07-24T04:51:57.3557574Z scaled_modified_bessel_k0.cu 2025-07-24T04:51:57.3558055Z tmpxft_000013d0_00000000-7_scaled_modified_bessel_k0.cudafe1.cpp 2025-07-24T04:51:57.3559052Z [3612/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\scaled_modified_bessel_k1.cu.obj 2025-07-24T04:51:57.4835588Z scaled_modified_bessel_k1.cu 2025-07-24T04:51:57.4836315Z tmpxft_00000494_00000000-7_scaled_modified_bessel_k1.cudafe1.cpp 2025-07-24T04:51:57.4837640Z [3613/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_t.cu.obj 2025-07-24T04:51:57.7386823Z shifted_chebyshev_polynomial_t.cu 2025-07-24T04:51:57.7387843Z tmpxft_000004a8_00000000-7_shifted_chebyshev_polynomial_t.cudafe1.cpp 2025-07-24T04:51:57.7389239Z [3614/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_u.cu.obj 2025-07-24T04:51:58.0456290Z shifted_chebyshev_polynomial_u.cu 2025-07-24T04:51:58.0456760Z tmpxft_000013b8_00000000-7_shifted_chebyshev_polynomial_u.cudafe1.cpp 2025-07-24T04:51:58.0457884Z [3615/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_v.cu.obj 2025-07-24T04:51:58.9721427Z shifted_chebyshev_polynomial_v.cu 2025-07-24T04:51:58.9722327Z tmpxft_00001784_00000000-7_shifted_chebyshev_polynomial_v.cudafe1.cpp 2025-07-24T04:51:58.9723888Z [3616/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_w.cu.obj 2025-07-24T04:51:59.1691279Z shifted_chebyshev_polynomial_w.cu 2025-07-24T04:51:59.1692111Z tmpxft_00001720_00000000-7_shifted_chebyshev_polynomial_w.cudafe1.cpp 2025-07-24T04:51:59.1693345Z [3617/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\int4mm.cu.obj 2025-07-24T04:52:00.2456418Z int4mm.cu 2025-07-24T04:52:00.2456908Z tmpxft_000004c4_00000000-7_int4mm.cudafe1.cpp 2025-07-24T04:52:00.2458122Z [3618/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\spherical_bessel_j0.cu.obj 2025-07-24T04:52:03.5421542Z spherical_bessel_j0.cu 2025-07-24T04:52:03.5422135Z tmpxft_00001474_00000000-7_spherical_bessel_j0.cudafe1.cpp 2025-07-24T04:52:03.5422900Z [3619/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SoftMax.cu.obj 2025-07-24T04:52:04.1735762Z SoftMax.cu 2025-07-24T04:52:04.1736294Z tmpxft_00000320_00000000-7_SoftMax.cudafe1.cpp 2025-07-24T04:52:04.1737335Z [3620/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDATensor.cu.obj 2025-07-24T04:52:04.3478550Z SparseCUDATensor.cu 2025-07-24T04:52:04.3478982Z tmpxft_0000087c_00000000-7_SparseCUDATensor.cudafe1.cpp 2025-07-24T04:52:04.3479781Z [3621/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDATensorMath.cu.obj 2025-07-24T04:52:05.1292193Z SparseCUDATensorMath.cu 2025-07-24T04:52:05.1292965Z tmpxft_00000a7c_00000000-7_SparseCUDATensorMath.cudafe1.cpp 2025-07-24T04:52:05.1294290Z [3622/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCsrTensorMath.cu.obj 2025-07-24T04:52:06.0069503Z SparseCsrTensorMath.cu 2025-07-24T04:52:06.0070194Z tmpxft_000010dc_00000000-7_SparseCsrTensorMath.cudafe1.cpp 2025-07-24T04:52:06.0071310Z [3623/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorBinaryOps.cu.obj 2025-07-24T04:52:06.0445992Z NestedTensorBinaryOps.cu 2025-07-24T04:52:06.0446440Z tmpxft_000015d0_00000000-7_NestedTensorBinaryOps.cudafe1.cpp 2025-07-24T04:52:06.0447171Z [3624/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorMatmul.cu.obj 2025-07-24T04:52:06.5312451Z NestedTensorMatmul.cu 2025-07-24T04:52:06.5313073Z tmpxft_00001428_00000000-7_NestedTensorMatmul.cudafe1.cpp 2025-07-24T04:52:06.5315193Z [3625/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerFunctions.cu.obj 2025-07-24T04:52:08.6570569Z NestedTensorTransformerFunctions.cu 2025-07-24T04:52:08.6571411Z tmpxft_00000bc4_00000000-7_NestedTensorTransformerFunctions.cudafe1.cpp 2025-07-24T04:52:08.6572193Z [3626/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseMatMul.cu.obj 2025-07-24T04:52:11.9156890Z SparseMatMul.cu 2025-07-24T04:52:11.9157439Z tmpxft_000012e8_00000000-7_SparseMatMul.cudafe1.cpp 2025-07-24T04:52:11.9159046Z [3627/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\AffineQuantizer.cu.obj 2025-07-24T04:52:12.0619764Z AffineQuantizer.cu 2025-07-24T04:52:12.0620133Z tmpxft_0000167c_00000000-7_AffineQuantizer.cudafe1.cpp 2025-07-24T04:52:12.0621084Z [3628/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiSturcturedApply.cu.obj 2025-07-24T04:52:12.4826348Z SparseSemiSturcturedApply.cu 2025-07-24T04:52:12.4827031Z tmpxft_00000574_00000000-7_SparseSemiSturcturedApply.cudafe1.cpp 2025-07-24T04:52:12.4827843Z [3629/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredApplyDense.cu.obj 2025-07-24T04:52:12.4828543Z SparseSemiStructuredApplyDense.cu 2025-07-24T04:52:12.4828948Z tmpxft_0000064c_00000000-7_SparseSemiStructuredApplyDense.cudafe1.cpp 2025-07-24T04:52:12.4830016Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-07-24T04:52:12.4831483Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-07-24T04:52:12.4833001Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-07-24T04:52:12.4833905Z with 2025-07-24T04:52:12.4834072Z [ 2025-07-24T04:52:12.4834241Z I=size_t, 2025-07-24T04:52:12.4834482Z _Ty2=size_t 2025-07-24T04:52:12.4834687Z ] 2025-07-24T04:52:12.7765616Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-07-24T04:52:12.7769611Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-07-24T04:52:12.7772145Z with 2025-07-24T04:52:12.7772481Z [ 2025-07-24T04:52:12.7772791Z _Ty=int 2025-07-24T04:52:12.7773146Z ] 2025-07-24T04:52:12.7775425Z tmpxft_0000064c_00000000-7_SparseSemiStructuredApplyDense.cudafe1.stub.c(2): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-07-24T04:52:12.7777880Z with 2025-07-24T04:52:12.7778195Z [ 2025-07-24T04:52:12.7778512Z _Ty=int 2025-07-24T04:52:12.7778860Z ] 2025-07-24T04:52:12.7779930Z [3630/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredLinear.cu.obj 2025-07-24T04:52:13.6235444Z SparseSemiStructuredLinear.cu 2025-07-24T04:52:13.6236254Z tmpxft_000015d8_00000000-7_SparseSemiStructuredLinear.cudafe1.cpp 2025-07-24T04:52:13.6237658Z [3631/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredOps.cu.obj 2025-07-24T04:52:14.5042461Z SparseSemiStructuredOps.cu 2025-07-24T04:52:14.5043248Z tmpxft_000006c8_00000000-7_SparseSemiStructuredOps.cudafe1.cpp 2025-07-24T04:52:14.5044668Z [3632/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredTile.cu.obj 2025-07-24T04:52:14.5045905Z SparseSemiStructuredTile.cu 2025-07-24T04:52:14.5046564Z tmpxft_00001424_00000000-7_SparseSemiStructuredTile.cudafe1.cpp 2025-07-24T04:52:14.5048301Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-07-24T04:52:14.5052573Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-07-24T04:52:14.5055266Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-07-24T04:52:14.5056857Z with 2025-07-24T04:52:14.5057147Z [ 2025-07-24T04:52:14.5057464Z I=size_t, 2025-07-24T04:52:14.5057838Z _Ty2=size_t 2025-07-24T04:52:14.5058199Z ] 2025-07-24T04:52:14.5059651Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-07-24T04:52:14.5063021Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-07-24T04:52:14.5065483Z with 2025-07-24T04:52:14.5065813Z [ 2025-07-24T04:52:14.5066170Z _Ty=int 2025-07-24T04:52:14.5066516Z ] 2025-07-24T04:52:14.6248862Z tmpxft_00001424_00000000-7_SparseSemiStructuredTile.cudafe1.stub.c(2): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-07-24T04:52:14.6251231Z with 2025-07-24T04:52:14.6251567Z [ 2025-07-24T04:52:14.6251916Z _Ty=int 2025-07-24T04:52:14.6252264Z ] 2025-07-24T04:52:14.6253217Z [3633/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\Activation.cu.obj 2025-07-24T04:52:15.3419583Z Activation.cu 2025-07-24T04:52:15.3419901Z tmpxft_000013f8_00000000-7_Activation.cudafe1.cpp 2025-07-24T04:52:15.3420681Z [3634/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\FakeQuantizeCore.cu.obj 2025-07-24T04:52:15.4344776Z FakeQuantizeCore.cu 2025-07-24T04:52:15.4345388Z tmpxft_00001718_00000000-7_FakeQuantizeCore.cudafe1.cpp 2025-07-24T04:52:15.4346494Z [3635/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\EmbeddingBag.cu.obj 2025-07-24T04:52:15.4347519Z EmbeddingBag.cu 2025-07-24T04:52:15.4347955Z tmpxft_00001474_00000000-7_EmbeddingBag.cudafe1.cpp 2025-07-24T04:52:15.4349838Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-07-24T04:52:15.4352385Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-07-24T04:52:15.4355168Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-07-24T04:52:15.4356871Z with 2025-07-24T04:52:15.4357180Z [ 2025-07-24T04:52:15.4357507Z I=size_t, 2025-07-24T04:52:15.4357868Z _Ty2=size_t 2025-07-24T04:52:15.4358251Z ] 2025-07-24T04:52:15.4359673Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-07-24T04:52:15.4363201Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-07-24T04:52:15.4365863Z with 2025-07-24T04:52:15.4366334Z [ 2025-07-24T04:52:15.4366632Z _Ty=int 2025-07-24T04:52:15.4366949Z ] 2025-07-24T04:52:15.9801954Z tmpxft_00001474_00000000-7_EmbeddingBag.cudafe1.stub.c(2): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-07-24T04:52:15.9803247Z with 2025-07-24T04:52:15.9803425Z [ 2025-07-24T04:52:15.9803606Z _Ty=int 2025-07-24T04:52:15.9803797Z ] 2025-07-24T04:52:15.9804302Z [3636/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\IntReprQuant.cu.obj 2025-07-24T04:52:16.1673490Z IntReprQuant.cu 2025-07-24T04:52:16.1673819Z tmpxft_000002b0_00000000-7_IntReprQuant.cudafe1.cpp 2025-07-24T04:52:16.1674532Z [3637/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\FusedObsFakeQuant.cu.obj 2025-07-24T04:52:16.7961909Z FusedObsFakeQuant.cu 2025-07-24T04:52:16.7962304Z tmpxft_00000368_00000000-7_FusedObsFakeQuant.cudafe1.cpp 2025-07-24T04:52:16.7963084Z [3638/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\MakePerTensorQuantizedTensor.cu.obj 2025-07-24T04:52:20.7366927Z MakePerTensorQuantizedTensor.cu 2025-07-24T04:52:20.7367425Z tmpxft_00000bdc_00000000-7_MakePerTensorQuantizedTensor.cudafe1.cpp 2025-07-24T04:52:20.7368359Z [3639/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k128_dropout.cu.obj 2025-07-24T04:52:20.8268830Z cutlassB_bf16_aligned_k128_dropout.cu 2025-07-24T04:52:20.8269328Z tmpxft_00001760_00000000-7_cutlassB_bf16_aligned_k128_dropout.cudafe1.cpp 2025-07-24T04:52:20.8270252Z [3640/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k128.cu.obj 2025-07-24T04:52:20.9048651Z cutlassB_bf16_aligned_k128.cu 2025-07-24T04:52:20.9049100Z tmpxft_000006fc_00000000-7_cutlassB_bf16_aligned_k128.cudafe1.cpp 2025-07-24T04:52:20.9050108Z [3641/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k32_dropout.cu.obj 2025-07-24T04:52:20.9614711Z cutlassB_bf16_aligned_k32_dropout.cu 2025-07-24T04:52:20.9615590Z tmpxft_000014c8_00000000-7_cutlassB_bf16_aligned_k32_dropout.cudafe1.cpp 2025-07-24T04:52:20.9617200Z [3642/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k64.cu.obj 2025-07-24T04:52:21.0486976Z cutlassB_bf16_aligned_k64.cu 2025-07-24T04:52:21.0489765Z tmpxft_0000140c_00000000-7_cutlassB_bf16_aligned_k64.cudafe1.cpp 2025-07-24T04:52:21.0493712Z [3643/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k32.cu.obj 2025-07-24T04:52:21.6044004Z cutlassB_bf16_aligned_k32.cu 2025-07-24T04:52:21.6044889Z tmpxft_00001460_00000000-7_cutlassB_bf16_aligned_k32.cudafe1.cpp 2025-07-24T04:52:21.6046096Z [3644/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\attention_backward.cu.obj 2025-07-24T04:52:21.7918507Z attention_backward.cu 2025-07-24T04:52:21.7919680Z tmpxft_00000a44_00000000-7_attention_backward.cudafe1.cpp 2025-07-24T04:52:21.7922651Z [3645/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\attention.cu.obj 2025-07-24T04:52:23.8674195Z attention.cu 2025-07-24T04:52:23.8674504Z tmpxft_000017f8_00000000-7_attention.cudafe1.cpp 2025-07-24T04:52:23.8675449Z [3646/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k65536.cu.obj 2025-07-24T04:52:23.9270204Z cutlassB_bf16_aligned_k65536.cu 2025-07-24T04:52:23.9270943Z tmpxft_000005b4_00000000-7_cutlassB_bf16_aligned_k65536.cudafe1.cpp 2025-07-24T04:52:23.9272539Z [3647/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k64_dropout.cu.obj 2025-07-24T04:52:23.9798377Z cutlassB_bf16_aligned_k64_dropout.cu 2025-07-24T04:52:23.9799198Z tmpxft_00000e4c_00000000-7_cutlassB_bf16_aligned_k64_dropout.cudafe1.cpp 2025-07-24T04:52:23.9800987Z [3648/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k65536_dropout.cu.obj 2025-07-24T04:52:24.0565947Z cutlassB_bf16_aligned_k65536_dropout.cu 2025-07-24T04:52:24.0566725Z tmpxft_000002e8_00000000-7_cutlassB_bf16_aligned_k65536_dropout.cudafe1.cpp 2025-07-24T04:52:24.0568273Z [3649/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k96.cu.obj 2025-07-24T04:52:24.1221482Z cutlassB_bf16_aligned_k96.cu 2025-07-24T04:52:24.1222199Z tmpxft_00001648_00000000-7_cutlassB_bf16_aligned_k96.cudafe1.cpp 2025-07-24T04:52:24.1223788Z [3650/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k128.cu.obj 2025-07-24T04:52:24.6620275Z cutlassB_f16_aligned_k128.cu 2025-07-24T04:52:24.6621603Z tmpxft_000015d0_00000000-7_cutlassB_f16_aligned_k128.cudafe1.cpp 2025-07-24T04:52:24.6624062Z [3651/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k128_dropout.cu.obj 2025-07-24T04:52:24.9868270Z cutlassB_f16_aligned_k128_dropout.cu 2025-07-24T04:52:24.9870831Z tmpxft_000011e8_00000000-7_cutlassB_f16_aligned_k128_dropout.cudafe1.cpp 2025-07-24T04:52:24.9872949Z [3652/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k32.cu.obj 2025-07-24T04:52:26.9206955Z cutlassB_f16_aligned_k32.cu 2025-07-24T04:52:26.9207381Z tmpxft_00000868_00000000-7_cutlassB_f16_aligned_k32.cudafe1.cpp 2025-07-24T04:52:26.9208254Z [3653/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k32_dropout.cu.obj 2025-07-24T04:52:27.0656065Z cutlassB_f16_aligned_k32_dropout.cu 2025-07-24T04:52:27.0656532Z tmpxft_000002d8_00000000-7_cutlassB_f16_aligned_k32_dropout.cudafe1.cpp 2025-07-24T04:52:27.0657478Z [3654/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k64_dropout.cu.obj 2025-07-24T04:52:27.0772562Z cutlassB_f16_aligned_k64_dropout.cu 2025-07-24T04:52:27.0773365Z tmpxft_00000880_00000000-7_cutlassB_f16_aligned_k64_dropout.cudafe1.cpp 2025-07-24T04:52:27.0774947Z [3655/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k64.cu.obj 2025-07-24T04:52:27.1422521Z cutlassB_f16_aligned_k64.cu 2025-07-24T04:52:27.1423228Z tmpxft_00000e54_00000000-7_cutlassB_f16_aligned_k64.cudafe1.cpp 2025-07-24T04:52:27.1424744Z [3656/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k65536.cu.obj 2025-07-24T04:52:27.2666846Z cutlassB_f16_aligned_k65536.cu 2025-07-24T04:52:27.2667572Z tmpxft_0000069c_00000000-7_cutlassB_f16_aligned_k65536.cudafe1.cpp 2025-07-24T04:52:27.2669618Z [3657/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k65536_dropout.cu.obj 2025-07-24T04:52:27.8091487Z cutlassB_f16_aligned_k65536_dropout.cu 2025-07-24T04:52:27.8092574Z tmpxft_000007a4_00000000-7_cutlassB_f16_aligned_k65536_dropout.cudafe1.cpp 2025-07-24T04:52:27.8094311Z [3658/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k96.cu.obj 2025-07-24T04:52:28.0698930Z cutlassB_f16_aligned_k96.cu 2025-07-24T04:52:28.0699799Z tmpxft_00000f8c_00000000-7_cutlassB_f16_aligned_k96.cudafe1.cpp 2025-07-24T04:52:28.0701675Z [3659/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k128.cu.obj 2025-07-24T04:52:30.0791679Z cutlassB_f16_notaligned_k128.cu 2025-07-24T04:52:30.0792154Z tmpxft_00001714_00000000-7_cutlassB_f16_notaligned_k128.cudafe1.cpp 2025-07-24T04:52:30.0793058Z [3660/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k128_dropout.cu.obj 2025-07-24T04:52:30.1703280Z cutlassB_f16_notaligned_k128_dropout.cu 2025-07-24T04:52:30.1704093Z tmpxft_00000e40_00000000-7_cutlassB_f16_notaligned_k128_dropout.cudafe1.cpp 2025-07-24T04:52:30.1705701Z [3661/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k32.cu.obj 2025-07-24T04:52:30.1805109Z cutlassB_f16_notaligned_k32.cu 2025-07-24T04:52:30.1806025Z tmpxft_00001378_00000000-7_cutlassB_f16_notaligned_k32.cudafe1.cpp 2025-07-24T04:52:30.1807555Z [3662/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k32_dropout.cu.obj 2025-07-24T04:52:30.2526864Z cutlassB_f16_notaligned_k32_dropout.cu 2025-07-24T04:52:30.2527428Z tmpxft_000016dc_00000000-7_cutlassB_f16_notaligned_k32_dropout.cudafe1.cpp 2025-07-24T04:52:30.2528405Z [3663/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k64_dropout.cu.obj 2025-07-24T04:52:30.2746666Z cutlassB_f16_notaligned_k64_dropout.cu 2025-07-24T04:52:30.2747517Z tmpxft_00001188_00000000-7_cutlassB_f16_notaligned_k64_dropout.cudafe1.cpp 2025-07-24T04:52:30.2749259Z [3664/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k64.cu.obj 2025-07-24T04:52:30.8772051Z cutlassB_f16_notaligned_k64.cu 2025-07-24T04:52:30.8772810Z tmpxft_000014a4_00000000-7_cutlassB_f16_notaligned_k64.cudafe1.cpp 2025-07-24T04:52:30.8778600Z [3665/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k65536.cu.obj 2025-07-24T04:52:31.2787157Z cutlassB_f16_notaligned_k65536.cu 2025-07-24T04:52:31.2789549Z tmpxft_00000d58_00000000-7_cutlassB_f16_notaligned_k65536.cudafe1.cpp 2025-07-24T04:52:31.2793122Z [3666/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k65536_dropout.cu.obj 2025-07-24T04:52:33.1649396Z cutlassB_f16_notaligned_k65536_dropout.cu 2025-07-24T04:52:33.1650253Z tmpxft_00001174_00000000-7_cutlassB_f16_notaligned_k65536_dropout.cudafe1.cpp 2025-07-24T04:52:33.1651967Z [3667/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k128.cu.obj 2025-07-24T04:52:33.2606892Z cutlassB_f32_aligned_k128.cu 2025-07-24T04:52:33.2607308Z tmpxft_000010c8_00000000-7_cutlassB_f32_aligned_k128.cudafe1.cpp 2025-07-24T04:52:33.2608493Z [3668/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k64.cu.obj 2025-07-24T04:52:33.3503211Z cutlassB_f32_aligned_k64.cu 2025-07-24T04:52:33.3503963Z tmpxft_00001490_00000000-7_cutlassB_f32_aligned_k64.cudafe1.cpp 2025-07-24T04:52:33.3505999Z [3669/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k128_dropout.cu.obj 2025-07-24T04:52:33.3534800Z cutlassB_f32_aligned_k128_dropout.cu 2025-07-24T04:52:33.3535274Z tmpxft_00000d4c_00000000-7_cutlassB_f32_aligned_k128_dropout.cudafe1.cpp 2025-07-24T04:52:33.3536198Z [3670/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k32_dropout.cu.obj 2025-07-24T04:52:33.4175152Z cutlassB_f32_aligned_k32_dropout.cu 2025-07-24T04:52:33.4175963Z tmpxft_000005c4_00000000-7_cutlassB_f32_aligned_k32_dropout.cudafe1.cpp 2025-07-24T04:52:33.4177662Z [3671/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k32.cu.obj 2025-07-24T04:52:33.8063119Z cutlassB_f32_aligned_k32.cu 2025-07-24T04:52:33.8063952Z tmpxft_00000710_00000000-7_cutlassB_f32_aligned_k32.cudafe1.cpp 2025-07-24T04:52:33.8065699Z [3672/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k64_dropout.cu.obj 2025-07-24T04:52:34.3658204Z cutlassB_f32_aligned_k64_dropout.cu 2025-07-24T04:52:34.3659061Z tmpxft_0000078c_00000000-7_cutlassB_f32_aligned_k64_dropout.cudafe1.cpp 2025-07-24T04:52:34.3660855Z [3673/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k65536.cu.obj 2025-07-24T04:52:36.2634461Z cutlassB_f32_aligned_k65536.cu 2025-07-24T04:52:36.2634926Z tmpxft_00001538_00000000-7_cutlassB_f32_aligned_k65536.cudafe1.cpp 2025-07-24T04:52:36.2635878Z [3674/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k65536_dropout.cu.obj 2025-07-24T04:52:36.3462740Z cutlassB_f32_aligned_k65536_dropout.cu 2025-07-24T04:52:36.3463229Z tmpxft_00000f94_00000000-7_cutlassB_f32_aligned_k65536_dropout.cudafe1.cpp 2025-07-24T04:52:36.3464162Z [3675/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k128_dropout.cu.obj 2025-07-24T04:52:36.4141272Z cutlassB_f32_notaligned_k128_dropout.cu 2025-07-24T04:52:36.4142166Z tmpxft_00001630_00000000-7_cutlassB_f32_notaligned_k128_dropout.cudafe1.cpp 2025-07-24T04:52:36.4143841Z [3676/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k32_dropout.cu.obj 2025-07-24T04:52:36.4767617Z cutlassB_f32_notaligned_k32_dropout.cu 2025-07-24T04:52:36.4768124Z tmpxft_00001548_00000000-7_cutlassB_f32_notaligned_k32_dropout.cudafe1.cpp 2025-07-24T04:52:36.4769072Z [3677/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k128.cu.obj 2025-07-24T04:52:36.6575157Z cutlassB_f32_notaligned_k128.cu 2025-07-24T04:52:36.6575900Z tmpxft_0000170c_00000000-7_cutlassB_f32_notaligned_k128.cudafe1.cpp 2025-07-24T04:52:36.6577695Z [3678/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k32.cu.obj 2025-07-24T04:52:37.1400257Z cutlassB_f32_notaligned_k32.cu 2025-07-24T04:52:37.1405629Z tmpxft_000017d8_00000000-7_cutlassB_f32_notaligned_k32.cudafe1.cpp 2025-07-24T04:52:37.1408353Z [3679/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k64.cu.obj 2025-07-24T04:52:37.5320219Z cutlassB_f32_notaligned_k64.cu 2025-07-24T04:52:37.5321878Z tmpxft_00000970_00000000-7_cutlassB_f32_notaligned_k64.cudafe1.cpp 2025-07-24T04:52:37.5325102Z [3680/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k64_dropout.cu.obj 2025-07-24T04:52:39.3879610Z cutlassB_f32_notaligned_k64_dropout.cu 2025-07-24T04:52:39.3880111Z tmpxft_00000ea0_00000000-7_cutlassB_f32_notaligned_k64_dropout.cudafe1.cpp 2025-07-24T04:52:39.3881042Z [3681/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k65536.cu.obj 2025-07-24T04:52:39.4100918Z cutlassB_f32_notaligned_k65536.cu 2025-07-24T04:52:39.4101383Z tmpxft_000011c8_00000000-7_cutlassB_f32_notaligned_k65536.cudafe1.cpp 2025-07-24T04:52:39.4102277Z [3682/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_bf16_aligned.cu.obj 2025-07-24T04:52:39.4700076Z cutlassF_bf16_aligned.cu 2025-07-24T04:52:39.4700513Z tmpxft_00000720_00000000-7_cutlassF_bf16_aligned.cudafe1.cpp 2025-07-24T04:52:39.4701323Z [3683/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f16_aligned.cu.obj 2025-07-24T04:52:39.5721364Z cutlassF_f16_aligned.cu 2025-07-24T04:52:39.5721736Z tmpxft_00001680_00000000-7_cutlassF_f16_aligned.cudafe1.cpp 2025-07-24T04:52:39.5722626Z [3684/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k65536_dropout.cu.obj 2025-07-24T04:52:39.6351372Z cutlassB_f32_notaligned_k65536_dropout.cu 2025-07-24T04:52:39.6352305Z tmpxft_00000350_00000000-7_cutlassB_f32_notaligned_k65536_dropout.cudafe1.cpp 2025-07-24T04:52:39.6353285Z [3685/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f16_notaligned.cu.obj 2025-07-24T04:52:40.0146171Z cutlassF_f16_notaligned.cu 2025-07-24T04:52:40.0146625Z tmpxft_00000344_00000000-7_cutlassF_f16_notaligned.cudafe1.cpp 2025-07-24T04:52:40.0147454Z [3686/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f32_aligned.cu.obj 2025-07-24T04:52:40.1844787Z cutlassF_f32_aligned.cu 2025-07-24T04:52:40.1845215Z tmpxft_00001434_00000000-7_cutlassF_f32_aligned.cudafe1.cpp 2025-07-24T04:52:40.1846055Z [3687/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f32_notaligned.cu.obj 2025-07-24T04:52:42.3556923Z cutlassF_f32_notaligned.cu 2025-07-24T04:52:42.3557338Z tmpxft_00001540_00000000-7_cutlassF_f32_notaligned.cudafe1.cpp 2025-07-24T04:52:42.3558171Z [3688/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\UfuncCUDA_add.cu.obj 2025-07-24T04:52:47.0238611Z UfuncCUDA_add.cu 2025-07-24T04:52:47.0239262Z tmpxft_00001760_00000000-7_UfuncCUDA_add.cudafe1.cpp 2025-07-24T04:52:47.0241425Z [3689/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebra.cpp.obj 2025-07-24T04:52:47.7061563Z [3690/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterQuantizedCUDA_0.cpp.obj 2025-07-24T04:52:50.7738723Z [3691/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterNestedTensorCUDA_0.cpp.obj 2025-07-24T04:52:50.9204209Z [3692/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebraLib.cpp.obj 2025-07-24T04:52:51.6593278Z [3693/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterSparseCUDA_0.cpp.obj 2025-07-24T04:52:52.9975897Z [3694/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterSparseCsrCUDA_0.cpp.obj 2025-07-24T04:52:53.4639044Z [3695/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CudssHandlePool.cpp.obj 2025-07-24T04:52:53.9130315Z [3696/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CusolverDnHandlePool.cpp.obj 2025-07-24T04:52:55.5386300Z [3697/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CUDASolver.cpp.obj 2025-07-24T04:52:55.6827144Z [3698/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebraLibBlas.cpp.obj 2025-07-24T04:52:55.8225557Z [3699/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDASparseBlas.cpp.obj 2025-07-24T04:52:57.5190243Z [3700/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\tunable\StreamTimer.cpp.obj 2025-07-24T04:52:57.7785028Z [3701/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CublasHandlePool.cpp.obj 2025-07-24T04:52:58.9067552Z [3702/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\tunable\Tunable.cpp.obj 2025-07-24T04:53:01.3599157Z [3703/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Activation.cpp.obj 2025-07-24T04:53:03.0458615Z [3704/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Distributions.cpp.obj 2025-07-24T04:53:03.2317968Z [3705/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LinearAlgebraStubs.cpp.obj 2025-07-24T04:53:03.8127107Z [3706/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Equal.cpp.obj 2025-07-24T04:53:08.4867380Z [3707/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GridSampler.cpp.obj 2025-07-24T04:53:08.7748993Z [3708/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Blas.cpp.obj 2025-07-24T04:53:10.2368098Z [3709/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDABlas.cpp.obj 2025-07-24T04:53:11.1053070Z [3710/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernel.cpp.obj 2025-07-24T04:53:12.3145776Z [3711/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScanKernels.cpp.obj 2025-07-24T04:53:12.4330968Z [3712/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceOps.cpp.obj 2025-07-24T04:53:14.3094880Z [3713/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sort.cpp.obj 2025-07-24T04:53:15.1436964Z [3714/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sorting.cpp.obj 2025-07-24T04:53:16.5048290Z [3715/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorModeKernel.cpp.obj 2025-07-24T04:53:18.4640121Z [3716/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\jit_utils.cpp.obj 2025-07-24T04:53:18.6409980Z [3717/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorShapeCUDA.cpp.obj 2025-07-24T04:53:19.2329740Z [3718/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTopK.cpp.obj 2025-07-24T04:53:20.9355396Z [3719/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\flash_attn\flash_api.cpp.obj 2025-07-24T04:53:22.9956669Z [3720/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDABlas.cpp.obj 2025-07-24T04:53:24.7467035Z [3721/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlas.cpp.obj 2025-07-24T04:53:25.0059467Z [3722/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\CudaIPCTypes.cpp.obj 2025-07-24T04:53:26.6129709Z [3723/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlasImpl.cpp.obj 2025-07-24T04:53:27.0240373Z [3724/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlasLegacy.cpp.obj 2025-07-24T04:53:28.7797132Z [3725/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\CUDAPluggableAllocator.cpp.obj 2025-07-24T04:53:33.0958225Z [3726/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerFunctions.cpp.obj 2025-07-24T04:53:33.5757378Z [3727/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.cpp.obj 2025-07-24T04:53:33.5961304Z [3728/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_torch\shim_cuda.cpp.obj 2025-07-24T04:53:34.8235624Z [3729/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\memory_snapshot.cpp.obj 2025-07-24T04:53:37.8231501Z [3730/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\comm.cpp.obj 2025-07-24T04:53:40.5148947Z [3731/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\profiler\stubs\cuda.cpp.obj 2025-07-24T04:53:42.0555614Z [3732/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterCUDA_0.cpp.obj 2025-07-24T04:53:42.3384636Z [3733/7681] Building CXX object caffe2\CMakeFiles\torch.dir\__\empty.cpp.obj 2025-07-24T04:53:42.8594728Z [3734/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.cpp.obj 2025-07-24T04:53:43.0321176Z [3735/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\passes\frozen_conv_add_relu_fusion_cuda.cpp.obj 2025-07-24T04:53:43.7572426Z [3736/7681] Building CXX object caffe2\torch\lib\libshm_windows\CMakeFiles\shm.dir\core.cpp.obj 2025-07-24T04:53:45.5679064Z [3737/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\autograd\functions\comm.cpp.obj 2025-07-24T04:53:50.4340371Z [3738/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\timers.cc.obj 2025-07-24T04:53:50.5326342Z [3739/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\sysinfo.cc.obj 2025-07-24T04:53:50.6708409Z [3740/7681] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Unique.cu.obj 2025-07-24T04:53:50.7913241Z Unique.cu 2025-07-24T04:53:50.7913510Z tmpxft_00001744_00000000-7_Unique.cudafe1.cpp 2025-07-24T04:53:50.7914167Z [3741/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\tensorexpr\cuda_codegen.cpp.obj 2025-07-24T04:53:50.7915428Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): warning C4805: '==': unsafe mix of type 'c10::impl::ScalarTypeToCPPType::type' and type 'T' in operation 2025-07-24T04:53:50.7916355Z with 2025-07-24T04:53:50.7916538Z [ 2025-07-24T04:53:50.7916703Z T=int 2025-07-24T04:53:50.7916892Z ] 2025-07-24T04:53:50.7917507Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-07-24T04:53:52.0100875Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\tensorexpr\cuda_codegen.cpp(147): note: see reference to function template instantiation 'bool torch::jit::tensorexpr::immediateEquals(const torch::jit::tensorexpr::ExprPtr &,T)' being compiled 2025-07-24T04:53:52.0103171Z with 2025-07-24T04:53:52.0120798Z [ 2025-07-24T04:53:52.0121190Z T=int 2025-07-24T04:53:52.0122469Z ] 2025-07-24T04:53:52.0123187Z [3742/7681] Building CXX object test_jit\CMakeFiles\jitbackend_test.dir\test_backend_lib.cpp.obj 2025-07-24T04:53:52.9495115Z [3743/7681] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\runtime\register_cuda_ops.cpp.obj 2025-07-24T04:53:52.9702104Z [3744/7681] Building CUDA object test_cpp_c10d\CMakeFiles\c10d_cuda_test.dir\CUDATest.cu.obj 2025-07-24T04:53:54.0556925Z CUDATest.cu 2025-07-24T04:53:54.0557242Z tmpxft_000014d0_00000000-7_CUDATest.cudafe1.cpp 2025-07-24T04:53:54.0558138Z [3745/7681] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_lib.cpp.obj 2025-07-24T04:53:59.2550441Z [3746/7681] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\__\__\__\torch\csrc\jit\mobile\profiler_edge.cpp.obj 2025-07-24T04:53:59.2696077Z [3747/7681] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_preprocess.cpp.obj 2025-07-24T04:54:11.5797965Z [3748/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_2.cpp.obj 2025-07-24T04:54:11.6146039Z [3749/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_3.cpp.obj 2025-07-24T04:54:12.7731992Z [3750/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_0.cpp.obj 2025-07-24T04:54:12.8600045Z [3751/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_1.cpp.obj 2025-07-24T04:54:13.0256612Z [3752/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_4.cpp.obj 2025-07-24T04:54:25.2684050Z [3753/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_0.cpp.obj 2025-07-24T04:54:30.0679793Z [3754/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_variable_methods.cpp.obj 2025-07-24T04:54:34.2296459Z [3755/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_linalg_functions.cpp.obj 2025-07-24T04:54:36.9176741Z [3756/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_fft_functions.cpp.obj 2025-07-24T04:54:39.3597027Z [3757/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nn_functions.cpp.obj 2025-07-24T04:54:42.7149551Z [3758/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_2.cpp.obj 2025-07-24T04:54:43.6907908Z [3759/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DataLoader.cpp.obj 2025-07-24T04:54:47.0494659Z [3760/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_return_types.cpp.obj 2025-07-24T04:54:48.4533430Z [3761/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_1.cpp.obj 2025-07-24T04:54:48.4798663Z [3762/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nested_functions.cpp.obj 2025-07-24T04:54:50.1423877Z [3763/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_enum_tag.cpp.obj 2025-07-24T04:54:50.8397419Z [3764/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_sparse_functions.cpp.obj 2025-07-24T04:54:53.6355383Z [3765/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DeviceAccelerator.cpp.obj 2025-07-24T04:54:55.6520979Z [3766/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_special_functions.cpp.obj 2025-07-24T04:54:59.3177901Z [3767/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Dtype.cpp.obj 2025-07-24T04:54:59.7949127Z [3768/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Device.cpp.obj 2025-07-24T04:55:01.7724278Z [3769/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Layout.cpp.obj 2025-07-24T04:55:03.6912711Z [3770/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\MemoryFormat.cpp.obj 2025-07-24T04:55:05.7937802Z [3771/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DynamicTypes.cpp.obj 2025-07-24T04:55:06.5315931Z [3772/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\QScheme.cpp.obj 2025-07-24T04:55:11.2999231Z [3773/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Exceptions.cpp.obj 2025-07-24T04:55:11.3415664Z [3774/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\python_dimname.cpp.obj 2025-07-24T04:55:13.9332848Z [3775/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Generator.cpp.obj 2025-07-24T04:55:17.5621065Z [3776/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Size.cpp.obj 2025-07-24T04:55:22.3024777Z [3777/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\PyInterpreter.cpp.obj 2025-07-24T04:55:29.2019974Z [3778/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Storage.cpp.obj 2025-07-24T04:55:31.0239227Z [3779/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Module.cpp.obj 2025-07-24T04:55:31.9578068Z [3780/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageSharing.cpp.obj 2025-07-24T04:55:34.8730815Z [3781/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageMethods.cpp.obj 2025-07-24T04:55:35.9158074Z [3782/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Stream.cpp.obj 2025-07-24T04:55:39.2302923Z [3783/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Event.cpp.obj 2025-07-24T04:55:42.9524717Z [3784/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\TypeInfo.cpp.obj 2025-07-24T04:55:46.9613101Z [3785/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_anomaly_mode.cpp.obj 2025-07-24T04:55:48.9733446Z [3786/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\profiler_python.cpp.obj 2025-07-24T04:55:50.0045922Z [3787/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\functions\init.cpp.obj 2025-07-24T04:55:52.1470788Z [3788/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\api\src\python\init.cpp.obj 2025-07-24T04:55:56.4314501Z [3789/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_cpp_function.cpp.obj 2025-07-24T04:55:57.6694793Z [3790/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_saved_variable_hooks.cpp.obj 2025-07-24T04:56:04.6186344Z [3791/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\init.cpp.obj 2025-07-24T04:56:06.0560107Z [3792/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_engine.cpp.obj 2025-07-24T04:56:07.9978364Z [3793/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_hook.cpp.obj 2025-07-24T04:56:10.6157073Z [3794/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_legacy_variable.cpp.obj 2025-07-24T04:56:18.3596265Z [3795/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_torch_functions_manual.cpp.obj 2025-07-24T04:56:18.5914031Z [3796/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cache_entry.cpp.obj 2025-07-24T04:56:19.4620582Z [3797/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_function.cpp.obj 2025-07-24T04:56:23.4360970Z [3798/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpp_shim.cpp.obj 2025-07-24T04:56:25.2648352Z [3799/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable_indexing.cpp.obj 2025-07-24T04:56:25.2748758Z [3800/7681] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame.c.obj 2025-07-24T04:56:25.2767365Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(41): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-07-24T04:56:25.2770724Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-07-24T04:56:25.2771588Z [3801/7681] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpython_defs.c.obj 2025-07-24T04:56:29.8888714Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(41): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-07-24T04:56:29.8892708Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-07-24T04:56:29.8894143Z [3802/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable.cpp.obj 2025-07-24T04:56:32.4457699Z [3803/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_nested_functions_manual.cpp.obj 2025-07-24T04:56:32.5102488Z [3804/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame_cpp.cpp.obj 2025-07-24T04:56:34.5567677Z [3805/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\extra_state.cpp.obj 2025-07-24T04:56:35.1904750Z [3806/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\framelocals_mapping.cpp.obj 2025-07-24T04:56:35.5308533Z [3807/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\fx\node.cpp.obj 2025-07-24T04:56:35.7804179Z [3808/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\python_compiled_autograd.cpp.obj 2025-07-24T04:56:37.8632147Z [3809/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\utils.cpp.obj 2025-07-24T04:56:40.7436364Z [3810/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\upgrader.cpp.obj 2025-07-24T04:56:43.8875682Z [3811/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\example_upgraders.cpp.obj 2025-07-24T04:56:44.8938332Z [3812/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\init.cpp.obj 2025-07-24T04:56:50.3525835Z [3813/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mtia\Module.cpp.obj 2025-07-24T04:56:54.5637851Z [3814/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mps\Module.cpp.obj 2025-07-24T04:56:56.2929058Z [3815/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_package\pybind.cpp.obj 2025-07-24T04:56:56.4919196Z [3816/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\pybind.cpp.obj 2025-07-24T04:56:57.6772305Z [3817/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_runner\pybind.cpp.obj 2025-07-24T04:57:04.6684405Z [3818/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\resize_storage_bytes.cpp.obj 2025-07-24T04:57:05.7564121Z [3819/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\functorch\init.cpp.obj 2025-07-24T04:57:09.2506439Z [3820/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\static_cuda_launcher.cpp.obj 2025-07-24T04:57:10.1387353Z [3821/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\guards.cpp.obj 2025-07-24T04:57:13.0810936Z [3822/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_meta_info.cpp.obj 2025-07-24T04:57:13.4642886Z [3823/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_holder.cpp.obj 2025-07-24T04:57:17.1580546Z [3824/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\cast_all_constant_to_floating.cpp.obj 2025-07-24T04:57:18.1356288Z [3825/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\deduplicate_initializers.cpp.obj 2025-07-24T04:57:24.6653356Z [3826/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\backends\backend_init.cpp.obj 2025-07-24T04:57:25.6289852Z [3827/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_fold.cpp.obj 2025-07-24T04:57:26.2378600Z [3828/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eliminate_unused_items.cpp.obj 2025-07-24T04:57:28.0842901Z [3829/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_map.cpp.obj 2025-07-24T04:57:32.6782666Z [3830/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eval_peephole.cpp.obj 2025-07-24T04:57:34.5997044Z [3831/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\list_model_parameters.cpp.obj 2025-07-24T04:57:35.1078629Z [3832/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_substitution.cpp.obj 2025-07-24T04:57:36.8064263Z [3833/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx.cpp.obj 2025-07-24T04:57:37.6918896Z [3834/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\helper.cpp.obj 2025-07-24T04:57:43.5333251Z [3835/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\peephole.cpp.obj 2025-07-24T04:57:43.5630678Z [3836/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\prepare_division_for_onnx.cpp.obj 2025-07-24T04:57:43.7994639Z [3837/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\preprocess_for_onnx.cpp.obj 2025-07-24T04:57:46.8395518Z [3838/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\scalar_type_analysis.cpp.obj 2025-07-24T04:57:48.1040319Z [3839/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\onnx_log.cpp.obj 2025-07-24T04:57:50.9670552Z [3840/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\fixup_onnx_controlflow.cpp.obj 2025-07-24T04:57:51.5384560Z [3841/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\init.cpp.obj 2025-07-24T04:57:54.8594534Z [3842/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.cpp.obj 2025-07-24T04:57:55.0737720Z [3843/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\unpack_quantized_weights.cpp.obj 2025-07-24T04:57:56.4597556Z [3844/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\naming.cpp.obj 2025-07-24T04:57:57.1766834Z [3845/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_extraction.cpp.obj 2025-07-24T04:58:00.3772808Z [3846/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.cpp.obj 2025-07-24T04:58:02.1671880Z [3847/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\common.cpp.obj 2025-07-24T04:58:06.1901994Z [3848/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.cpp.obj 2025-07-24T04:58:07.7799967Z [3849/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.cpp.obj 2025-07-24T04:58:13.3317664Z [3850/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\shape_type_inference.cpp.obj 2025-07-24T04:58:15.7702815Z [3851/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\pybind_utils.cpp.obj 2025-07-24T04:58:20.2595820Z [3852/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_arg_flatten.cpp.obj 2025-07-24T04:58:25.0149325Z [3853/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_custom_class.cpp.obj 2025-07-24T04:58:27.1347804Z [3854/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_dict.cpp.obj 2025-07-24T04:58:29.5320586Z [3855/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\tree_views.cpp.obj 2025-07-24T04:58:30.6901407Z [3856/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_interpreter.cpp.obj 2025-07-24T04:58:37.0115698Z [3857/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_list.cpp.obj 2025-07-24T04:58:43.7571629Z [3858/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tracer.cpp.obj 2025-07-24T04:58:48.6950651Z [3859/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tree_views.cpp.obj 2025-07-24T04:58:49.0044424Z [3860/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_ir.cpp.obj 2025-07-24T04:58:50.9643826Z [3861/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\concrete_module_type.cpp.obj 2025-07-24T04:58:50.9645091Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(487): warning C4996: 'pybind11::handle::operator ==': Use obj1.is(obj2) instead 2025-07-24T04:58:50.9646552Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(487): note: the template instantiation context (the oldest one first) is 2025-07-24T04:58:50.9648647Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\frontend\concrete_module_type.cpp(118): note: see reference to function template instantiation 'bool std::operator ==>(const std::vector> &,const std::vector> &)' being compiled 2025-07-24T04:58:50.9651225Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(2238): note: see reference to function template instantiation 'bool std::equal(const _InIt1,const _InIt1,const _InIt2)' being compiled 2025-07-24T04:58:50.9652535Z with 2025-07-24T04:58:50.9652772Z [ 2025-07-24T04:58:50.9653012Z _InIt1=const pybind11::object *, 2025-07-24T04:58:50.9653381Z _InIt2=const pybind11::object * 2025-07-24T04:58:50.9653683Z ] 2025-07-24T04:58:50.9654785Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5277): note: see reference to function template instantiation 'bool std::equal<_InIt1,_InIt2,std::equal_to>(const _InIt1,const _InIt1,const _InIt2,_Pr)' being compiled 2025-07-24T04:58:50.9655944Z with 2025-07-24T04:58:50.9656153Z [ 2025-07-24T04:58:50.9656420Z _InIt1=const pybind11::object *, 2025-07-24T04:58:56.1345838Z _InIt2=const pybind11::object *, 2025-07-24T04:58:56.1346766Z _Pr=std::equal_to 2025-07-24T04:58:56.1347418Z ] 2025-07-24T04:58:56.1349918Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5260): note: see reference to function template instantiation 'bool std::equal_to::operator ()(_Ty1,_Ty2) noexcept(false) const' being compiled 2025-07-24T04:58:56.1352766Z with 2025-07-24T04:58:56.1353191Z [ 2025-07-24T04:58:56.1353647Z _Ty1=const pybind11::object &, 2025-07-24T04:58:56.1354303Z _Ty2=const pybind11::object & 2025-07-24T04:58:56.1355088Z ] 2025-07-24T04:58:56.1358845Z [3862/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\multiprocessing\init.cpp.obj 2025-07-24T04:59:03.9065100Z [3863/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_sugared_value.cpp.obj 2025-07-24T04:59:08.1617193Z [3864/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\monitor\python_init.cpp.obj 2025-07-24T04:59:08.6675178Z [3865/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\runtime\static\init.cpp.obj 2025-07-24T04:59:09.3948783Z [3866/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\script_init.cpp.obj 2025-07-24T04:59:16.5726438Z [3867/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\combined_traceback.cpp.obj 2025-07-24T04:59:26.7771253Z [3868/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\onnx\init.cpp.obj 2025-07-24T04:59:27.7040582Z [3869/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\serialization.cpp.obj 2025-07-24T04:59:27.7281834Z [3870/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\tensor\python_tensor.cpp.obj 2025-07-24T04:59:33.9917818Z [3871/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\init.cpp.obj 2025-07-24T04:59:34.4272799Z [3872/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\init.cpp.obj 2025-07-24T04:59:35.4539931Z [3873/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\object_ptr.cpp.obj 2025-07-24T04:59:38.8888388Z [3874/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\device_lazy_init.cpp.obj 2025-07-24T04:59:39.2003523Z [3875/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\invalid_arguments.cpp.obj 2025-07-24T04:59:39.3941647Z [3876/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\tensorexpr\tensorexpr_init.cpp.obj 2025-07-24T04:59:45.8887978Z [3877/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\throughput_benchmark.cpp.obj 2025-07-24T04:59:47.4368556Z [3878/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pyobject_preservation.cpp.obj 2025-07-24T04:59:49.5974747Z [3879/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_symnode.cpp.obj 2025-07-24T04:59:50.4290289Z [3880/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils.cpp.obj 2025-07-24T04:59:54.1607214Z [3881/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pybind.cpp.obj 2025-07-24T04:59:55.7390395Z [3882/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\structseq.cpp.obj 2025-07-24T04:59:56.0413771Z [3883/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_arg_parser.cpp.obj 2025-07-24T04:59:58.4534828Z [3884/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_dtypes.cpp.obj 2025-07-24T05:00:01.9473253Z [3885/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_layouts.cpp.obj 2025-07-24T05:00:04.2281422Z [3886/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\nested.cpp.obj 2025-07-24T05:00:04.3915128Z [3887/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_memoryformats.cpp.obj 2025-07-24T05:00:04.8398874Z [3888/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_qschemes.cpp.obj 2025-07-24T05:00:08.2883562Z [3889/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_apply.cpp.obj 2025-07-24T05:00:09.1754173Z [3890/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_dispatch.cpp.obj 2025-07-24T05:00:15.9653561Z [3891/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_types.cpp.obj 2025-07-24T05:00:16.3923586Z [3892/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\disable_torch_function.cpp.obj 2025-07-24T05:00:16.7892906Z [3893/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\verbose.cpp.obj 2025-07-24T05:00:17.3347199Z [3894/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cpu\Module.cpp.obj 2025-07-24T05:00:17.5900321Z [3895/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_list.cpp.obj 2025-07-24T05:00:23.3071402Z [3896/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\instruction_counter\Module.cpp.obj 2025-07-24T05:00:24.1766177Z [3897/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_new.cpp.obj 2025-07-24T05:00:25.9257955Z [3898/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\itt.cpp.obj 2025-07-24T05:00:27.3520482Z [3899/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_numpy.cpp.obj 2025-07-24T05:00:29.3156257Z [3900/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\python_util.cpp.obj 2025-07-24T05:00:34.7024854Z [3901/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\__\test\cpp\jit\torch_python_test.cpp.obj 2025-07-24T05:00:42.4162199Z [3902/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\init.cpp.obj 2025-07-24T05:00:44.1364982Z [3903/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Event.cpp.obj 2025-07-24T05:00:45.9389043Z [3904/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\python_comm.cpp.obj 2025-07-24T05:00:46.7298172Z [3905/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Stream.cpp.obj 2025-07-24T05:00:52.0380847Z [3906/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Module.cpp.obj 2025-07-24T05:00:53.1246468Z [3907/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Graph.cpp.obj 2025-07-24T05:00:54.1089834Z [3908/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\nvtx.cpp.obj 2025-07-24T05:00:54.8124221Z [3909/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\cudart.cpp.obj 2025-07-24T05:00:56.0706606Z [3910/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\GdsFile.cpp.obj 2025-07-24T05:00:59.6986450Z [3911/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\MemPool.cpp.obj 2025-07-24T05:01:00.1855076Z [3912/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\any_lite.cc.obj 2025-07-24T05:01:00.2255198Z [3913/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\arena.cc.obj 2025-07-24T05:01:00.3074590Z [3914/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\extension_set.cc.obj 2025-07-24T05:01:00.5949615Z [3915/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-07-24T05:01:00.6130639Z [3916/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-07-24T05:01:00.6994395Z [3917/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-07-24T05:01:00.9057041Z [3918/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\cudnn.cpp.obj 2025-07-24T05:01:00.9135734Z [3919/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-07-24T05:01:00.9500027Z [3920/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-07-24T05:01:01.1250645Z [3921/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-07-24T05:01:01.1665545Z [3922/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-07-24T05:01:01.1841056Z [3923/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-07-24T05:01:01.3156525Z [3924/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-07-24T05:01:01.4166072Z [3925/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-07-24T05:01:01.5281126Z [3926/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\message_lite.cc.obj 2025-07-24T05:01:01.5607592Z [3927/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\parse_context.cc.obj 2025-07-24T05:01:01.6714823Z [3928/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-07-24T05:01:01.6841079Z [3929/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-07-24T05:01:01.8771810Z [3930/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-07-24T05:01:01.9433893Z [3931/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-07-24T05:01:01.9490559Z [3932/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-07-24T05:01:01.9933809Z [3933/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-07-24T05:01:02.1257359Z [3934/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-07-24T05:01:02.2160017Z [3935/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-07-24T05:01:02.2330390Z [3936/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-07-24T05:01:02.3117385Z [3937/7681] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\version.rc.res 2025-07-24T05:01:02.4575759Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-07-24T05:01:02.4576125Z 2025-07-24T05:01:02.4576130Z 2025-07-24T05:01:02.4576341Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-24T05:01:02.4576647Z 2025-07-24T05:01:02.4576652Z 2025-07-24T05:01:02.4576657Z 2025-07-24T05:01:02.4576662Z 2025-07-24T05:01:02.4577169Z [3938/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-07-24T05:01:02.4600981Z [3939/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-07-24T05:01:02.5608546Z [3940/7681] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-07-24T05:01:03.1319426Z [3941/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\cache.c.obj 2025-07-24T05:01:03.1337968Z [3942/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\api.c.obj 2025-07-24T05:01:03.1363847Z [3943/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\log.c.obj 2025-07-24T05:01:03.2036496Z [3944/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\init.c.obj 2025-07-24T05:01:03.2747295Z [3945/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\info.c.obj 2025-07-24T05:01:03.3045717Z [3946/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\uarch.c.obj 2025-07-24T05:01:03.3057790Z [3947/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\vendor.c.obj 2025-07-24T05:01:03.3247434Z [3948/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\init.c.obj 2025-07-24T05:01:03.3599165Z [3949/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\name.c.obj 2025-07-24T05:01:03.4000554Z [3950/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\isa.c.obj 2025-07-24T05:01:03.4057936Z [3951/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\topology.c.obj 2025-07-24T05:01:03.4324025Z [3952/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\init.c.obj 2025-07-24T05:01:03.5270203Z [3953/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\descriptor.c.obj 2025-07-24T05:01:03.5295725Z [3954/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\deterministic.c.obj 2025-07-24T05:01:03.7977329Z [3955/7681] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\windows\init.c.obj 2025-07-24T05:01:04.9946655Z [3956/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u2.c.obj 2025-07-24T05:01:05.0059153Z [3957/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-07-24T05:01:05.0131795Z [3958/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-07-24T05:01:05.0212839Z [3959/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u3.c.obj 2025-07-24T05:01:05.1232013Z [3960/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-07-24T05:01:05.1320625Z [3961/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u1.c.obj 2025-07-24T05:01:05.1516019Z [3962/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u2.c.obj 2025-07-24T05:01:05.1536636Z [3963/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-07-24T05:01:05.2335592Z [3964/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u3.c.obj 2025-07-24T05:01:05.2607871Z [3965/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u1.c.obj 2025-07-24T05:01:05.2682029Z [3966/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u3.c.obj 2025-07-24T05:01:05.3296392Z [3967/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u2.c.obj 2025-07-24T05:01:05.4168723Z [3968/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u1.c.obj 2025-07-24T05:01:05.4225945Z [3969/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u3-acc3.c.obj 2025-07-24T05:01:05.4488086Z [3970/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc2.c.obj 2025-07-24T05:01:05.4502060Z [3971/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc4.c.obj 2025-07-24T05:01:05.5418644Z [3972/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u2-acc2.c.obj 2025-07-24T05:01:05.5483073Z [3973/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u1.c.obj 2025-07-24T05:01:05.5645090Z [3974/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc2.c.obj 2025-07-24T05:01:05.5822258Z [3975/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u3-acc3.c.obj 2025-07-24T05:01:05.6569870Z [3976/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc4.c.obj 2025-07-24T05:01:05.7419850Z [3977/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u3-acc3.c.obj 2025-07-24T05:01:05.7520684Z [3978/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u1.c.obj 2025-07-24T05:01:05.8736210Z [3979/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc4.c.obj 2025-07-24T05:01:05.8755269Z [3980/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc2.c.obj 2025-07-24T05:01:05.9962660Z [3981/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.obj 2025-07-24T05:01:05.9982242Z [3982/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.obj 2025-07-24T05:01:06.2255790Z [3983/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\utils.cpp.obj 2025-07-24T05:01:06.3933793Z [3984/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.obj 2025-07-24T05:01:06.3961749Z [3985/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar.c.obj 2025-07-24T05:01:06.4022965Z [3986/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.obj 2025-07-24T05:01:06.4274960Z [3987/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.obj 2025-07-24T05:01:06.4362599Z [3988/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.obj 2025-07-24T05:01:06.5373640Z [3989/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.obj 2025-07-24T05:01:06.5389615Z [3990/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar.c.obj 2025-07-24T05:01:06.5446447Z [3991/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.obj 2025-07-24T05:01:06.5665209Z [3992/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar.c.obj 2025-07-24T05:01:06.5842705Z [3993/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar.c.obj 2025-07-24T05:01:06.7019970Z [3994/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar-acc2.c.obj 2025-07-24T05:01:06.7090730Z [3995/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar.c.obj 2025-07-24T05:01:06.8158583Z [3996/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar.c.obj 2025-07-24T05:01:06.8181319Z [3997/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar-acc2.c.obj 2025-07-24T05:01:06.8238035Z [3998/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar.c.obj 2025-07-24T05:01:06.9166924Z [3999/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar.c.obj 2025-07-24T05:01:06.9361974Z [4000/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar.c.obj 2025-07-24T05:01:06.9493977Z [4001/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar-acc2.c.obj 2025-07-24T05:01:06.9561870Z [4002/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar.c.obj 2025-07-24T05:01:06.9623934Z [4003/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar-acc2.c.obj 2025-07-24T05:01:07.1449366Z [4004/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar.c.obj 2025-07-24T05:01:07.1638163Z [4005/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.obj 2025-07-24T05:01:07.1659121Z [4006/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar.c.obj 2025-07-24T05:01:07.1729700Z [4007/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.obj 2025-07-24T05:01:07.1743227Z [4008/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.obj 2025-07-24T05:01:07.4094044Z [4009/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.obj 2025-07-24T05:01:07.4735542Z [4010/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar.c.obj 2025-07-24T05:01:07.4861885Z [4011/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.obj 2025-07-24T05:01:07.4938508Z [4012/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.obj 2025-07-24T05:01:07.5127973Z [4013/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.obj 2025-07-24T05:01:07.5320700Z [4014/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.obj 2025-07-24T05:01:07.6288471Z [4015/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar.c.obj 2025-07-24T05:01:07.6356766Z [4016/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.obj 2025-07-24T05:01:07.7110320Z [4017/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar.c.obj 2025-07-24T05:01:07.7309644Z [4018/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar.c.obj 2025-07-24T05:01:07.7432988Z [4019/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar-acc2.c.obj 2025-07-24T05:01:07.8256748Z [4020/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar-acc2.c.obj 2025-07-24T05:01:07.8298480Z [4021/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar.c.obj 2025-07-24T05:01:07.8531168Z [4022/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar.c.obj 2025-07-24T05:01:07.9122540Z [4023/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar.c.obj 2025-07-24T05:01:07.9476153Z [4024/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar.c.obj 2025-07-24T05:01:07.9657625Z [4025/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar.c.obj 2025-07-24T05:01:07.9674316Z [4026/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar-acc2.c.obj 2025-07-24T05:01:08.0583168Z [4027/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar.c.obj 2025-07-24T05:01:08.1158375Z [4028/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar-acc2.c.obj 2025-07-24T05:01:08.2055380Z [4029/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc2.c.obj 2025-07-24T05:01:08.2124360Z [4030/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1.c.obj 2025-07-24T05:01:08.2140442Z [4031/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc4.c.obj 2025-07-24T05:01:08.2346323Z [4032/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc3.c.obj 2025-07-24T05:01:08.2658762Z [4033/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1.c.obj 2025-07-24T05:01:08.3411091Z [4034/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-6x1.c.obj 2025-07-24T05:01:08.3425528Z [4035/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-5x1.c.obj 2025-07-24T05:01:08.3478231Z [4036/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-3x1.c.obj 2025-07-24T05:01:08.4513810Z [4037/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc3.c.obj 2025-07-24T05:01:08.4590029Z [4038/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc4.c.obj 2025-07-24T05:01:08.4654074Z [4039/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1.c.obj 2025-07-24T05:01:08.5946849Z [4040/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1.c.obj 2025-07-24T05:01:08.6008475Z [4041/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-3x1.c.obj 2025-07-24T05:01:08.6191092Z [4042/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-4x1.c.obj 2025-07-24T05:01:08.6912000Z [4043/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc2.c.obj 2025-07-24T05:01:08.7325699Z [4044/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc4.c.obj 2025-07-24T05:01:08.7341136Z [4045/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1.c.obj 2025-07-24T05:01:08.7397484Z [4046/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc3.c.obj 2025-07-24T05:01:08.7536107Z [4047/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc3.c.obj 2025-07-24T05:01:08.8379787Z [4048/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1.c.obj 2025-07-24T05:01:08.8638187Z [4049/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1.c.obj 2025-07-24T05:01:08.8652815Z [4050/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1-acc2.c.obj 2025-07-24T05:01:08.9072709Z [4051/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc3.c.obj 2025-07-24T05:01:08.9131000Z [4052/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc2.c.obj 2025-07-24T05:01:08.9622367Z [4053/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc4.c.obj 2025-07-24T05:01:09.0212402Z [4054/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1.c.obj 2025-07-24T05:01:09.0293019Z [4055/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc3.c.obj 2025-07-24T05:01:09.0423893Z [4056/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1-acc2.c.obj 2025-07-24T05:01:09.0591267Z [4057/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1.c.obj 2025-07-24T05:01:09.1691091Z [4058/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u1.c.obj 2025-07-24T05:01:09.1762784Z [4059/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u2.c.obj 2025-07-24T05:01:09.1878092Z [4060/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1.c.obj 2025-07-24T05:01:09.1942900Z [4061/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u1.c.obj 2025-07-24T05:01:09.2346333Z [4062/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u3.c.obj 2025-07-24T05:01:09.2879543Z [4063/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u3.c.obj 2025-07-24T05:01:09.4071689Z [4064/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u4.c.obj 2025-07-24T05:01:09.5806950Z [4065/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x4-minmax-scalar.c.obj 2025-07-24T05:01:09.5822602Z [4066/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x2-relu-scalar.c.obj 2025-07-24T05:01:09.5883092Z [4067/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-2x4-minmax-scalar.c.obj 2025-07-24T05:01:09.6175008Z [4068/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p1.c.obj 2025-07-24T05:01:09.6496483Z [4069/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x4-minmax-scalar.c.obj 2025-07-24T05:01:09.6861645Z [4070/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p2.c.obj 2025-07-24T05:01:09.6911489Z [4071/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c4.c.obj 2025-07-24T05:01:09.7877987Z [4072/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c1.c.obj 2025-07-24T05:01:09.8585272Z [4073/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-2x4-minmax-scalar.c.obj 2025-07-24T05:01:09.8654279Z [4074/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-3x3-minmax-scalar.c.obj 2025-07-24T05:01:09.8793638Z [4075/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x2-relu-scalar.c.obj 2025-07-24T05:01:09.9976260Z [4076/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x2-minmax-scalar.c.obj 2025-07-24T05:01:09.9989746Z [4077/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x4-minmax-scalar.c.obj 2025-07-24T05:01:10.1859560Z [4078/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x2-minmax-scalar.c.obj 2025-07-24T05:01:10.2075522Z [4079/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x4-minmax-scalar.c.obj 2025-07-24T05:01:10.2161514Z [4080/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-minmax-scalar.c.obj 2025-07-24T05:01:10.2540409Z [4081/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-relu-scalar.c.obj 2025-07-24T05:01:10.4586051Z [4082/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-relu-scalar.c.obj 2025-07-24T05:01:10.4606438Z [4083/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-scalar.c.obj 2025-07-24T05:01:10.4628969Z [4084/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-scalar.c.obj 2025-07-24T05:01:10.5169550Z [4085/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-minmax-scalar.c.obj 2025-07-24T05:01:10.5804944Z [4086/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-relu-scalar.c.obj 2025-07-24T05:01:10.6033552Z [4087/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-scalar.c.obj 2025-07-24T05:01:10.6167627Z [4088/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-scalar.c.obj 2025-07-24T05:01:10.6182450Z [4089/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-relu-scalar.c.obj 2025-07-24T05:01:10.6371595Z [4090/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-1x1-minmax-scalar.c.obj 2025-07-24T05:01:10.7099405Z [4091/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-2x1-minmax-scalar.c.obj 2025-07-24T05:01:10.7314606Z [4092/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-4x1-minmax-scalar.c.obj 2025-07-24T05:01:10.7328327Z [4093/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x1-minmax-scalar.c.obj 2025-07-24T05:01:10.7391291Z [4094/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x2-minmax-scalar.c.obj 2025-07-24T05:01:10.7653351Z [4095/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x4-minmax-scalar.c.obj 2025-07-24T05:01:10.8298246Z [4096/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-07-24T05:01:10.8689442Z [4097/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-07-24T05:01:10.8784491Z [4098/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-07-24T05:01:10.8839542Z [4099/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u2.c.obj 2025-07-24T05:01:10.8857720Z [4100/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-07-24T05:01:11.0104766Z [4101/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u3.c.obj 2025-07-24T05:01:11.0156957Z [4102/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u2.c.obj 2025-07-24T05:01:11.0211840Z [4103/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u1.c.obj 2025-07-24T05:01:11.0293531Z [4104/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u3.c.obj 2025-07-24T05:01:11.0444378Z [4105/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u1.c.obj 2025-07-24T05:01:11.1262070Z [4106/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u2.c.obj 2025-07-24T05:01:11.1559527Z [4107/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u2.c.obj 2025-07-24T05:01:11.1572118Z [4108/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u3.c.obj 2025-07-24T05:01:11.1630812Z [4109/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u4.c.obj 2025-07-24T05:01:11.1752894Z [4110/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u3.c.obj 2025-07-24T05:01:11.2365038Z [4111/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u1.c.obj 2025-07-24T05:01:11.2667425Z [4112/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u3.c.obj 2025-07-24T05:01:11.2750205Z [4113/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u2.c.obj 2025-07-24T05:01:11.4691813Z [4114/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.obj 2025-07-24T05:01:11.4989563Z [4115/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.obj 2025-07-24T05:01:11.5055667Z [4116/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u4-acc4.c.obj 2025-07-24T05:01:11.5137761Z [4117/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u4-acc2.c.obj 2025-07-24T05:01:11.5200766Z [4118/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u2-acc2.c.obj 2025-07-24T05:01:11.5971455Z [4119/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.obj 2025-07-24T05:01:11.6552623Z [4120/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.obj 2025-07-24T05:01:11.7028142Z [4121/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u3-acc3.c.obj 2025-07-24T05:01:11.7045563Z [4122/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u1.c.obj 2025-07-24T05:01:11.7163359Z [4123/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc2.c.obj 2025-07-24T05:01:11.7845462Z [4124/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u1.c.obj 2025-07-24T05:01:11.8192050Z [4125/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u2-acc2.c.obj 2025-07-24T05:01:11.8312031Z [4126/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u3-acc3.c.obj 2025-07-24T05:01:11.8385028Z [4127/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc2.c.obj 2025-07-24T05:01:11.8655620Z [4128/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u2-acc2.c.obj 2025-07-24T05:01:11.8980320Z [4129/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc4.c.obj 2025-07-24T05:01:11.9974343Z [4130/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u1.c.obj 2025-07-24T05:01:12.0015320Z [4131/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc2.c.obj 2025-07-24T05:01:12.0031275Z [4132/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u3-acc3.c.obj 2025-07-24T05:01:12.0148296Z [4133/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u2-acc2.c.obj 2025-07-24T05:01:12.0214668Z [4134/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u1.c.obj 2025-07-24T05:01:12.1094249Z [4135/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u3-acc3.c.obj 2025-07-24T05:01:12.1200673Z [4136/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u2-acc2.c.obj 2025-07-24T05:01:12.1662127Z [4137/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc2.c.obj 2025-07-24T05:01:12.1843083Z [4138/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar.c.obj 2025-07-24T05:01:12.1863148Z [4139/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar-pipelined.c.obj 2025-07-24T05:01:12.3702857Z [4140/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar.c.obj 2025-07-24T05:01:12.3716683Z [4141/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar-pipelined.c.obj 2025-07-24T05:01:12.3729595Z [4142/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar-pipelined.c.obj 2025-07-24T05:01:12.3741890Z [4143/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar.c.obj 2025-07-24T05:01:12.4515381Z [4144/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar-pipelined.c.obj 2025-07-24T05:01:13.0169235Z [4145/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u1.c.obj 2025-07-24T05:01:13.0257518Z [4146/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u2.c.obj 2025-07-24T05:01:13.0315332Z [4147/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u2.c.obj 2025-07-24T05:01:13.0405498Z [4148/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u4.c.obj 2025-07-24T05:01:13.0774623Z [4149/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u1.c.obj 2025-07-24T05:01:13.1557395Z [4150/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u4.c.obj 2025-07-24T05:01:13.2058739Z [4151/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u1.c.obj 2025-07-24T05:01:13.2074458Z [4152/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u1.c.obj 2025-07-24T05:01:13.2151428Z [4153/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u8.c.obj 2025-07-24T05:01:13.2164796Z [4154/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u4.c.obj 2025-07-24T05:01:13.2821602Z [4155/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u4.c.obj 2025-07-24T05:01:13.3662026Z [4156/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u1.c.obj 2025-07-24T05:01:13.3681621Z [4157/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u2.c.obj 2025-07-24T05:01:13.3747952Z [4158/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u4.c.obj 2025-07-24T05:01:13.3955876Z [4159/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u8.c.obj 2025-07-24T05:01:13.4206318Z [4160/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u1.c.obj 2025-07-24T05:01:13.5463822Z [4161/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u2.c.obj 2025-07-24T05:01:13.5478944Z [4162/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u1.c.obj 2025-07-24T05:01:13.5493008Z [4163/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u4.c.obj 2025-07-24T05:01:13.6300745Z [4164/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u2.c.obj 2025-07-24T05:01:13.6422242Z [4165/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u4.c.obj 2025-07-24T05:01:13.6784466Z [4166/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u2.c.obj 2025-07-24T05:01:13.6798989Z [4167/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u4.c.obj 2025-07-24T05:01:13.6993169Z [4168/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u1.c.obj 2025-07-24T05:01:13.7557978Z [4169/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u1.c.obj 2025-07-24T05:01:13.7886940Z [4170/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u2.c.obj 2025-07-24T05:01:13.8185018Z [4171/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u4.c.obj 2025-07-24T05:01:13.8254927Z [4172/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u2.c.obj 2025-07-24T05:01:13.8275353Z [4173/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u1.c.obj 2025-07-24T05:01:13.9005463Z [4174/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u4.c.obj 2025-07-24T05:01:13.9155594Z [4175/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u1.c.obj 2025-07-24T05:01:13.9494167Z [4176/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u2.c.obj 2025-07-24T05:01:13.9639656Z [4177/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u4.c.obj 2025-07-24T05:01:14.0793063Z [4178/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u2.c.obj 2025-07-24T05:01:14.0812628Z [4179/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u4.c.obj 2025-07-24T05:01:14.0913782Z [4180/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u1.c.obj 2025-07-24T05:01:14.1192469Z [4181/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u1.c.obj 2025-07-24T05:01:14.1550450Z [4182/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u4.c.obj 2025-07-24T05:01:14.2353497Z [4183/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u8.c.obj 2025-07-24T05:01:14.2467899Z [4184/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u1.c.obj 2025-07-24T05:01:14.2729449Z [4185/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u2.c.obj 2025-07-24T05:01:14.3021345Z [4186/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u4.c.obj 2025-07-24T05:01:14.3129554Z [4187/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u1.c.obj 2025-07-24T05:01:14.4096504Z [4188/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u4.c.obj 2025-07-24T05:01:14.4171684Z [4189/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u2.c.obj 2025-07-24T05:01:14.4362879Z [4190/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u1.c.obj 2025-07-24T05:01:14.4714740Z [4191/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u2.c.obj 2025-07-24T05:01:14.4853846Z [4192/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u4.c.obj 2025-07-24T05:01:14.6292283Z [4193/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u2.c.obj 2025-07-24T05:01:14.6312467Z [4194/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u1.c.obj 2025-07-24T05:01:14.6466851Z [4195/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u2.c.obj 2025-07-24T05:01:14.6657160Z [4196/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u1.c.obj 2025-07-24T05:01:14.6849907Z [4197/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u4.c.obj 2025-07-24T05:01:14.8262318Z [4198/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u4.c.obj 2025-07-24T05:01:14.8281468Z [4199/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u4.c.obj 2025-07-24T05:01:14.8350312Z [4200/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u1.c.obj 2025-07-24T05:01:15.0102268Z [4201/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u2.c.obj 2025-07-24T05:01:15.0271275Z [4202/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u2.c.obj 2025-07-24T05:01:15.0350789Z [4203/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u1.c.obj 2025-07-24T05:01:15.3112151Z [4204/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u8.c.obj 2025-07-24T05:01:16.0121501Z [4205/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u5.c.obj 2025-07-24T05:01:16.0184348Z [4206/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u2.c.obj 2025-07-24T05:01:16.0318014Z [4207/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u1.c.obj 2025-07-24T05:01:16.0693976Z [4208/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u3.c.obj 2025-07-24T05:01:16.1023586Z [4209/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u1.c.obj 2025-07-24T05:01:16.1440809Z [4210/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u6.c.obj 2025-07-24T05:01:16.1454931Z [4211/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u1.c.obj 2025-07-24T05:01:16.1674042Z [4212/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u2.c.obj 2025-07-24T05:01:16.2322665Z [4213/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u4.c.obj 2025-07-24T05:01:16.2349578Z [4214/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u3.c.obj 2025-07-24T05:01:16.2771627Z [4215/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u6.c.obj 2025-07-24T05:01:16.2872099Z [4216/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u5.c.obj 2025-07-24T05:01:16.3435980Z [4217/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-scalar.c.obj 2025-07-24T05:01:16.3767172Z [4218/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u2.c.obj 2025-07-24T05:01:16.3852213Z [4219/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u1.c.obj 2025-07-24T05:01:16.4006398Z [4220/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-scalar-log.c.obj 2025-07-24T05:01:16.4104125Z [4221/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u1.c.obj 2025-07-24T05:01:16.4731373Z [4222/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u2.c.obj 2025-07-24T05:01:16.5017949Z [4223/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c2-minmax-scalar-2x.c.obj 2025-07-24T05:01:16.5125330Z [4224/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-scalar-2x.c.obj 2025-07-24T05:01:16.5249473Z [4225/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u1.c.obj 2025-07-24T05:01:16.5476494Z [4226/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u2.c.obj 2025-07-24T05:01:16.6110188Z [4227/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u4.c.obj 2025-07-24T05:01:16.6471444Z [4228/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u2.c.obj 2025-07-24T05:01:16.6571712Z [4229/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u2.c.obj 2025-07-24T05:01:16.6641618Z [4230/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u2.c.obj 2025-07-24T05:01:16.7070884Z [4231/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u2.c.obj 2025-07-24T05:01:16.7415679Z [4232/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u2.c.obj 2025-07-24T05:01:16.8479576Z [4233/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut64-p2-div-u4.c.obj 2025-07-24T05:01:16.8493021Z [4234/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut2048-p1-div-u2.c.obj 2025-07-24T05:01:16.9485593Z [4235/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut64-p2-div-u1.c.obj 2025-07-24T05:01:16.9501458Z [4236/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut2048-p1-div-u1.c.obj 2025-07-24T05:01:16.9515236Z [4237/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut2048-p1-div-u4.c.obj 2025-07-24T05:01:17.0387823Z [4238/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u1.c.obj 2025-07-24T05:01:17.0810879Z [4239/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u4.c.obj 2025-07-24T05:01:17.0824849Z [4240/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u2.c.obj 2025-07-24T05:01:17.0893751Z [4241/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u2.c.obj 2025-07-24T05:01:17.1020242Z [4242/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u4.c.obj 2025-07-24T05:01:17.2894597Z [4243/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-1x2-minmax-scalar.c.obj 2025-07-24T05:01:17.3111733Z [4244/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-1x8-minmax-scalar.c.obj 2025-07-24T05:01:17.3215267Z [4245/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-1x4-minmax-scalar.c.obj 2025-07-24T05:01:17.3489035Z [4246/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\python_comm_hook.cpp.obj 2025-07-24T05:01:17.3752774Z [4247/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-2x4-minmax-scalar.c.obj 2025-07-24T05:01:17.3837686Z [4248/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-2x2-minmax-scalar.c.obj 2025-07-24T05:01:17.4377572Z [4249/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-2x8-minmax-scalar.c.obj 2025-07-24T05:01:17.5527762Z [4250/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-4x4-minmax-scalar.c.obj 2025-07-24T05:01:17.6944028Z [4251/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x8-minmax-scalar.c.obj 2025-07-24T05:01:17.7016361Z [4252/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x2-minmax-scalar.c.obj 2025-07-24T05:01:17.7070974Z [4253/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4-minmax-scalar.c.obj 2025-07-24T05:01:17.7156695Z [4254/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x2-minmax-scalar.c.obj 2025-07-24T05:01:17.7318655Z [4255/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x8-minmax-scalar.c.obj 2025-07-24T05:01:17.8062524Z [4256/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x1-minmax-scalar.c.obj 2025-07-24T05:01:17.9062731Z [4257/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8-minmax-scalar.c.obj 2025-07-24T05:01:18.0072849Z [4258/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4-minmax-scalar.c.obj 2025-07-24T05:01:18.0090967Z [4259/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x2-minmax-scalar.c.obj 2025-07-24T05:01:18.0105494Z [4260/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x2-minmax-scalar.c.obj 2025-07-24T05:01:18.0768388Z [4261/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x8-minmax-scalar.c.obj 2025-07-24T05:01:18.1201399Z [4262/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x8-minmax-scalar.c.obj 2025-07-24T05:01:18.2760520Z [4263/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4-minmax-scalar.c.obj 2025-07-24T05:01:18.3656243Z [4264/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x8-minmax-scalar.c.obj 2025-07-24T05:01:18.4167070Z [4265/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x8-minmax-scalar.c.obj 2025-07-24T05:01:18.4332095Z [4266/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x8-minmax-scalar.c.obj 2025-07-24T05:01:18.4401828Z [4267/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4-minmax-scalar.c.obj 2025-07-24T05:01:18.5036525Z [4268/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:18.5051005Z [4269/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:18.6138254Z [4270/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:18.6151559Z [4271/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:18.6164581Z [4272/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:18.6177662Z [4273/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:18.6942956Z [4274/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:18.7003017Z [4275/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:18.7343515Z [4276/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:18.8682889Z [4277/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:18.8816052Z [4278/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:18.9039828Z [4279/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:19.0210421Z [4280/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:19.0224560Z [4281/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:19.0239380Z [4282/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:19.0252354Z [4283/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:19.1182622Z [4284/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:19.1270085Z [4285/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:19.2843079Z [4286/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:19.2864511Z [4287/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:19.2876428Z [4288/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:19.2932165Z [4289/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:19.2944526Z [4290/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:19.3130944Z [4291/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:19.5886157Z [4292/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:19.6018918Z [4293/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:19.6088344Z [4294/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:19.6104000Z [4295/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:19.6167172Z [4296/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:19.6181740Z [4297/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:19.7123128Z [4298/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:19.8424073Z [4299/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:19.8439305Z [4300/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:19.8452901Z [4301/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:19.8465203Z [4302/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:19.8520815Z [4303/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:19.9234954Z [4304/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:19.9808308Z [4305/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:19.9876429Z [4306/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:20.0475758Z [4307/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:20.0489236Z [4308/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:20.0501069Z [4309/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u2.c.obj 2025-07-24T05:01:20.0513731Z [4310/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:20.0964113Z [4311/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u3.c.obj 2025-07-24T05:01:20.4336978Z [4312/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-goi-scalar.c.obj 2025-07-24T05:01:20.4399188Z [4313/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-gio-scalar.c.obj 2025-07-24T05:01:20.4411282Z [4314/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-gio-scalar.c.obj 2025-07-24T05:01:20.4433698Z [4315/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-goi-scalar.c.obj 2025-07-24T05:01:20.4448197Z [4316/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-scalar.c.obj 2025-07-24T05:01:20.4469522Z [4317/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-gio-scalar.c.obj 2025-07-24T05:01:20.6326298Z [4318/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-gio-scalar.c.obj 2025-07-24T05:01:20.6383150Z [4319/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x16c8-gemm-goi-scalar.c.obj 2025-07-24T05:01:20.6449149Z [4320/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-gio-scalar.c.obj 2025-07-24T05:01:20.6468296Z [4321/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-goi-scalar.c.obj 2025-07-24T05:01:20.6530146Z [4322/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-gio-scalar.c.obj 2025-07-24T05:01:20.6597770Z [4323/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-scalar.c.obj 2025-07-24T05:01:20.8451348Z [4324/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-4p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:20.8511538Z [4325/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x32c8-gemm-goi-scalar.c.obj 2025-07-24T05:01:20.9398689Z [4326/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:20.9467416Z [4327/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:20.9483124Z [4328/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:20.9499514Z [4329/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:20.9838359Z [4330/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:20.9935151Z [4331/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:21.1353028Z [4332/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:21.1414760Z [4333/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:21.1753701Z [4334/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:21.2639717Z [4335/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:21.2699304Z [4336/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:21.2758734Z [4337/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:21.2879956Z [4338/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:21.3137826Z [4339/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:21.3223290Z [4340/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:21.4507343Z [4341/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:21.4522168Z [4342/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:21.4722554Z [4343/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:21.5271579Z [4344/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:21.5330617Z [4345/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:21.5460124Z [4346/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:21.5979837Z [4347/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:21.6151777Z [4348/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:21.6226344Z [4349/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:21.7958967Z [4350/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:21.7980639Z [4351/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:21.7993232Z [4352/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:21.8530803Z [4353/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:21.8636757Z [4354/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:21.8713588Z [4355/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:21.9327348Z [4356/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:21.9381568Z [4357/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:21.9394955Z [4358/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:22.0501601Z [4359/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:22.0527665Z [4360/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:22.0781477Z [4361/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:22.2139970Z [4362/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:22.2155414Z [4363/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:22.2552654Z [4364/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:22.2835366Z [4365/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:22.3060617Z [4366/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:22.3175821Z [4367/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:22.4869091Z [4368/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:22.4882107Z [4369/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:22.4894643Z [4370/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:22.4945531Z [4371/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:22.5145021Z [4372/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:22.5257111Z [4373/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:22.6846976Z [4374/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:22.6908177Z [4375/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:22.6963572Z [4376/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:22.6982087Z [4377/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:22.7362553Z [4378/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:22.7669249Z [4379/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:22.8365070Z [4380/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:22.8463846Z [4381/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:22.8477195Z [4382/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:22.8489415Z [4383/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:22.8909241Z [4384/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:23.0314184Z [4385/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:23.0406814Z [4386/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:23.0465789Z [4387/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:23.0535092Z [4388/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:23.0911756Z [4389/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:23.0965085Z [4390/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:23.1778177Z [4391/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:23.3171367Z [4392/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:23.3183640Z [4393/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:23.3195352Z [4394/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:23.3207407Z [4395/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:23.3219419Z [4396/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:23.5319319Z [4397/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:23.6126209Z [4398/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:23.7189904Z [4399/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:23.7248011Z [4400/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:23.7261068Z [4401/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:23.7538118Z [4402/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:23.7594159Z [4403/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:23.7704322Z [4404/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:23.9990318Z [4405/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x8c8-gemm-gio-scalar.c.obj 2025-07-24T05:01:24.0053115Z [4406/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x8c8-gemm-goi-scalar.c.obj 2025-07-24T05:01:24.0068425Z [4407/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x16c8-gemm-gio-scalar.c.obj 2025-07-24T05:01:24.0713445Z [4408/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u2.c.obj 2025-07-24T05:01:24.0809434Z [4409/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u2.c.obj 2025-07-24T05:01:24.2002430Z [4410/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u2.c.obj 2025-07-24T05:01:24.2016357Z [4411/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u1.c.obj 2025-07-24T05:01:24.2071811Z [4412/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u2.c.obj 2025-07-24T05:01:24.2087242Z [4413/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u2.c.obj 2025-07-24T05:01:24.2117079Z [4414/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u1.c.obj 2025-07-24T05:01:24.2217625Z [4415/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u1.c.obj 2025-07-24T05:01:24.3280665Z [4416/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u1.c.obj 2025-07-24T05:01:24.3339279Z [4417/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u2.c.obj 2025-07-24T05:01:24.3407419Z [4418/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u2.c.obj 2025-07-24T05:01:24.3421823Z [4419/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-07-24T05:01:24.3478386Z [4420/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-07-24T05:01:24.4189022Z [4421/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:24.4547414Z [4422/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:24.4635479Z [4423/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:24.5346081Z [4424/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:24.5447402Z [4425/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:24.5516605Z [4426/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:24.5681112Z [4427/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:24.5910617Z [4428/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:24.6030763Z [4429/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:24.7887740Z [4430/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:24.7902207Z [4431/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:24.7964361Z [4432/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:24.7976760Z [4433/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:24.8082557Z [4434/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:24.8097407Z [4435/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:25.0110582Z [4436/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:25.0254085Z [4437/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:25.0624528Z [4438/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:25.0644319Z [4439/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:25.1038822Z [4440/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:25.2203451Z [4441/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:25.2223186Z [4442/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:25.2237368Z [4443/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:25.2366565Z [4444/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:25.3444073Z [4445/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:25.3463613Z [4446/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:25.3732677Z [4447/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:25.4027655Z [4448/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:25.4099932Z [4449/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:25.4601980Z [4450/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:25.4717363Z [4451/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:25.4733711Z [4452/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:25.5081233Z [4453/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:25.5470530Z [4454/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:25.5563897Z [4455/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:25.5882099Z [4456/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:25.6691552Z [4457/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:25.6777035Z [4458/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:25.6884272Z [4459/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:25.7690891Z [4460/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:25.7750703Z [4461/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:25.7767826Z [4462/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:25.8149032Z [4463/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u2.c.obj 2025-07-24T05:01:25.8311198Z [4464/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:25.8572087Z [4465/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u3.c.obj 2025-07-24T05:01:25.9445438Z [4466/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:25.9459316Z [4467/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:25.9472502Z [4468/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:25.9530283Z [4469/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:26.0319259Z [4470/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:26.2129428Z [4471/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:26.2525458Z [4472/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:26.2582864Z [4473/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:26.2601106Z [4474/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:26.2667658Z [4475/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:26.2803863Z [4476/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:26.3519352Z [4477/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:26.4019954Z [4478/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:26.4738298Z [4479/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:26.4809065Z [4480/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:26.4957258Z [4481/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:26.4975144Z [4482/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:26.5041163Z [4483/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:26.6070266Z [4484/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:26.6954349Z [4485/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:26.6975876Z [4486/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:26.7031418Z [4487/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:26.7085789Z [4488/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:26.7232182Z [4489/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:26.7547338Z [4490/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:26.8309827Z [4491/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:26.8557765Z [4492/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:26.9122463Z [4493/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:26.9142707Z [4494/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:26.9198585Z [4495/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:26.9596493Z [4496/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:26.9809564Z [4497/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:27.0211363Z [4498/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:27.0601267Z [4499/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:27.0721858Z [4500/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:27.1027232Z [4501/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:27.1091633Z [4502/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:27.1292166Z [4503/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:27.2341503Z [4504/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:27.2409641Z [4505/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:27.2567031Z [4506/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:27.2621709Z [4507/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:27.2674389Z [4508/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:27.3001001Z [4509/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:27.3785467Z [4510/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:27.4126876Z [4511/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:27.4146736Z [4512/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:27.4893344Z [4513/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:27.4908584Z [4514/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:27.5385674Z [4515/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:27.5552020Z [4516/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:27.5726464Z [4517/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-07-24T05:01:27.5824354Z [4518/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-24T05:01:27.6416764Z [4519/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-rndnu-scalar.c.obj 2025-07-24T05:01:27.6472421Z [4520/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-24T05:01:27.6552267Z [4521/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u1.c.obj 2025-07-24T05:01:27.6872451Z [4522/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u2.c.obj 2025-07-24T05:01:27.7177288Z [4523/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u2.c.obj 2025-07-24T05:01:27.7331009Z [4524/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u2.c.obj 2025-07-24T05:01:27.7995132Z [4525/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u2.c.obj 2025-07-24T05:01:27.8016420Z [4526/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u1.c.obj 2025-07-24T05:01:27.8034417Z [4527/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u2.c.obj 2025-07-24T05:01:27.8458851Z [4528/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u1.c.obj 2025-07-24T05:01:27.9137738Z [4529/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u2.c.obj 2025-07-24T05:01:27.9291287Z [4530/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-07-24T05:01:27.9338203Z [4531/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-07-24T05:01:27.9555778Z [4532/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c2.c.obj 2025-07-24T05:01:27.9570251Z [4533/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u1.c.obj 2025-07-24T05:01:28.0542101Z [4534/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c4.c.obj 2025-07-24T05:01:28.0555631Z [4535/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c2.c.obj 2025-07-24T05:01:28.0619796Z [4536/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c4.c.obj 2025-07-24T05:01:28.0755617Z [4537/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u1.c.obj 2025-07-24T05:01:28.0830398Z [4538/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u2.c.obj 2025-07-24T05:01:28.1053464Z [4539/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u2.c.obj 2025-07-24T05:01:28.1800267Z [4540/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u8.c.obj 2025-07-24T05:01:28.2115222Z [4541/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u16.c.obj 2025-07-24T05:01:28.2549302Z [4542/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u2.c.obj 2025-07-24T05:01:28.2606328Z [4543/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u4.c.obj 2025-07-24T05:01:28.2620379Z [4544/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u4.c.obj 2025-07-24T05:01:28.2633676Z [4545/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u4.c.obj 2025-07-24T05:01:28.2981616Z [4546/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-gio-scalar.c.obj 2025-07-24T05:01:28.4071732Z [4547/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u4.c.obj 2025-07-24T05:01:28.4469040Z [4548/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x4-scalar-int.c.obj 2025-07-24T05:01:28.4485883Z [4549/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x2-scalar-int.c.obj 2025-07-24T05:01:28.4593045Z [4550/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u4.c.obj 2025-07-24T05:01:28.4658063Z [4551/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x1-scalar-int.c.obj 2025-07-24T05:01:28.4674738Z [4552/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x2-scalar-int.c.obj 2025-07-24T05:01:28.5125956Z [4553/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x1-scalar-int.c.obj 2025-07-24T05:01:28.5589761Z [4554/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x4-scalar-int.c.obj 2025-07-24T05:01:28.5604820Z [4555/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x2-scalar-int.c.obj 2025-07-24T05:01:28.6054586Z [4556/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x8-gemm-goi-scalar-int-u4.c.obj 2025-07-24T05:01:28.6225211Z [4557/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x32-gemm-goi-scalar-int-u4.c.obj 2025-07-24T05:01:28.6237553Z [4558/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x16-gemm-goi-scalar-int-u4.c.obj 2025-07-24T05:01:28.6293689Z [4559/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x2-scalar-int.c.obj 2025-07-24T05:01:28.6737955Z [4560/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x1-scalar-int.c.obj 2025-07-24T05:01:28.6823073Z [4561/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x4-scalar-int.c.obj 2025-07-24T05:01:28.7304338Z [4562/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x2-scalar-int.c.obj 2025-07-24T05:01:28.7373418Z [4563/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x4-scalar-int.c.obj 2025-07-24T05:01:28.7390366Z [4564/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x1-scalar-int.c.obj 2025-07-24T05:01:28.7517118Z [4565/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x2-scalar-int.c.obj 2025-07-24T05:01:28.7840784Z [4566/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-1x4-scalar.c.obj 2025-07-24T05:01:28.7949618Z [4567/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x1-scalar.c.obj 2025-07-24T05:01:28.8643677Z [4568/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x4-scalar.c.obj 2025-07-24T05:01:28.8663049Z [4569/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x1-scalar.c.obj 2025-07-24T05:01:28.8675357Z [4570/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x2-scalar.c.obj 2025-07-24T05:01:28.8729156Z [4571/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x2-scalar.c.obj 2025-07-24T05:01:28.9439290Z [4572/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-float.c.obj 2025-07-24T05:01:28.9667716Z [4573/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x4-scalar.c.obj 2025-07-24T05:01:28.9798945Z [4574/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-int.c.obj 2025-07-24T05:01:28.9858895Z [4575/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-float.c.obj 2025-07-24T05:01:28.9876900Z [4576/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-int.c.obj 2025-07-24T05:01:29.0141612Z [4577/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-float.c.obj 2025-07-24T05:01:29.0558975Z [4578/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-int.c.obj 2025-07-24T05:01:29.0727269Z [4579/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-float.c.obj 2025-07-24T05:01:29.0950568Z [4580/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-int.c.obj 2025-07-24T05:01:29.1889523Z [4581/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x3-gemm-goi-scalar-float-u4.c.obj 2025-07-24T05:01:29.1907586Z [4582/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x4-gemm-gio-scalar.c.obj 2025-07-24T05:01:29.1990728Z [4583/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x4-gemm-goi-scalar-int-u4.c.obj 2025-07-24T05:01:29.2099791Z [4584/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x2-gemm-goi-scalar-int-u4.c.obj 2025-07-24T05:01:29.2343189Z [4585/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x3-gemm-goi-scalar-int-u4.c.obj 2025-07-24T05:01:29.2735919Z [4586/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-scalar.c.obj 2025-07-24T05:01:29.3160667Z [4587/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-scalar-float-u4.c.obj 2025-07-24T05:01:29.3624881Z [4588/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-scalar-int-u4.c.obj 2025-07-24T05:01:29.3691310Z [4589/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-scalar.c.obj 2025-07-24T05:01:29.4391459Z [4590/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-scalar-float-u4.c.obj 2025-07-24T05:01:29.4405242Z [4591/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-2x-scalar.c.obj 2025-07-24T05:01:29.4417473Z [4592/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-3x-scalar.c.obj 2025-07-24T05:01:29.4469730Z [4593/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-scalar.c.obj 2025-07-24T05:01:29.4593071Z [4594/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-scalar-int-u4.c.obj 2025-07-24T05:01:29.4657660Z [4595/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-scalar.c.obj 2025-07-24T05:01:29.5513940Z [4596/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-float.c.obj 2025-07-24T05:01:29.5569693Z [4597/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-float.c.obj 2025-07-24T05:01:29.5581785Z [4598/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-int.c.obj 2025-07-24T05:01:29.5635316Z [4599/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-int.c.obj 2025-07-24T05:01:29.5756173Z [4600/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-float.c.obj 2025-07-24T05:01:29.5769924Z [4601/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-int.c.obj 2025-07-24T05:01:29.6677641Z [4602/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-float.c.obj 2025-07-24T05:01:29.6692199Z [4603/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-int.c.obj 2025-07-24T05:01:29.6786052Z [4604/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-float.c.obj 2025-07-24T05:01:29.6859524Z [4605/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-float.c.obj 2025-07-24T05:01:29.6873076Z [4606/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-int.c.obj 2025-07-24T05:01:29.7434242Z [4607/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-float.c.obj 2025-07-24T05:01:29.7735347Z [4608/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-int.c.obj 2025-07-24T05:01:29.7909872Z [4609/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-int.c.obj 2025-07-24T05:01:29.7925004Z [4610/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-float.c.obj 2025-07-24T05:01:29.7993159Z [4611/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-float.c.obj 2025-07-24T05:01:29.8135426Z [4612/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-int.c.obj 2025-07-24T05:01:29.8547703Z [4613/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-float.c.obj 2025-07-24T05:01:29.9111266Z [4614/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-int.c.obj 2025-07-24T05:01:29.9190840Z [4615/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-int.c.obj 2025-07-24T05:01:29.9251340Z [4616/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-int.c.obj 2025-07-24T05:01:29.9360443Z [4617/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-float.c.obj 2025-07-24T05:01:29.9385071Z [4618/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-float.c.obj 2025-07-24T05:01:29.9599039Z [4619/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-float.c.obj 2025-07-24T05:01:30.0246610Z [4620/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-int.c.obj 2025-07-24T05:01:30.0323637Z [4621/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-float.c.obj 2025-07-24T05:01:30.0439408Z [4622/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-float.c.obj 2025-07-24T05:01:30.0616061Z [4623/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-int.c.obj 2025-07-24T05:01:30.0736567Z [4624/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-float.c.obj 2025-07-24T05:01:30.0751400Z [4625/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-int.c.obj 2025-07-24T05:01:30.1431876Z [4626/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-float.c.obj 2025-07-24T05:01:30.1448867Z [4627/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-int.c.obj 2025-07-24T05:01:30.1652475Z [4628/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-1x1.c.obj 2025-07-24T05:01:30.2047754Z [4629/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse-acc2.c.obj 2025-07-24T05:01:30.2134578Z [4630/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse.c.obj 2025-07-24T05:01:30.2181961Z [4631/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse-acc2.c.obj 2025-07-24T05:01:30.2775089Z [4632/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse-acc2.c.obj 2025-07-24T05:01:30.2864379Z [4633/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse.c.obj 2025-07-24T05:01:30.3190885Z [4634/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse-acc2.c.obj 2025-07-24T05:01:30.4903001Z [4635/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse-acc2.c.obj 2025-07-24T05:01:30.4916388Z [4636/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse.c.obj 2025-07-24T05:01:30.4978148Z [4637/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse-acc2.c.obj 2025-07-24T05:01:30.5035041Z [4638/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse-acc2.c.obj 2025-07-24T05:01:30.5088660Z [4639/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse.c.obj 2025-07-24T05:01:30.5146864Z [4640/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse.c.obj 2025-07-24T05:01:30.6282212Z [4641/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse-acc2.c.obj 2025-07-24T05:01:30.6295498Z [4642/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse.c.obj 2025-07-24T05:01:30.6345421Z [4643/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse-acc2.c.obj 2025-07-24T05:01:30.6455554Z [4644/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse.c.obj 2025-07-24T05:01:30.6512022Z [4645/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse-acc2.c.obj 2025-07-24T05:01:30.6638493Z [4646/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse.c.obj 2025-07-24T05:01:30.7655220Z [4647/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse.c.obj 2025-07-24T05:01:30.7670927Z [4648/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse-acc2.c.obj 2025-07-24T05:01:30.7729942Z [4649/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse-acc2.c.obj 2025-07-24T05:01:30.7819279Z [4650/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse.c.obj 2025-07-24T05:01:30.7908790Z [4651/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse-acc2.c.obj 2025-07-24T05:01:30.8099549Z [4652/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse-acc2.c.obj 2025-07-24T05:01:31.0688856Z [4653/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse-acc2.c.obj 2025-07-24T05:01:31.0707275Z [4654/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse.c.obj 2025-07-24T05:01:31.0966741Z [4655/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse-acc2.c.obj 2025-07-24T05:01:31.1404556Z [4656/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc2.c.obj 2025-07-24T05:01:31.2337251Z [4657/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse.c.obj 2025-07-24T05:01:31.2351746Z [4658/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc4.c.obj 2025-07-24T05:01:31.2365146Z [4659/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc3.c.obj 2025-07-24T05:01:31.2379259Z [4660/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse-acc2.c.obj 2025-07-24T05:01:31.3185358Z [4661/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-1x4.c.obj 2025-07-24T05:01:31.3770319Z [4662/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-2x4.c.obj 2025-07-24T05:01:31.3832678Z [4663/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-4x4.c.obj 2025-07-24T05:01:31.3851213Z [4664/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-6x4.c.obj 2025-07-24T05:01:31.3917707Z [4665/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-3x4.c.obj 2025-07-24T05:01:31.4287188Z [4666/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-5x4.c.obj 2025-07-24T05:01:31.4477275Z [4667/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc2.c.obj 2025-07-24T05:01:31.5216218Z [4668/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-2x4-acc2.c.obj 2025-07-24T05:01:31.5329111Z [4669/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-2x4.c.obj 2025-07-24T05:01:31.5343530Z [4670/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4.c.obj 2025-07-24T05:01:31.5788813Z [4671/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc4.c.obj 2025-07-24T05:01:31.5850317Z [4672/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-3x4.c.obj 2025-07-24T05:01:31.5975481Z [4673/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-4x4.c.obj 2025-07-24T05:01:31.6497766Z [4674/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc2.c.obj 2025-07-24T05:01:31.7623256Z [4675/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc4.c.obj 2025-07-24T05:01:31.7637699Z [4676/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc3.c.obj 2025-07-24T05:01:31.7779715Z [4677/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-1x4.c.obj 2025-07-24T05:01:31.7793712Z [4678/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-2x4-acc2.c.obj 2025-07-24T05:01:31.7919828Z [4679/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc5.c.obj 2025-07-24T05:01:31.7985015Z [4680/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-2x4-acc3.c.obj 2025-07-24T05:01:31.9023386Z [4681/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-2x4.c.obj 2025-07-24T05:01:31.9080471Z [4682/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-3x4-acc2.c.obj 2025-07-24T05:01:31.9362006Z [4683/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-5x4.c.obj 2025-07-24T05:01:31.9422598Z [4684/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-4x4-acc2.c.obj 2025-07-24T05:01:31.9435573Z [4685/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-3x4.c.obj 2025-07-24T05:01:31.9494980Z [4686/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc2.c.obj 2025-07-24T05:01:32.0581920Z [4687/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc3.c.obj 2025-07-24T05:01:32.0649893Z [4688/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc4.c.obj 2025-07-24T05:01:32.0913421Z [4689/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc5.c.obj 2025-07-24T05:01:32.1053373Z [4690/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4.c.obj 2025-07-24T05:01:32.1122089Z [4691/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4-acc3.c.obj 2025-07-24T05:01:32.1271476Z [4692/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4-acc2.c.obj 2025-07-24T05:01:32.2707414Z [4693/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-dup.c.obj 2025-07-24T05:01:32.3106965Z [4694/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-3x4-acc2.c.obj 2025-07-24T05:01:32.3356762Z [4695/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-3x4.c.obj 2025-07-24T05:01:32.4027792Z [4696/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-dup.c.obj 2025-07-24T05:01:32.4040832Z [4697/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-load1.c.obj 2025-07-24T05:01:32.4187686Z [4698/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8s4-minmax-sse.c.obj 2025-07-24T05:01:32.4254432Z [4699/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8s4-minmax-sse.c.obj 2025-07-24T05:01:32.5200113Z [4700/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8s4-minmax-sse.c.obj 2025-07-24T05:01:32.5263138Z [4701/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-dup.c.obj 2025-07-24T05:01:32.6211662Z [4702/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-load1.c.obj 2025-07-24T05:01:32.6403117Z [4703/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-dup.c.obj 2025-07-24T05:01:32.6892578Z [4704/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8s4-minmax-sse.c.obj 2025-07-24T05:01:32.6910095Z [4705/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x2c4-minmax-sse.c.obj 2025-07-24T05:01:32.7866671Z [4706/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8s4-minmax-sse.c.obj 2025-07-24T05:01:32.8054111Z [4707/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-load1.c.obj 2025-07-24T05:01:32.8135754Z [4708/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-dup.c.obj 2025-07-24T05:01:32.8300670Z [4709/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-dup.c.obj 2025-07-24T05:01:32.8508813Z [4710/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-load1.c.obj 2025-07-24T05:01:32.8570219Z [4711/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8s4-minmax-sse.c.obj 2025-07-24T05:01:32.9176312Z [4712/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-dup.c.obj 2025-07-24T05:01:32.9780073Z [4713/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-load1.c.obj 2025-07-24T05:01:33.0002773Z [4714/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8s4-minmax-sse.c.obj 2025-07-24T05:01:33.0907951Z [4715/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8s4-minmax-sse.c.obj 2025-07-24T05:01:33.1045479Z [4716/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-dup.c.obj 2025-07-24T05:01:33.1460852Z [4717/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-load1.c.obj 2025-07-24T05:01:33.1838699Z [4718/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-load1.c.obj 2025-07-24T05:01:33.1852034Z [4719/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-dup.c.obj 2025-07-24T05:01:33.2078001Z [4720/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8s4-minmax-sse.c.obj 2025-07-24T05:01:33.3041525Z [4721/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-dup.c.obj 2025-07-24T05:01:33.3171512Z [4722/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-load1.c.obj 2025-07-24T05:01:33.3248108Z [4723/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8s4-minmax-sse.c.obj 2025-07-24T05:01:33.3258311Z [4724/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p4.c.obj 2025-07-24T05:01:33.4296637Z [4725/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-dup.c.obj 2025-07-24T05:01:33.4943661Z [4726/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c4.c.obj 2025-07-24T05:01:33.6092085Z [4727/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-load1.c.obj 2025-07-24T05:01:33.6107742Z [4728/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8s4-minmax-sse.c.obj 2025-07-24T05:01:33.6183236Z [4729/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-dup.c.obj 2025-07-24T05:01:33.6314128Z [4730/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8s4-minmax-sse.c.obj 2025-07-24T05:01:33.6801742Z [4731/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8s4-minmax-sse.c.obj 2025-07-24T05:01:33.8734362Z [4732/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-dup.c.obj 2025-07-24T05:01:33.8818759Z [4733/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-dup.c.obj 2025-07-24T05:01:33.8861968Z [4734/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-load1.c.obj 2025-07-24T05:01:33.9891846Z [4735/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x2c4-minmax-sse.c.obj 2025-07-24T05:01:34.0160084Z [4736/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8s4-minmax-sse.c.obj 2025-07-24T05:01:34.0843628Z [4737/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x8-minmax-sse.c.obj 2025-07-24T05:01:34.1048327Z [4738/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8s4-minmax-sse.c.obj 2025-07-24T05:01:34.1176930Z [4739/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-dup.c.obj 2025-07-24T05:01:34.1191188Z [4740/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-load1.c.obj 2025-07-24T05:01:34.1663329Z [4741/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c32.c.obj 2025-07-24T05:01:34.2590298Z [4742/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u8-acc2.c.obj 2025-07-24T05:01:34.2627306Z [4743/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c64.c.obj 2025-07-24T05:01:34.2636119Z [4744/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u4.c.obj 2025-07-24T05:01:34.3604118Z [4745/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u12-acc3.c.obj 2025-07-24T05:01:34.3712599Z [4746/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc2.c.obj 2025-07-24T05:01:34.4013452Z [4747/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u4.c.obj 2025-07-24T05:01:34.4096686Z [4748/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u12-acc3.c.obj 2025-07-24T05:01:34.4185319Z [4749/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u8-acc2.c.obj 2025-07-24T05:01:34.4508424Z [4750/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc2.c.obj 2025-07-24T05:01:34.5612766Z [4751/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u4.c.obj 2025-07-24T05:01:34.5727291Z [4752/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u12-acc3.c.obj 2025-07-24T05:01:34.5982660Z [4753/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u8-acc2.c.obj 2025-07-24T05:01:34.5999791Z [4754/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc4.c.obj 2025-07-24T05:01:34.6406639Z [4755/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc2.c.obj 2025-07-24T05:01:34.6448105Z [4756/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u4.c.obj 2025-07-24T05:01:34.7314275Z [4757/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u8-acc2.c.obj 2025-07-24T05:01:34.7398921Z [4758/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc2.c.obj 2025-07-24T05:01:34.7404826Z [4759/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u12-acc3.c.obj 2025-07-24T05:01:34.7500433Z [4760/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-sse.c.obj 2025-07-24T05:01:34.7996259Z [4761/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-sse.c.obj 2025-07-24T05:01:34.8790706Z [4762/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-16x1-minmax-sse.c.obj 2025-07-24T05:01:34.8971541Z [4763/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-sse-u4.c.obj 2025-07-24T05:01:34.8997133Z [4764/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-sse-u4.c.obj 2025-07-24T05:01:34.9080670Z [4765/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-sse-u4.c.obj 2025-07-24T05:01:34.9374412Z [4766/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-sse-u4.c.obj 2025-07-24T05:01:35.0336954Z [4767/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u4.c.obj 2025-07-24T05:01:35.0354800Z [4768/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-sse-u4.c.obj 2025-07-24T05:01:35.0511139Z [4769/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-sse-u4.c.obj 2025-07-24T05:01:35.0584864Z [4770/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-sse-u4.c.obj 2025-07-24T05:01:35.1373693Z [4771/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-sse-u4.c.obj 2025-07-24T05:01:35.1650907Z [4772/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-sse-u4.c.obj 2025-07-24T05:01:35.1984034Z [4773/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u4.c.obj 2025-07-24T05:01:35.2062697Z [4774/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u4.c.obj 2025-07-24T05:01:35.2186581Z [4775/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u4.c.obj 2025-07-24T05:01:35.2308941Z [4776/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u4.c.obj 2025-07-24T05:01:35.3240140Z [4777/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-sse-u4.c.obj 2025-07-24T05:01:35.3395741Z [4778/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-sse-u4.c.obj 2025-07-24T05:01:35.3589391Z [4779/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u4.c.obj 2025-07-24T05:01:35.3614680Z [4780/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-sse-u4.c.obj 2025-07-24T05:01:35.3848357Z [4781/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u12.c.obj 2025-07-24T05:01:35.4128644Z [4782/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u16.c.obj 2025-07-24T05:01:35.4863777Z [4783/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-sse-u4.c.obj 2025-07-24T05:01:35.5017511Z [4784/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u4.c.obj 2025-07-24T05:01:35.5190790Z [4785/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c8-minmax-sse-2x.c.obj 2025-07-24T05:01:35.5499868Z [4786/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u4.c.obj 2025-07-24T05:01:35.5593995Z [4787/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u8.c.obj 2025-07-24T05:01:35.5826066Z [4788/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u4.c.obj 2025-07-24T05:01:35.6537290Z [4789/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u16.c.obj 2025-07-24T05:01:35.6663393Z [4790/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u4.c.obj 2025-07-24T05:01:35.6845623Z [4791/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u8.c.obj 2025-07-24T05:01:35.7161916Z [4792/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u4.c.obj 2025-07-24T05:01:35.7396606Z [4793/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u16.c.obj 2025-07-24T05:01:35.7480397Z [4794/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u8.c.obj 2025-07-24T05:01:35.7494444Z [4795/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-sse.c.obj 2025-07-24T05:01:35.8098543Z [4796/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u8.c.obj 2025-07-24T05:01:35.8607918Z [4797/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u16.c.obj 2025-07-24T05:01:35.8835978Z [4798/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u24.c.obj 2025-07-24T05:01:35.8974773Z [4799/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u8.c.obj 2025-07-24T05:01:35.9060769Z [4800/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u16.c.obj 2025-07-24T05:01:36.0110667Z [4801/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u32.c.obj 2025-07-24T05:01:36.0160617Z [4802/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u24.c.obj 2025-07-24T05:01:36.1119792Z [4803/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u8.c.obj 2025-07-24T05:01:36.1133937Z [4804/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vabs-sse2-u8.c.obj 2025-07-24T05:01:36.1157457Z [4805/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vneg-sse2-u8.c.obj 2025-07-24T05:01:36.1561152Z [4806/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u24.c.obj 2025-07-24T05:01:36.1706208Z [4807/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u8.c.obj 2025-07-24T05:01:36.1715950Z [4808/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u32.c.obj 2025-07-24T05:01:36.2604607Z [4809/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u8.c.obj 2025-07-24T05:01:36.2702381Z [4810/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u24.c.obj 2025-07-24T05:01:36.2827577Z [4811/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u16.c.obj 2025-07-24T05:01:36.3131928Z [4812/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u16.c.obj 2025-07-24T05:01:36.3464948Z [4813/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u4.c.obj 2025-07-24T05:01:36.3489345Z [4814/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u24.c.obj 2025-07-24T05:01:36.4603149Z [4815/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u8-acc2.c.obj 2025-07-24T05:01:36.4628602Z [4816/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc4.c.obj 2025-07-24T05:01:36.5089792Z [4817/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u4.c.obj 2025-07-24T05:01:36.5185330Z [4818/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u4.c.obj 2025-07-24T05:01:36.5219252Z [4819/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u4.c.obj 2025-07-24T05:01:36.5270885Z [4820/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u4.c.obj 2025-07-24T05:01:36.6201023Z [4821/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u8.c.obj 2025-07-24T05:01:36.6252432Z [4822/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u16.c.obj 2025-07-24T05:01:36.7006225Z [4823/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u16.c.obj 2025-07-24T05:01:36.7093583Z [4824/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u12.c.obj 2025-07-24T05:01:36.7198715Z [4825/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u8.c.obj 2025-07-24T05:01:36.7344812Z [4826/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u4.c.obj 2025-07-24T05:01:36.7752653Z [4827/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u4.c.obj 2025-07-24T05:01:36.8641621Z [4828/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u4.c.obj 2025-07-24T05:01:36.8719605Z [4829/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u4.c.obj 2025-07-24T05:01:36.8821019Z [4830/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u4.c.obj 2025-07-24T05:01:36.8913927Z [4831/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u4.c.obj 2025-07-24T05:01:36.9001462Z [4832/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u8.c.obj 2025-07-24T05:01:36.9252560Z [4833/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-lut64-p2-div-u4.c.obj 2025-07-24T05:01:37.0283381Z [4834/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-lut64-p2-div-u12.c.obj 2025-07-24T05:01:37.0360054Z [4835/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-lut64-p2-div-u16.c.obj 2025-07-24T05:01:37.0383148Z [4836/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u4.c.obj 2025-07-24T05:01:37.0661932Z [4837/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u8.c.obj 2025-07-24T05:01:37.0756245Z [4838/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u12.c.obj 2025-07-24T05:01:37.1110230Z [4839/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u16.c.obj 2025-07-24T05:01:37.1923259Z [4840/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-nr.c.obj 2025-07-24T05:01:37.2261600Z [4841/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-sse2-ld64.c.obj 2025-07-24T05:01:37.2361613Z [4842/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-sse2-ld64.c.obj 2025-07-24T05:01:37.2529075Z [4843/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-sse2-ld64.c.obj 2025-07-24T05:01:37.2767830Z [4844/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-sse2-ld128.c.obj 2025-07-24T05:01:37.2977414Z [4845/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-sse2-ld128.c.obj 2025-07-24T05:01:37.4446490Z [4846/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-sse2-ld64.c.obj 2025-07-24T05:01:37.4521795Z [4847/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse2-ld64.c.obj 2025-07-24T05:01:37.4566689Z [4848/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse2-ld64.c.obj 2025-07-24T05:01:37.4744755Z [4849/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse2-ld128.c.obj 2025-07-24T05:01:37.5070869Z [4850/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse2-ld64.c.obj 2025-07-24T05:01:37.5291693Z [4851/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse2-ld128.c.obj 2025-07-24T05:01:37.6838062Z [4852/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-sse2-ld128.c.obj 2025-07-24T05:01:37.6960943Z [4853/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse2-ld64.c.obj 2025-07-24T05:01:37.6964856Z [4854/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-sse2-ld64.c.obj 2025-07-24T05:01:37.7090292Z [4855/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-sse2-ld128.c.obj 2025-07-24T05:01:37.7798483Z [4856/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-sse2-ld128.c.obj 2025-07-24T05:01:37.7976267Z [4857/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-sse2-ld64.c.obj 2025-07-24T05:01:37.9278631Z [4858/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-sse2-ld128.c.obj 2025-07-24T05:01:37.9533789Z [4859/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-sse2-ld64.c.obj 2025-07-24T05:01:37.9605843Z [4860/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-sse2-ld128.c.obj 2025-07-24T05:01:37.9761369Z [4861/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-sse2-ld128.c.obj 2025-07-24T05:01:38.0173662Z [4862/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-sse2-ld128.c.obj 2025-07-24T05:01:38.0193260Z [4863/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-sse2-ld64.c.obj 2025-07-24T05:01:38.2089123Z [4864/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-sse2-ld128.c.obj 2025-07-24T05:01:38.2556931Z [4865/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:38.2578020Z [4866/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:38.2653822Z [4867/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:38.2811326Z [4868/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:38.3252432Z [4869/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:38.4242130Z [4870/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:38.5076478Z [4871/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:38.5102082Z [4872/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:38.5146846Z [4873/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:38.5151957Z [4874/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:38.5877652Z [4875/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:38.5897403Z [4876/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:38.6822484Z [4877/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:38.6842300Z [4878/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:38.7432671Z [4879/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:38.7794893Z [4880/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:38.8386351Z [4881/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u8.c.obj 2025-07-24T05:01:38.8500637Z [4882/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u16.c.obj 2025-07-24T05:01:38.8603435Z [4883/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:38.8860712Z [4884/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:38.9001874Z [4885/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u24.c.obj 2025-07-24T05:01:39.0640688Z [4886/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:39.0662321Z [4887/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:39.0994744Z [4888/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:39.1121598Z [4889/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:39.2055963Z [4890/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:39.2328390Z [4891/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:39.4185245Z [4892/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:39.4262638Z [4893/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:39.4282784Z [4894/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:39.4435601Z [4895/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:39.5039870Z [4896/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:39.5088759Z [4897/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:39.5879595Z [4898/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:39.5954432Z [4899/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:39.6478557Z [4900/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:39.6820439Z [4901/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:39.7580384Z [4902/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-sse2-mul16-add16.c.obj 2025-07-24T05:01:39.7649081Z [4903/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:39.7962889Z [4904/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:39.8095505Z [4905/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:39.8712770Z [4906/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:39.8956293Z [4907/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:39.9492439Z [4908/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:39.9644251Z [4909/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:39.9823445Z [4910/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:40.0010104Z [4911/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:40.0667113Z [4912/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:40.1367585Z [4913/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:40.1519451Z [4914/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:40.1666646Z [4915/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:40.1669362Z [4916/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:40.2046762Z [4917/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:40.2531979Z [4918/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:40.3561705Z [4919/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:40.3622980Z [4920/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:40.3712472Z [4921/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:40.4156100Z [4922/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:40.4230324Z [4923/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:40.4245131Z [4924/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:40.4944993Z [4925/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:40.5783019Z [4926/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:40.5828080Z [4927/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:40.6907896Z [4928/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:40.7250311Z [4929/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:40.7269565Z [4930/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:40.7466080Z [4931/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:40.7655268Z [4932/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:40.8405039Z [4933/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:40.8882425Z [4934/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:40.8908352Z [4935/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:40.9043491Z [4936/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:40.9402387Z [4937/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:40.9538750Z [4938/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:41.0295250Z [4939/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:41.0655561Z [4940/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:41.0764080Z [4941/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:41.0843248Z [4942/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:41.1210087Z [4943/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:41.1351908Z [4944/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-07-24T05:01:41.2040103Z [4945/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u24.c.obj 2025-07-24T05:01:41.2326907Z [4946/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-07-24T05:01:41.2431669Z [4947/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u24.c.obj 2025-07-24T05:01:41.2680639Z [4948/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u32.c.obj 2025-07-24T05:01:41.2803313Z [4949/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u16.c.obj 2025-07-24T05:01:41.2933935Z [4950/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u32.c.obj 2025-07-24T05:01:41.3952997Z [4951/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u16.c.obj 2025-07-24T05:01:41.4041786Z [4952/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-sse2-mul16-ld64-u16.c.obj 2025-07-24T05:01:41.4191693Z [4953/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-sse2-mul16-ld64-u16.c.obj 2025-07-24T05:01:41.5156228Z [4954/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:41.5887798Z [4955/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:41.5901908Z [4956/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:41.5991749Z [4957/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:41.6189650Z [4958/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:41.6758484Z [4959/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:41.6887674Z [4960/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:41.8089020Z [4961/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u8.c.obj 2025-07-24T05:01:41.8170774Z [4962/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u16.c.obj 2025-07-24T05:01:41.8315243Z [4963/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-24T05:01:41.8429494Z [4964/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u24.c.obj 2025-07-24T05:01:41.8702775Z [4965/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:41.8993412Z [4966/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:41.9992595Z [4967/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:42.0178548Z [4968/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.0247544Z [4969/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.0602054Z [4970/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:42.0691658Z [4971/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.1537685Z [4972/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:42.2029517Z [4973/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:42.2046427Z [4974/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.2121403Z [4975/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.2585025Z [4976/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.2823932Z [4977/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:42.3436909Z [4978/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:42.3889723Z [4979/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.4112158Z [4980/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:42.4114796Z [4981/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.4519942Z [4982/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.5074426Z [4983/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:42.5232193Z [4984/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.5752624Z [4985/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:42.5830953Z [4986/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.6000146Z [4987/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:42.6427755Z [4988/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.7087213Z [4989/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:42.7123249Z [4990/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.7531461Z [4991/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:42.8790143Z [4992/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.8827423Z [4993/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.8839669Z [4994/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:42.8851459Z [4995/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:42.8869698Z [4996/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:42.9911670Z [4997/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:43.0839760Z [4998/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:43.0854687Z [4999/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:43.0913392Z [5000/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:43.1010590Z [5001/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:43.1069605Z [5002/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:43.1287653Z [5003/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-24T05:01:43.2116581Z [5004/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u16.c.obj 2025-07-24T05:01:43.2176108Z [5005/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc2.c.obj 2025-07-24T05:01:43.2240791Z [5006/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc4.c.obj 2025-07-24T05:01:43.2298661Z [5007/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-24T05:01:43.2361700Z [5008/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-07-24T05:01:43.2519127Z [5009/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-07-24T05:01:43.3358894Z [5010/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u16.c.obj 2025-07-24T05:01:43.3442449Z [5011/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c16.c.obj 2025-07-24T05:01:43.3501098Z [5012/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u16.c.obj 2025-07-24T05:01:43.3739737Z [5013/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-sse2-mul16-ld64-u16.c.obj 2025-07-24T05:01:43.3864911Z [5014/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-sse2-mul16-ld64-u16.c.obj 2025-07-24T05:01:43.3937949Z [5015/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c16.c.obj 2025-07-24T05:01:43.4520254Z [5016/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-switch-sse2.c.obj 2025-07-24T05:01:43.4638077Z [5017/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-switch-sse2.c.obj 2025-07-24T05:01:43.4792181Z [5018/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-mov-sse2.c.obj 2025-07-24T05:01:43.4853031Z [5019/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-mov-sse2.c.obj 2025-07-24T05:01:43.4936576Z [5020/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-switch-sse2.c.obj 2025-07-24T05:01:43.5030595Z [5021/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\x16-transposec-4x8-sse2.c.obj 2025-07-24T05:01:43.5766588Z [5022/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u4-prfm.c.obj 2025-07-24T05:01:43.6001018Z [5023/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u8-prfm.c.obj 2025-07-24T05:01:43.6107681Z [5024/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u8.c.obj 2025-07-24T05:01:43.6121306Z [5025/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x2c4-gemm-goi-sse2-u4-prfm.c.obj 2025-07-24T05:01:43.6236795Z [5026/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u4.c.obj 2025-07-24T05:01:43.6299566Z [5027/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u4-prfm.c.obj 2025-07-24T05:01:43.7030519Z [5028/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u8-prfm.c.obj 2025-07-24T05:01:43.7340056Z [5029/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u8.c.obj 2025-07-24T05:01:43.7395013Z [5030/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u4.c.obj 2025-07-24T05:01:43.7486381Z [5031/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u4-prfm.c.obj 2025-07-24T05:01:43.7503076Z [5032/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u8.c.obj 2025-07-24T05:01:43.7563073Z [5033/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u8-prfm.c.obj 2025-07-24T05:01:43.8569492Z [5034/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u4.c.obj 2025-07-24T05:01:43.8636043Z [5035/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u4-prfm.c.obj 2025-07-24T05:01:43.8651094Z [5036/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u8.c.obj 2025-07-24T05:01:43.8710088Z [5037/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-mov-sse2.c.obj 2025-07-24T05:01:43.8723255Z [5038/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u8-prfm.c.obj 2025-07-24T05:01:43.8957405Z [5039/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-multi-sse2.c.obj 2025-07-24T05:01:43.9769069Z [5040/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-switch-sse2.c.obj 2025-07-24T05:01:43.9789211Z [5041/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-mov-sse2.c.obj 2025-07-24T05:01:43.9856623Z [5042/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-multi-sse2.c.obj 2025-07-24T05:01:43.9918549Z [5043/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-switch-sse2.c.obj 2025-07-24T05:01:43.9935581Z [5044/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-multi-sse2.c.obj 2025-07-24T05:01:44.0079776Z [5045/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-switch-sse2.c.obj 2025-07-24T05:01:44.0958447Z [5046/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-mov-sse2.c.obj 2025-07-24T05:01:44.0973151Z [5047/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-multi-sse2.c.obj 2025-07-24T05:01:44.1032550Z [5048/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-switch-sse2.c.obj 2025-07-24T05:01:44.1278073Z [5049/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc2.c.obj 2025-07-24T05:01:44.1334610Z [5050/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc3.c.obj 2025-07-24T05:01:44.1397487Z [5051/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc4.c.obj 2025-07-24T05:01:44.2329005Z [5052/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4.c.obj 2025-07-24T05:01:44.2407833Z [5053/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4.c.obj 2025-07-24T05:01:44.2424867Z [5054/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-3x4.c.obj 2025-07-24T05:01:44.2706048Z [5055/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-4x4.c.obj 2025-07-24T05:01:44.2806283Z [5056/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-6x4.c.obj 2025-07-24T05:01:44.2907898Z [5057/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-5x4.c.obj 2025-07-24T05:01:44.3971263Z [5058/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-ssse3-madd-prfm.c.obj 2025-07-24T05:01:44.4044764Z [5059/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-ssse3-madd.c.obj 2025-07-24T05:01:44.4102221Z [5060/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-ssse3-madd-prfm.c.obj 2025-07-24T05:01:44.4340374Z [5061/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-ssse3-madd-prfm.c.obj 2025-07-24T05:01:44.4499555Z [5062/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-ssse3-madd.c.obj 2025-07-24T05:01:44.4590074Z [5063/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-ssse3-madd-prfm.c.obj 2025-07-24T05:01:44.5140224Z [5064/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u16.c.obj 2025-07-24T05:01:44.5304582Z [5065/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc2.c.obj 2025-07-24T05:01:44.5366068Z [5066/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc4.c.obj 2025-07-24T05:01:44.5501132Z [5067/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u16.c.obj 2025-07-24T05:01:44.5841734Z [5068/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u16.c.obj 2025-07-24T05:01:44.6037260Z [5069/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c16.c.obj 2025-07-24T05:01:44.6386436Z [5070/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c32.c.obj 2025-07-24T05:01:44.6399089Z [5071/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u16.c.obj 2025-07-24T05:01:44.6539566Z [5072/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u16.c.obj 2025-07-24T05:01:44.6698459Z [5073/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u32.c.obj 2025-07-24T05:01:44.7032185Z [5074/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u16.c.obj 2025-07-24T05:01:44.7168093Z [5075/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u8.c.obj 2025-07-24T05:01:44.7545482Z [5076/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u24.c.obj 2025-07-24T05:01:44.7669813Z [5077/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u32.c.obj 2025-07-24T05:01:44.7953664Z [5078/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u16.c.obj 2025-07-24T05:01:44.8269932Z [5079/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u32.c.obj 2025-07-24T05:01:44.8331360Z [5080/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u24.c.obj 2025-07-24T05:01:44.8344240Z [5081/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u8.c.obj 2025-07-24T05:01:44.8753907Z [5082/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u16.c.obj 2025-07-24T05:01:44.8883816Z [5083/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u24.c.obj 2025-07-24T05:01:44.9711164Z [5084/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u32.c.obj 2025-07-24T05:01:44.9941965Z [5085/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-3x8-minmax-sse41-dup.c.obj 2025-07-24T05:01:45.0845045Z [5086/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8s4-minmax-sse41.c.obj 2025-07-24T05:01:45.0860679Z [5087/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-6x8-minmax-sse41-dup.c.obj 2025-07-24T05:01:45.0921462Z [5088/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8-minmax-sse41-load1.c.obj 2025-07-24T05:01:45.0937503Z [5089/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-5x8-minmax-sse41-dup.c.obj 2025-07-24T05:01:45.1376210Z [5090/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x8-minmax-sse41-dup.c.obj 2025-07-24T05:01:45.1503168Z [5091/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x8-minmax-sse41-load1.c.obj 2025-07-24T05:01:45.2232775Z [5092/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x8s4-minmax-sse41.c.obj 2025-07-24T05:01:45.2414276Z [5093/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2c4-minmax-sse41.c.obj 2025-07-24T05:01:45.3279464Z [5094/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8-minmax-sse41-load1.c.obj 2025-07-24T05:01:45.3292704Z [5095/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8-minmax-sse41-load1.c.obj 2025-07-24T05:01:45.3346787Z [5096/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8s4-minmax-sse41.c.obj 2025-07-24T05:01:45.3787878Z [5097/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8-minmax-sse41-dup.c.obj 2025-07-24T05:01:45.4672520Z [5098/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x2c4-minmax-sse41.c.obj 2025-07-24T05:01:45.4737267Z [5099/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8s4-minmax-sse41.c.obj 2025-07-24T05:01:45.4796234Z [5100/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8-minmax-sse41-load1.c.obj 2025-07-24T05:01:45.5017471Z [5101/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8-minmax-sse41-dup.c.obj 2025-07-24T05:01:45.5486021Z [5102/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u8.c.obj 2025-07-24T05:01:45.5758365Z [5103/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8s4-minmax-sse41.c.obj 2025-07-24T05:01:45.5906445Z [5104/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u16.c.obj 2025-07-24T05:01:45.5991637Z [5105/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u24.c.obj 2025-07-24T05:01:45.6170975Z [5106/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u4.c.obj 2025-07-24T05:01:45.6566601Z [5107/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u8.c.obj 2025-07-24T05:01:45.6745183Z [5108/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u4.c.obj 2025-07-24T05:01:45.7254316Z [5109/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u4.c.obj 2025-07-24T05:01:45.7436462Z [5110/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u8.c.obj 2025-07-24T05:01:45.7509936Z [5111/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u4.c.obj 2025-07-24T05:01:45.7664446Z [5112/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u8.c.obj 2025-07-24T05:01:45.8076663Z [5113/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u8.c.obj 2025-07-24T05:01:45.8151541Z [5114/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u12.c.obj 2025-07-24T05:01:45.8587777Z [5115/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u16.c.obj 2025-07-24T05:01:45.8717560Z [5116/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u4.c.obj 2025-07-24T05:01:45.8804753Z [5117/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u8.c.obj 2025-07-24T05:01:45.8914634Z [5118/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u12.c.obj 2025-07-24T05:01:45.9406542Z [5119/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u4.c.obj 2025-07-24T05:01:45.9950832Z [5120/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u16.c.obj 2025-07-24T05:01:46.0017041Z [5121/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u4.c.obj 2025-07-24T05:01:46.0038434Z [5122/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u4.c.obj 2025-07-24T05:01:46.0179827Z [5123/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u4.c.obj 2025-07-24T05:01:46.0244783Z [5124/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u4.c.obj 2025-07-24T05:01:46.0779650Z [5125/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-lut64-p2-div-u4.c.obj 2025-07-24T05:01:46.1334945Z [5126/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-lut64-p2-div-u16.c.obj 2025-07-24T05:01:46.1351714Z [5127/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-lut64-p2-div-u12.c.obj 2025-07-24T05:01:46.1366950Z [5128/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u4.c.obj 2025-07-24T05:01:46.1739303Z [5129/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u12.c.obj 2025-07-24T05:01:46.1812767Z [5130/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u8.c.obj 2025-07-24T05:01:46.1992288Z [5131/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u16.c.obj 2025-07-24T05:01:46.2885905Z [5132/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-sse41-ld64.c.obj 2025-07-24T05:01:46.2903905Z [5133/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-sse41-ld64.c.obj 2025-07-24T05:01:46.2923360Z [5134/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-sse41-ld128.c.obj 2025-07-24T05:01:46.3362671Z [5135/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-sse41-ld64.c.obj 2025-07-24T05:01:46.3376431Z [5136/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-sse41-ld64.c.obj 2025-07-24T05:01:46.3614113Z [5137/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-sse41-ld128.c.obj 2025-07-24T05:01:46.4374548Z [5138/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse41-ld128.c.obj 2025-07-24T05:01:46.4452460Z [5139/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse41-madd-prfm.c.obj 2025-07-24T05:01:46.4729165Z [5140/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse41-ld64.c.obj 2025-07-24T05:01:46.4998885Z [5141/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse41-madd.c.obj 2025-07-24T05:01:46.5079614Z [5142/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse41-ld128.c.obj 2025-07-24T05:01:46.5182716Z [5143/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse41-ld64.c.obj 2025-07-24T05:01:46.6068179Z [5144/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse41-madd.c.obj 2025-07-24T05:01:46.6239894Z [5145/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse41-ld64.c.obj 2025-07-24T05:01:46.6605815Z [5146/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse41-madd-prfm.c.obj 2025-07-24T05:01:46.6669136Z [5147/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse41-ld128.c.obj 2025-07-24T05:01:46.6682412Z [5148/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse41-madd.c.obj 2025-07-24T05:01:46.6762162Z [5149/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse41-madd-prfm.c.obj 2025-07-24T05:01:46.7537035Z [5150/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse41-ld64.c.obj 2025-07-24T05:01:46.7883819Z [5151/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse41-ld128.c.obj 2025-07-24T05:01:46.8145892Z [5152/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse41-madd-prfm.c.obj 2025-07-24T05:01:46.8244952Z [5153/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-sse41-ld128.c.obj 2025-07-24T05:01:46.8308798Z [5154/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse41-madd.c.obj 2025-07-24T05:01:46.8381053Z [5155/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-sse41-ld64.c.obj 2025-07-24T05:01:46.9144068Z [5156/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-sse41-ld128.c.obj 2025-07-24T05:01:46.9342229Z [5157/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-sse41-ld64.c.obj 2025-07-24T05:01:46.9649883Z [5158/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-sse41-ld128.c.obj 2025-07-24T05:01:46.9747805Z [5159/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-sse41-ld64.c.obj 2025-07-24T05:01:46.9813535Z [5160/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-sse41-ld128.c.obj 2025-07-24T05:01:46.9883801Z [5161/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-sse41-ld128.c.obj 2025-07-24T05:01:47.0558016Z [5162/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-sse41-ld128.c.obj 2025-07-24T05:01:47.0617978Z [5163/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-sse41-ld64.c.obj 2025-07-24T05:01:47.1021210Z [5164/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-sse41-ld128.c.obj 2025-07-24T05:01:47.1106177Z [5165/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-sse41-ld128.c.obj 2025-07-24T05:01:47.1190370Z [5166/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:47.1451529Z [5167/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:47.1956099Z [5168/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:47.2047669Z [5169/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:47.2734231Z [5170/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:47.2813585Z [5171/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:47.2995730Z [5172/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:47.3010466Z [5173/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:47.3405618Z [5174/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:47.3420837Z [5175/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:47.4295298Z [5176/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:47.4399415Z [5177/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:47.4418415Z [5178/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:47.4519120Z [5179/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:47.4720719Z [5180/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:47.4897284Z [5181/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:47.5721056Z [5182/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:47.5834337Z [5183/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:47.5852003Z [5184/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:47.5922780Z [5185/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:47.6179491Z [5186/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:47.6358827Z [5187/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:47.6628407Z [5188/7681] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\init.cpp.obj 2025-07-24T05:01:47.7154326Z [5189/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:47.7354810Z [5190/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:47.7419398Z [5191/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:47.7625857Z [5192/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:47.7642078Z [5193/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:47.7744496Z [5194/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:47.7814299Z [5195/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u8.c.obj 2025-07-24T05:01:47.8591476Z [5196/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u24.c.obj 2025-07-24T05:01:47.8609875Z [5197/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u32.c.obj 2025-07-24T05:01:47.8761642Z [5198/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:47.9014202Z [5199/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:47.9112729Z [5200/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:47.9165922Z [5201/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:47.9276620Z [5202/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:47.9969510Z [5203/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:48.0043961Z [5204/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:48.0319048Z [5205/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:48.0431476Z [5206/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:48.0542733Z [5207/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:48.0599451Z [5208/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:48.0949204Z [5209/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:48.1462894Z [5210/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:48.1617354Z [5211/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:48.1737546Z [5212/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:48.1876836Z [5213/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:48.1896564Z [5214/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:48.2005461Z [5215/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:48.2297569Z [5216/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:48.2901243Z [5217/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:48.3256601Z [5218/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:48.3316283Z [5219/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:48.3411910Z [5220/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:48.3425280Z [5221/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:48.3606495Z [5222/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-sse41-mul16-add16.c.obj 2025-07-24T05:01:48.3620705Z [5223/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:48.4369082Z [5224/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:48.4913055Z [5225/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:48.4927300Z [5226/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:48.4992355Z [5227/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:48.5054462Z [5228/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:48.5374489Z [5229/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:48.5479012Z [5230/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:48.5816835Z [5231/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:48.6614775Z [5232/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:48.6627970Z [5233/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:48.6641098Z [5234/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:48.6710429Z [5235/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:48.6840248Z [5236/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:48.6945511Z [5237/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:48.7612962Z [5238/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:48.8191708Z [5239/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:48.8241856Z [5240/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:48.8302465Z [5241/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:48.8468593Z [5242/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:48.8534841Z [5243/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:48.8597238Z [5244/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:48.9209138Z [5245/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:48.9780859Z [5246/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:48.9839010Z [5247/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:48.9894054Z [5248/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:48.9906873Z [5249/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:48.9962552Z [5250/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:49.0179580Z [5251/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:49.0650594Z [5252/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:49.1310930Z [5253/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:49.1372453Z [5254/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:49.1384738Z [5255/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:49.1397010Z [5256/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:49.1562351Z [5257/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:49.2080080Z [5258/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:49.2094731Z [5259/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:49.2753407Z [5260/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:49.2767171Z [5261/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:49.3517953Z [5262/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:49.3578829Z [5263/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c16.c.obj 2025-07-24T05:01:49.3597269Z [5264/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:49.3615714Z [5265/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:49.3637806Z [5266/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:49.4468231Z [5267/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c32.c.obj 2025-07-24T05:01:49.4843273Z [5268/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u24.c.obj 2025-07-24T05:01:49.4961691Z [5269/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u24.c.obj 2025-07-24T05:01:49.4983099Z [5270/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-07-24T05:01:49.5065805Z [5271/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-07-24T05:01:49.5148105Z [5272/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u32.c.obj 2025-07-24T05:01:49.5222771Z [5273/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-07-24T05:01:49.5674893Z [5274/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u32.c.obj 2025-07-24T05:01:49.6168031Z [5275/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-07-24T05:01:49.6280106Z [5276/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u24.c.obj 2025-07-24T05:01:49.6361835Z [5277/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-07-24T05:01:49.6487520Z [5278/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u32.c.obj 2025-07-24T05:01:49.6572518Z [5279/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-07-24T05:01:49.6574701Z [5280/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u24.c.obj 2025-07-24T05:01:49.7101245Z [5281/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u32.c.obj 2025-07-24T05:01:49.7570943Z [5282/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u16.c.obj 2025-07-24T05:01:49.7720075Z [5283/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u8.c.obj 2025-07-24T05:01:49.7828982Z [5284/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-sse41-mul16-ld64-u8.c.obj 2025-07-24T05:01:49.7890197Z [5285/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u8.c.obj 2025-07-24T05:01:49.8069117Z [5286/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u16.c.obj 2025-07-24T05:01:49.8266722Z [5287/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-sse41-mul16-ld64-u8.c.obj 2025-07-24T05:01:49.8450716Z [5288/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:49.9038330Z [5289/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:49.9147238Z [5290/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:49.9242954Z [5291/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:49.9310639Z [5292/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:49.9682318Z [5293/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:49.9744070Z [5294/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:50.0705639Z [5295/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:50.0959475Z [5296/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:50.0974823Z [5297/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:50.1031706Z [5298/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:50.1047346Z [5299/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:50.1617707Z [5300/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:50.1931646Z [5301/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:50.2263032Z [5302/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u8.c.obj 2025-07-24T05:01:50.2415605Z [5303/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:50.2428021Z [5304/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-24T05:01:50.2478638Z [5305/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:50.3014289Z [5306/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-24T05:01:50.3038292Z [5307/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u24.c.obj 2025-07-24T05:01:50.3122851Z [5308/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u32.c.obj 2025-07-24T05:01:50.3887710Z [5309/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:50.4007267Z [5310/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:50.4066700Z [5311/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:50.4087425Z [5312/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:50.4481594Z [5313/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:50.4540846Z [5314/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:50.4621985Z [5315/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:50.5552054Z [5316/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:50.5566549Z [5317/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:50.5630454Z [5318/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:50.5650995Z [5319/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:50.6117195Z [5320/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:50.6133049Z [5321/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:50.6396153Z [5322/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:50.7095648Z [5323/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:50.7243450Z [5324/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:50.7308394Z [5325/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:50.7324085Z [5326/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:50.7592108Z [5327/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:50.7754647Z [5328/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:50.7852981Z [5329/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:50.8677521Z [5330/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:50.8784723Z [5331/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:50.8841315Z [5332/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:50.9076497Z [5333/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:50.9139011Z [5334/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:50.9572599Z [5335/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:50.9719820Z [5336/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:51.0035808Z [5337/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:51.0149177Z [5338/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:51.0447212Z [5339/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:51.0556940Z [5340/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:51.0894040Z [5341/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:51.0967173Z [5342/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:51.0984214Z [5343/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:51.1441301Z [5344/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:51.1806818Z [5345/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:51.1821350Z [5346/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:51.2043448Z [5347/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-24T05:01:51.2294516Z [5348/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-07-24T05:01:51.2366488Z [5349/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-24T05:01:51.2669963Z [5350/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-07-24T05:01:51.2789005Z [5351/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-07-24T05:01:51.3240861Z [5352/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-07-24T05:01:51.3367032Z [5353/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-07-24T05:01:51.3543956Z [5354/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u8.c.obj 2025-07-24T05:01:51.3698783Z [5355/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u16.c.obj 2025-07-24T05:01:51.3942409Z [5356/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u8.c.obj 2025-07-24T05:01:51.4174544Z [5357/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u16.c.obj 2025-07-24T05:01:51.4316255Z [5358/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-07-24T05:01:51.4394621Z [5359/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-sse41-mul16-ld64-u8.c.obj 2025-07-24T05:01:51.4900430Z [5360/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c8.c.obj 2025-07-24T05:01:51.5021133Z [5361/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c8.c.obj 2025-07-24T05:01:51.5098989Z [5362/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-sse41-mul16-ld64-u8.c.obj 2025-07-24T05:01:51.5607932Z [5363/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u8.c.obj 2025-07-24T05:01:51.5621703Z [5364/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u24.c.obj 2025-07-24T05:01:51.5635227Z [5365/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-gio-sse41-u2.c.obj 2025-07-24T05:01:51.5692084Z [5366/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u32.c.obj 2025-07-24T05:01:51.6059280Z [5367/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u8.c.obj 2025-07-24T05:01:51.6177863Z [5368/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u16.c.obj 2025-07-24T05:01:51.6344320Z [5369/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u24.c.obj 2025-07-24T05:01:51.6867762Z [5370/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u32.c.obj 2025-07-24T05:01:51.7069521Z [5371/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx-acc2.c.obj 2025-07-24T05:01:51.7089042Z [5372/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx.c.obj 2025-07-24T05:01:51.7108641Z [5373/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx-acc2.c.obj 2025-07-24T05:01:51.7384359Z [5374/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx-acc2.c.obj 2025-07-24T05:01:51.7513853Z [5375/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx.c.obj 2025-07-24T05:01:51.7614628Z [5376/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx-acc2.c.obj 2025-07-24T05:01:51.8240086Z [5377/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx-acc2.c.obj 2025-07-24T05:01:51.8488295Z [5378/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx-acc2.c.obj 2025-07-24T05:01:51.8562698Z [5379/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx.c.obj 2025-07-24T05:01:51.8631518Z [5380/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx.c.obj 2025-07-24T05:01:51.8910471Z [5381/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx-acc2.c.obj 2025-07-24T05:01:51.8982025Z [5382/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx.c.obj 2025-07-24T05:01:51.9428191Z [5383/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx-acc2.c.obj 2025-07-24T05:01:51.9591205Z [5384/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx-acc2.c.obj 2025-07-24T05:01:51.9831431Z [5385/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx.c.obj 2025-07-24T05:01:51.9905471Z [5386/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx-acc2.c.obj 2025-07-24T05:01:52.0341781Z [5387/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx-acc2.c.obj 2025-07-24T05:01:52.0615810Z [5388/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx.c.obj 2025-07-24T05:01:52.0946655Z [5389/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx.c.obj 2025-07-24T05:01:52.1054559Z [5390/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx-acc2.c.obj 2025-07-24T05:01:52.1121619Z [5391/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx-acc2.c.obj 2025-07-24T05:01:52.1179730Z [5392/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx-acc2.c.obj 2025-07-24T05:01:52.1420076Z [5393/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx.c.obj 2025-07-24T05:01:52.1486036Z [5394/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u8.c.obj 2025-07-24T05:01:52.1733122Z [5395/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u16.c.obj 2025-07-24T05:01:52.2310772Z [5396/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u32.c.obj 2025-07-24T05:01:52.2679553Z [5397/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.2736135Z [5398/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.2794316Z [5399/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.2865610Z [5400/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.3041477Z [5401/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.3337087Z [5402/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.3744336Z [5403/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.5066018Z [5404/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.5121305Z [5405/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.5184435Z [5406/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.5267143Z [5407/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.5321967Z [5408/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.5433457Z [5409/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.5742021Z [5410/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.6572845Z [5411/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.6745006Z [5412/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.6946890Z [5413/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.7059969Z [5414/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.7160849Z [5415/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.7246804Z [5416/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.7308987Z [5417/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.7999556Z [5418/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.8049875Z [5419/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.8157267Z [5420/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.8522828Z [5421/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.9640528Z [5422/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-prelu\gen\f32-prelu-avx-2x16.c.obj 2025-07-24T05:01:52.9693688Z [5423/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.9824410Z [5424/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-5x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:52.9846475Z [5425/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-6x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:53.0085666Z [5426/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-7x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:53.0204918Z [5427/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:53.0426575Z [5428/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:53.1145366Z [5429/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:53.1227337Z [5430/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-8x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:53.1388107Z [5431/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:53.1448200Z [5432/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:53.1585144Z [5433/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:53.1747174Z [5434/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:53.2020836Z [5435/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x16-minmax-avx-broadcast.c.obj 2025-07-24T05:01:53.2421305Z [5436/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u8.c.obj 2025-07-24T05:01:53.2590216Z [5437/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u24.c.obj 2025-07-24T05:01:53.2603159Z [5438/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u16.c.obj 2025-07-24T05:01:53.2667148Z [5439/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u8.c.obj 2025-07-24T05:01:53.2754045Z [5440/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u16.c.obj 2025-07-24T05:01:53.3027079Z [5441/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u24.c.obj 2025-07-24T05:01:53.3188340Z [5442/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c16.c.obj 2025-07-24T05:01:53.3747417Z [5443/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u8.c.obj 2025-07-24T05:01:53.3815889Z [5444/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u16-acc2.c.obj 2025-07-24T05:01:53.3883897Z [5445/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c64.c.obj 2025-07-24T05:01:53.4142973Z [5446/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u8.c.obj 2025-07-24T05:01:53.4195245Z [5447/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u24-acc3.c.obj 2025-07-24T05:01:53.4210784Z [5448/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc2.c.obj 2025-07-24T05:01:53.4351663Z [5449/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u16-acc2.c.obj 2025-07-24T05:01:53.4923065Z [5450/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u24-acc3.c.obj 2025-07-24T05:01:53.5134063Z [5451/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc4.c.obj 2025-07-24T05:01:53.5256282Z [5452/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc2.c.obj 2025-07-24T05:01:53.5439209Z [5453/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u8.c.obj 2025-07-24T05:01:53.5452860Z [5454/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u24-acc3.c.obj 2025-07-24T05:01:53.5566594Z [5455/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u16-acc2.c.obj 2025-07-24T05:01:53.5822924Z [5456/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc2.c.obj 2025-07-24T05:01:53.6174066Z [5457/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u8.c.obj 2025-07-24T05:01:53.6454079Z [5458/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u24-acc3.c.obj 2025-07-24T05:01:53.6594918Z [5459/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u16-acc2.c.obj 2025-07-24T05:01:53.6787572Z [5460/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx-u8.c.obj 2025-07-24T05:01:53.6996058Z [5461/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx-u8.c.obj 2025-07-24T05:01:53.7066864Z [5462/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx-u8.c.obj 2025-07-24T05:01:53.7089060Z [5463/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc2.c.obj 2025-07-24T05:01:53.7506330Z [5464/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx-u8.c.obj 2025-07-24T05:01:53.7866070Z [5465/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx-u8.c.obj 2025-07-24T05:01:53.8024731Z [5466/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u8.c.obj 2025-07-24T05:01:53.8134554Z [5467/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx-u8.c.obj 2025-07-24T05:01:53.8351633Z [5468/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx-u8.c.obj 2025-07-24T05:01:53.8434385Z [5469/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx-u8.c.obj 2025-07-24T05:01:53.8537692Z [5470/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx-u8.c.obj 2025-07-24T05:01:53.8738180Z [5471/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx-u8.c.obj 2025-07-24T05:01:53.9185613Z [5472/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u8.c.obj 2025-07-24T05:01:53.9306620Z [5473/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u8.c.obj 2025-07-24T05:01:53.9570112Z [5474/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u8.c.obj 2025-07-24T05:01:53.9681322Z [5475/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u8.c.obj 2025-07-24T05:01:53.9949735Z [5476/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u8.c.obj 2025-07-24T05:01:54.0003675Z [5477/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx-u8.c.obj 2025-07-24T05:01:54.0381224Z [5478/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u8.c.obj 2025-07-24T05:01:54.1292426Z [5479/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut4-p4-perm-u16.c.obj 2025-07-24T05:01:54.1311420Z [5480/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx-u8.c.obj 2025-07-24T05:01:54.1478835Z [5481/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut4-p4-perm-u24.c.obj 2025-07-24T05:01:54.1492759Z [5482/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx-u8.c.obj 2025-07-24T05:01:54.1638883Z [5483/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut4-p4-perm-u8.c.obj 2025-07-24T05:01:54.1652710Z [5484/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u16.c.obj 2025-07-24T05:01:54.1840087Z [5485/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u8.c.obj 2025-07-24T05:01:54.2751680Z [5486/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u24.c.obj 2025-07-24T05:01:54.2816209Z [5487/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u32.c.obj 2025-07-24T05:01:54.3082493Z [5488/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u16.c.obj 2025-07-24T05:01:54.3186996Z [5489/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u8.c.obj 2025-07-24T05:01:54.3275494Z [5490/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u24.c.obj 2025-07-24T05:01:54.3550608Z [5491/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u32.c.obj 2025-07-24T05:01:54.3718564Z [5492/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx-u8.c.obj 2025-07-24T05:01:54.3913356Z [5493/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u8.c.obj 2025-07-24T05:01:54.4091462Z [5494/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u8.c.obj 2025-07-24T05:01:54.4360793Z [5495/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u16.c.obj 2025-07-24T05:01:54.4635278Z [5496/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx-u8.c.obj 2025-07-24T05:01:54.4804769Z [5497/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx-u8.c.obj 2025-07-24T05:01:54.4973010Z [5498/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx-u8.c.obj 2025-07-24T05:01:54.5150296Z [5499/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx-u8.c.obj 2025-07-24T05:01:54.5348120Z [5500/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u8.c.obj 2025-07-24T05:01:54.5528069Z [5501/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u32.c.obj 2025-07-24T05:01:54.5734837Z [5502/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u8.c.obj 2025-07-24T05:01:54.5950989Z [5503/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u16.c.obj 2025-07-24T05:01:54.6190302Z [5504/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u24.c.obj 2025-07-24T05:01:54.6360562Z [5505/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u32.c.obj 2025-07-24T05:01:54.6534406Z [5506/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u8.c.obj 2025-07-24T05:01:54.6744009Z [5507/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u24.c.obj 2025-07-24T05:01:54.6897797Z [5508/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u32.c.obj 2025-07-24T05:01:54.7057412Z [5509/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u8.c.obj 2025-07-24T05:01:54.7440968Z [5510/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u32.c.obj 2025-07-24T05:01:54.7618513Z [5511/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u8.c.obj 2025-07-24T05:01:54.7820708Z [5512/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u16.c.obj 2025-07-24T05:01:54.8007181Z [5513/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u32.c.obj 2025-07-24T05:01:54.8212561Z [5514/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-nr.c.obj 2025-07-24T05:01:54.8401554Z [5515/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:54.8586920Z [5516/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:54.8971854Z [5517/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-avx-ld128.c.obj 2025-07-24T05:01:54.9269919Z [5518/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:54.9483489Z [5519/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-avx-ld128.c.obj 2025-07-24T05:01:54.9698767Z [5520/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:54.9874647Z [5521/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:55.0071702Z [5522/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-avx-ld128.c.obj 2025-07-24T05:01:57.1482123Z [5523/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:57.1683444Z [5524/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-avx-ld128.c.obj 2025-07-24T05:01:57.2029447Z [5525/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:57.2237038Z [5526/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-avx-ld128.c.obj 2025-07-24T05:01:57.2423140Z [5527/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:57.2621927Z [5528/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:57.2815687Z [5529/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-avx-ld128.c.obj 2025-07-24T05:01:57.3011989Z [5530/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:57.3407693Z [5531/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-avx-ld128.c.obj 2025-07-24T05:01:57.3582885Z [5532/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-avx-ld128.c.obj 2025-07-24T05:01:57.3726177Z [5533/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:57.4027225Z [5534/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-avx-ld128.c.obj 2025-07-24T05:01:57.4046277Z [5535/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:57.4340604Z [5536/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-avx-ld128.c.obj 2025-07-24T05:01:57.4358046Z [5537/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:57.4776927Z [5538/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-avx-ld128.c.obj 2025-07-24T05:01:57.5243132Z [5539/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-avx-ld128.c.obj 2025-07-24T05:01:57.5506454Z [5540/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:57.5565831Z [5541/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:57.5772079Z [5542/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-avx-ld128.c.obj 2025-07-24T05:01:57.5859788Z [5543/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-avx-ld128.c.obj 2025-07-24T05:01:57.5946719Z [5544/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-avx-ld64.c.obj 2025-07-24T05:01:57.6205554Z [5545/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:57.6551977Z [5546/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:57.7183906Z [5547/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:57.7263507Z [5548/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:57.7326566Z [5549/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T05:01:57.7516537Z [5550/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:57.7669829Z [5551/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:57.7741177Z [5552/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-07-24T05:01:57.7943445Z [5553/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:57.8523762Z [5554/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-07-24T05:01:57.8613532Z [5555/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:57.8729708Z [5556/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T05:01:57.8866332Z [5557/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-07-24T05:01:57.9124556Z [5558/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:57.9343109Z [5559/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-07-24T05:01:57.9411088Z [5560/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:57.9712134Z [5561/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u8.c.obj 2025-07-24T05:01:57.9860061Z [5562/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u16.c.obj 2025-07-24T05:01:58.0267666Z [5563/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u24.c.obj 2025-07-24T05:01:58.0476960Z [5564/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:58.0723145Z [5565/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:58.0779793Z [5566/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:58.0999162Z [5567/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:58.1107374Z [5568/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:58.1279826Z [5569/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:58.1833967Z [5570/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-07-24T05:01:58.2126212Z [5571/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:58.2311657Z [5572/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-07-24T05:01:58.2531041Z [5573/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T05:01:58.2593774Z [5574/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-avx-mul16-add16.c.obj 2025-07-24T05:01:58.3643682Z [5575/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:58.3659214Z [5576/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-07-24T05:01:58.3993904Z [5577/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:58.4081908Z [5578/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-07-24T05:01:58.4600161Z [5579/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:58.4993767Z [5580/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:58.5100969Z [5581/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:58.5170715Z [5582/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:58.5189779Z [5583/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:58.5571414Z [5584/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:58.5623452Z [5585/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:58.6173560Z [5586/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:58.6611730Z [5587/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:58.6676074Z [5588/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:58.6804167Z [5589/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:58.6819175Z [5590/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:58.7180659Z [5591/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:58.7554549Z [5592/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:58.7612899Z [5593/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:58.8323075Z [5594/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:58.8441370Z [5595/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:58.8541030Z [5596/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:58.8608534Z [5597/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:58.9485720Z [5598/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:58.9507002Z [5599/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:58.9521091Z [5600/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:59.0441910Z [5601/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:59.0456252Z [5602/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:59.0512603Z [5603/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:59.0981006Z [5604/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:59.0995398Z [5605/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:59.1108844Z [5606/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:59.1123708Z [5607/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:59.1931620Z [5608/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:59.2262292Z [5609/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:59.2315316Z [5610/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:59.2372661Z [5611/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:59.2426091Z [5612/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:59.2600921Z [5613/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:59.2657394Z [5614/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:59.3624393Z [5615/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:59.3848840Z [5616/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:59.3907299Z [5617/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:59.3985902Z [5618/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-07-24T05:01:59.4039687Z [5619/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:01:59.4197017Z [5620/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:01:59.4275510Z [5621/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-07-24T05:01:59.5392999Z [5622/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u24.c.obj 2025-07-24T05:01:59.5462510Z [5623/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u32.c.obj 2025-07-24T05:01:59.5587230Z [5624/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u32.c.obj 2025-07-24T05:01:59.5660561Z [5625/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-07-24T05:01:59.5729555Z [5626/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-07-24T05:01:59.5798490Z [5627/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u24.c.obj 2025-07-24T05:01:59.5817048Z [5628/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-07-24T05:01:59.6766530Z [5629/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u32.c.obj 2025-07-24T05:01:59.6971274Z [5630/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u24.c.obj 2025-07-24T05:01:59.7064956Z [5631/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u16.c.obj 2025-07-24T05:01:59.7117936Z [5632/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u8.c.obj 2025-07-24T05:01:59.7178780Z [5633/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-07-24T05:01:59.7392878Z [5634/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u24.c.obj 2025-07-24T05:01:59.7492140Z [5635/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u32.c.obj 2025-07-24T05:01:59.8534886Z [5636/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-avx-mul16-ld64-u8.c.obj 2025-07-24T05:01:59.8590221Z [5637/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u8.c.obj 2025-07-24T05:01:59.8647380Z [5638/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:59.8661467Z [5639/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-avx-mul16-ld64-u8.c.obj 2025-07-24T05:01:59.9012076Z [5640/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:59.9069874Z [5641/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:01:59.9360900Z [5642/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u16.c.obj 2025-07-24T05:02:00.0103648Z [5643/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:02:00.0201759Z [5644/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-07-24T05:02:00.0300457Z [5645/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:02:00.0328554Z [5646/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:02:00.0424902Z [5647/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:02:00.0600642Z [5648/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:02:00.1427362Z [5649/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-07-24T05:02:00.1627918Z [5650/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u24.c.obj 2025-07-24T05:02:00.1689370Z [5651/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:02:00.1874835Z [5652/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u16.c.obj 2025-07-24T05:02:00.1990190Z [5653/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-07-24T05:02:00.2054212Z [5654/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u8.c.obj 2025-07-24T05:02:00.2115715Z [5655/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.2923746Z [5656/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:00.3156776Z [5657/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.3427814Z [5658/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.3540270Z [5659/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.3553327Z [5660/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:00.3607784Z [5661/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:00.3702276Z [5662/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.4385677Z [5663/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:00.4738813Z [5664/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.5047165Z [5665/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.5103905Z [5666/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:00.5196456Z [5667/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:00.5440942Z [5668/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.5562665Z [5669/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.6030801Z [5670/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:00.6240029Z [5671/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.6593147Z [5672/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:00.6685387Z [5673/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:00.6701911Z [5674/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.6867358Z [5675/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.6997916Z [5676/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:00.7584770Z [5677/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:00.7780986Z [5678/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.7956816Z [5679/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:00.8045290Z [5680/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.8136662Z [5681/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.8443380Z [5682/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:00.8986577Z [5683/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.9000650Z [5684/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.9185687Z [5685/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:00.9308162Z [5686/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:00.9459171Z [5687/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:00.9474107Z [5688/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:01.0239718Z [5689/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:01.0385824Z [5690/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:01.0439887Z [5691/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:01.0698025Z [5692/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:01.0814198Z [5693/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-24T05:02:01.0871350Z [5694/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-24T05:02:01.0894406Z [5695/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-07-24T05:02:01.1701176Z [5696/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-07-24T05:02:01.1726311Z [5697/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-07-24T05:02:01.1828093Z [5698/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-07-24T05:02:01.2026471Z [5699/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u16.c.obj 2025-07-24T05:02:01.2090378Z [5700/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u8.c.obj 2025-07-24T05:02:01.2110519Z [5701/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-07-24T05:02:01.2241690Z [5702/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-07-24T05:02:01.3008692Z [5703/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u8.c.obj 2025-07-24T05:02:01.3064188Z [5704/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u16.c.obj 2025-07-24T05:02:01.3116611Z [5705/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u32.c.obj 2025-07-24T05:02:01.3130864Z [5706/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-avx-mul16-ld64-u8.c.obj 2025-07-24T05:02:01.3199076Z [5707/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u48.c.obj 2025-07-24T05:02:01.3314971Z [5708/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-avx-mul16-ld64-u8.c.obj 2025-07-24T05:02:01.3327681Z [5709/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u16.c.obj 2025-07-24T05:02:01.4237590Z [5710/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u1.c.obj 2025-07-24T05:02:01.4317558Z [5711/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u8-prfm.c.obj 2025-07-24T05:02:01.4383400Z [5712/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u8.c.obj 2025-07-24T05:02:01.4397214Z [5713/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u1-prfm.c.obj 2025-07-24T05:02:01.4451136Z [5714/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-avx-u4-prfm.c.obj 2025-07-24T05:02:01.4641323Z [5715/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-avx-u4.c.obj 2025-07-24T05:02:01.4818123Z [5716/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-avx-u4-prfm.c.obj 2025-07-24T05:02:01.5432472Z [5717/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-avx-u4.c.obj 2025-07-24T05:02:01.5870338Z [5718/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u8-prfm.c.obj 2025-07-24T05:02:01.5883514Z [5719/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u1-prfm.c.obj 2025-07-24T05:02:01.5951727Z [5720/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u1.c.obj 2025-07-24T05:02:01.5994560Z [5721/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-avx-u4-prfm.c.obj 2025-07-24T05:02:01.6311515Z [5722/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx-u4-prfm.c.obj 2025-07-24T05:02:01.6415352Z [5723/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u1-prfm.c.obj 2025-07-24T05:02:01.6611832Z [5724/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u1.c.obj 2025-07-24T05:02:01.7083405Z [5725/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u8.c.obj 2025-07-24T05:02:01.7149875Z [5726/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-mov-avx.c.obj 2025-07-24T05:02:01.7211248Z [5727/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u8-prfm.c.obj 2025-07-24T05:02:01.7229489Z [5728/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-switch-avx.c.obj 2025-07-24T05:02:01.7445866Z [5729/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-mov-avx.c.obj 2025-07-24T05:02:01.7678175Z [5730/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-switch-avx.c.obj 2025-07-24T05:02:01.7695091Z [5731/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-mov-avx.c.obj 2025-07-24T05:02:01.8184435Z [5732/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-multi-avx.c.obj 2025-07-24T05:02:01.8285437Z [5733/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-switch-avx.c.obj 2025-07-24T05:02:01.8386934Z [5734/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-mov-avx.c.obj 2025-07-24T05:02:01.8402196Z [5735/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-switch-avx.c.obj 2025-07-24T05:02:01.8632823Z [5736/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u8.c.obj 2025-07-24T05:02:01.9508454Z [5737/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c128.c.obj 2025-07-24T05:02:01.9662947Z [5738/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c16.c.obj 2025-07-24T05:02:02.0217478Z [5739/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc2.c.obj 2025-07-24T05:02:02.0392835Z [5740/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u16-acc2.c.obj 2025-07-24T05:02:02.0559674Z [5741/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u24-acc3.c.obj 2025-07-24T05:02:02.0572550Z [5742/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u8.c.obj 2025-07-24T05:02:02.0715372Z [5743/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vadd-f16c-u8.c.obj 2025-07-24T05:02:02.0818383Z [5744/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u8.c.obj 2025-07-24T05:02:02.3699198Z [5745/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c64.c.obj 2025-07-24T05:02:02.3720673Z [5746/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u16.c.obj 2025-07-24T05:02:02.3734575Z [5747/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u16.c.obj 2025-07-24T05:02:02.3755381Z [5748/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmax-f16c-u8.c.obj 2025-07-24T05:02:02.3772839Z [5749/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u8.c.obj 2025-07-24T05:02:02.4495268Z [5750/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vminc-f16c-u8.c.obj 2025-07-24T05:02:02.4875597Z [5751/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmin-f16c-u8.c.obj 2025-07-24T05:02:02.5076115Z [5752/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u8.c.obj 2025-07-24T05:02:02.5091912Z [5753/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmul-f16c-u8.c.obj 2025-07-24T05:02:02.5106631Z [5754/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u16.c.obj 2025-07-24T05:02:02.5166528Z [5755/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u8.c.obj 2025-07-24T05:02:02.5572672Z [5756/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u8.c.obj 2025-07-24T05:02:02.6063015Z [5757/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u8.c.obj 2025-07-24T05:02:02.6178681Z [5758/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u8.c.obj 2025-07-24T05:02:02.6374445Z [5759/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u8.c.obj 2025-07-24T05:02:02.6462336Z [5760/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u8.c.obj 2025-07-24T05:02:02.6479121Z [5761/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsub-f16c-u8.c.obj 2025-07-24T05:02:02.6552476Z [5762/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u8.c.obj 2025-07-24T05:02:02.6907602Z [5763/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u8.c.obj 2025-07-24T05:02:02.7370190Z [5764/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u8.c.obj 2025-07-24T05:02:02.7448085Z [5765/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u8.c.obj 2025-07-24T05:02:02.7887375Z [5766/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u8.c.obj 2025-07-24T05:02:02.7951590Z [5767/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u8.c.obj 2025-07-24T05:02:02.7967995Z [5768/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u8.c.obj 2025-07-24T05:02:02.8033914Z [5769/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u8.c.obj 2025-07-24T05:02:02.8279966Z [5770/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u8.c.obj 2025-07-24T05:02:02.8809493Z [5771/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u8.c.obj 2025-07-24T05:02:02.8947049Z [5772/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u16.c.obj 2025-07-24T05:02:02.9294569Z [5773/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u16.c.obj 2025-07-24T05:02:02.9434371Z [5774/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u16.c.obj 2025-07-24T05:02:02.9499084Z [5775/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u8.c.obj 2025-07-24T05:02:02.9534217Z [5776/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u32.c.obj 2025-07-24T05:02:03.0101887Z [5777/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-div-u16.c.obj 2025-07-24T05:02:03.0165544Z [5778/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-div-u24.c.obj 2025-07-24T05:02:03.0417637Z [5779/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-div-u8.c.obj 2025-07-24T05:02:03.0760881Z [5780/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-div-u32.c.obj 2025-07-24T05:02:03.0830479Z [5781/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u16.c.obj 2025-07-24T05:02:03.0896266Z [5782/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u8.c.obj 2025-07-24T05:02:03.0911274Z [5783/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u32.c.obj 2025-07-24T05:02:03.1430433Z [5784/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u8.c.obj 2025-07-24T05:02:03.1968886Z [5785/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u24.c.obj 2025-07-24T05:02:03.1982380Z [5786/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u16.c.obj 2025-07-24T05:02:03.2101580Z [5787/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u32.c.obj 2025-07-24T05:02:03.2326013Z [5788/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vsqr-f16c-u8.c.obj 2025-07-24T05:02:03.2343208Z [5789/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u8.c.obj 2025-07-24T05:02:03.3245071Z [5790/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.3303928Z [5791/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3.c.obj 2025-07-24T05:02:03.3408475Z [5792/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.3561165Z [5793/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3.c.obj 2025-07-24T05:02:03.3627371Z [5794/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.3687731Z [5795/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.3783227Z [5796/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3.c.obj 2025-07-24T05:02:03.4666900Z [5797/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.4748765Z [5798/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3.c.obj 2025-07-24T05:02:03.4805666Z [5799/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.5601372Z [5800/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.5659297Z [5801/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-07-24T05:02:03.6616303Z [5802/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-07-24T05:02:03.6630525Z [5803/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.6686828Z [5804/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-07-24T05:02:03.6851034Z [5805/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.7271776Z [5806/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.7333921Z [5807/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.7585202Z [5808/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3.c.obj 2025-07-24T05:02:03.8046584Z [5809/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.8150061Z [5810/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3.c.obj 2025-07-24T05:02:03.8507272Z [5811/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.8584943Z [5812/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3.c.obj 2025-07-24T05:02:03.8603429Z [5813/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3.c.obj 2025-07-24T05:02:03.8874400Z [5814/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.9139870Z [5815/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3.c.obj 2025-07-24T05:02:03.9493528Z [5816/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.9563488Z [5817/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3.c.obj 2025-07-24T05:02:03.9883476Z [5818/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:03.9943078Z [5819/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3.c.obj 2025-07-24T05:02:04.0065577Z [5820/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.0196028Z [5821/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.0852454Z [5822/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.0923062Z [5823/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3.c.obj 2025-07-24T05:02:04.1547763Z [5824/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3.c.obj 2025-07-24T05:02:04.1794072Z [5825/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3.c.obj 2025-07-24T05:02:04.1863037Z [5826/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.1928885Z [5827/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3.c.obj 2025-07-24T05:02:04.2416188Z [5828/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c16.c.obj 2025-07-24T05:02:04.2529917Z [5829/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c16-minmax-fma3-2x.c.obj 2025-07-24T05:02:04.2770163Z [5830/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-div-u8.c.obj 2025-07-24T05:02:04.2846906Z [5831/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-div-u16.c.obj 2025-07-24T05:02:04.3225285Z [5832/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-div-u32.c.obj 2025-07-24T05:02:04.3244111Z [5833/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-div-u24.c.obj 2025-07-24T05:02:04.3316981Z [5834/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-rcp-u8.c.obj 2025-07-24T05:02:04.3809251Z [5835/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-rcp-u24.c.obj 2025-07-24T05:02:04.3895584Z [5836/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-rcp-u16.c.obj 2025-07-24T05:02:04.4187771Z [5837/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u8.c.obj 2025-07-24T05:02:04.4425407Z [5838/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-rcp-u32.c.obj 2025-07-24T05:02:04.4659345Z [5839/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u16.c.obj 2025-07-24T05:02:04.4676512Z [5840/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u24.c.obj 2025-07-24T05:02:04.4733629Z [5841/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.5167372Z [5842/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3.c.obj 2025-07-24T05:02:04.5240538Z [5843/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.5552159Z [5844/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.6002944Z [5845/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.6072085Z [5846/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3.c.obj 2025-07-24T05:02:04.6090787Z [5847/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.6160922Z [5848/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.6613837Z [5849/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-07-24T05:02:04.6888887Z [5850/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.6989907Z [5851/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-07-24T05:02:04.7366168Z [5852/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.7381375Z [5853/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.7437158Z [5854/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3.c.obj 2025-07-24T05:02:04.7500497Z [5855/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3.c.obj 2025-07-24T05:02:04.8012876Z [5856/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.8442101Z [5857/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.8583058Z [5858/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3.c.obj 2025-07-24T05:02:04.8836404Z [5859/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3.c.obj 2025-07-24T05:02:04.8899246Z [5860/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.8963066Z [5861/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.8979489Z [5862/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-07-24T05:02:04.9363854Z [5863/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3.c.obj 2025-07-24T05:02:04.9982763Z [5864/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.0061683Z [5865/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.0431707Z [5866/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.0498318Z [5867/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.0578312Z [5868/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.0889362Z [5869/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.1122535Z [5870/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.1526535Z [5871/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.1614016Z [5872/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.2081656Z [5873/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.2237191Z [5874/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.2259451Z [5875/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.2472223Z [5876/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.2589091Z [5877/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.3022654Z [5878/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.3118237Z [5879/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.3634720Z [5880/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.3873881Z [5881/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.4072910Z [5882/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.4087026Z [5883/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.4247668Z [5884/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.4595986Z [5885/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.4665052Z [5886/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.5110789Z [5887/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.5520798Z [5888/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.5574466Z [5889/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.5910345Z [5890/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.6503829Z [5891/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.6516505Z [5892/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.6528968Z [5893/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.6541451Z [5894/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.6678176Z [5895/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.7377222Z [5896/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.7933672Z [5897/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.7983159Z [5898/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.7995810Z [5899/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.8137629Z [5900/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast-prfm.c.obj 2025-07-24T05:02:05.8198079Z [5901/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.8468333Z [5902/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.9098830Z [5903/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.9445790Z [5904/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.9523482Z [5905/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.9828162Z [5906/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.9845896Z [5907/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-5x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.9904605Z [5908/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x8-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:05.9919832Z [5909/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-6x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:06.0842029Z [5910/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-7x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:06.1075202Z [5911/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-8x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:06.1092681Z [5912/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:06.1372255Z [5913/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:06.1433023Z [5914/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:06.1531117Z [5915/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:06.1546964Z [5916/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:06.2299258Z [5917/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x16-minmax-fma3-broadcast.c.obj 2025-07-24T05:02:06.2428999Z [5918/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u32.c.obj 2025-07-24T05:02:06.2515188Z [5919/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u8.c.obj 2025-07-24T05:02:06.2672842Z [5920/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u64.c.obj 2025-07-24T05:02:06.2753177Z [5921/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u8.c.obj 2025-07-24T05:02:06.2843346Z [5922/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-nr.c.obj 2025-07-24T05:02:06.2908058Z [5923/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u8.c.obj 2025-07-24T05:02:06.3619505Z [5924/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u32.c.obj 2025-07-24T05:02:06.3867571Z [5925/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u32.c.obj 2025-07-24T05:02:06.4201996Z [5926/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-nr.c.obj 2025-07-24T05:02:06.4305969Z [5927/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-1x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.4377520Z [5928/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.4453888Z [5929/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u8.c.obj 2025-07-24T05:02:06.4512322Z [5930/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-4x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.5382400Z [5931/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.5445278Z [5932/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-5x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.5732732Z [5933/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-1x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.5788235Z [5934/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-3x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.5849365Z [5935/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-6x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.5867131Z [5936/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-7x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.6073786Z [5937/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-4x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.6767909Z [5938/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-5x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.6838331Z [5939/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-5x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.7201478Z [5940/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-6x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.7268540Z [5941/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-7x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.7354876Z [5942/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.7532977Z [5943/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.7594219Z [5944/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.8231844Z [5945/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.8385555Z [5946/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.8687667Z [5947/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.8757931Z [5948/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-6x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:06.8770363Z [5949/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:07.0241828Z [5950/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-3x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:07.0296407Z [5951/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:07.0356691Z [5952/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:07.0369498Z [5953/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:07.0382030Z [5954/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:07.0460789Z [5955/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-7x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:07.0976881Z [5956/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:07.1741355Z [5957/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16-acc2.c.obj 2025-07-24T05:02:07.1754950Z [5958/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:07.1809151Z [5959/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc2.c.obj 2025-07-24T05:02:07.1868707Z [5960/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16.c.obj 2025-07-24T05:02:07.1924493Z [5961/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-7x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:07.2206171Z [5962/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc4.c.obj 2025-07-24T05:02:07.2398562Z [5963/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-6x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:07.2926061Z [5964/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc2.c.obj 2025-07-24T05:02:07.2979827Z [5965/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc5.c.obj 2025-07-24T05:02:07.3035910Z [5966/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40.c.obj 2025-07-24T05:02:07.3132437Z [5967/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc3.c.obj 2025-07-24T05:02:07.3369846Z [5968/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc2.c.obj 2025-07-24T05:02:07.3433893Z [5969/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48.c.obj 2025-07-24T05:02:07.3513335Z [5970/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc2.c.obj 2025-07-24T05:02:07.4104254Z [5971/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc4.c.obj 2025-07-24T05:02:07.4375030Z [5972/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72.c.obj 2025-07-24T05:02:07.4447842Z [5973/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72-acc3.c.obj 2025-07-24T05:02:07.4555450Z [5974/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc2.c.obj 2025-07-24T05:02:07.4608104Z [5975/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc5.c.obj 2025-07-24T05:02:07.4772205Z [5976/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80.c.obj 2025-07-24T05:02:07.5167366Z [5977/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc2.c.obj 2025-07-24T05:02:07.5319346Z [5978/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64.c.obj 2025-07-24T05:02:07.5582542Z [5979/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc3.c.obj 2025-07-24T05:02:07.5693669Z [5980/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96.c.obj 2025-07-24T05:02:07.5793455Z [5981/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc6.c.obj 2025-07-24T05:02:07.6048055Z [5982/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u8.c.obj 2025-07-24T05:02:07.6178714Z [5983/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u8.c.obj 2025-07-24T05:02:07.6613482Z [5984/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u24.c.obj 2025-07-24T05:02:07.6850909Z [5985/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u16.c.obj 2025-07-24T05:02:07.7193281Z [5986/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u16.c.obj 2025-07-24T05:02:07.7253856Z [5987/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u32.c.obj 2025-07-24T05:02:07.7269635Z [5988/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u8.c.obj 2025-07-24T05:02:07.7446091Z [5989/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-div-u8.c.obj 2025-07-24T05:02:07.7467236Z [5990/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u24.c.obj 2025-07-24T05:02:07.7945636Z [5991/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-div-u16.c.obj 2025-07-24T05:02:07.8172010Z [5992/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-div-u24.c.obj 2025-07-24T05:02:07.8635929Z [5993/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-rcp-u16.c.obj 2025-07-24T05:02:07.8650875Z [5994/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-rcp-u8.c.obj 2025-07-24T05:02:07.8729304Z [5995/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-div-u32.c.obj 2025-07-24T05:02:07.8795810Z [5996/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-rcp-u32.c.obj 2025-07-24T05:02:07.8875547Z [5997/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-rcp-u24.c.obj 2025-07-24T05:02:07.9547058Z [5998/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:07.9949136Z [5999/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.0184073Z [6000/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.0281253Z [6001/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-6x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.0365660Z [6002/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-8x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.0379801Z [6003/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.0617182Z [6004/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-7x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.1036090Z [6005/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x16s4-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.1412161Z [6006/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.1897876Z [6007/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.2020312Z [6008/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x16s4-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.2078474Z [6009/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.2091226Z [6010/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x16s4-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.2104509Z [6011/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.2550425Z [6012/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x16s4-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.3432822Z [6013/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x16s4-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.3502485Z [6014/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.3561310Z [6015/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.3626724Z [6016/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.3642814Z [6017/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x16s4-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.3889503Z [6018/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.4140124Z [6019/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.4862897Z [6020/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u32.c.obj 2025-07-24T05:02:08.4877760Z [6021/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u16.c.obj 2025-07-24T05:02:08.4898877Z [6022/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u48.c.obj 2025-07-24T05:02:08.4962846Z [6023/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x8-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.5119585Z [6024/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x16-minmax-avx2-broadcast.c.obj 2025-07-24T05:02:08.5196407Z [6025/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u16.c.obj 2025-07-24T05:02:08.5358804Z [6026/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u32.c.obj 2025-07-24T05:02:08.5990192Z [6027/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u48.c.obj 2025-07-24T05:02:08.6861676Z [6028/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc2.c.obj 2025-07-24T05:02:08.6879396Z [6029/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc4.c.obj 2025-07-24T05:02:08.6947072Z [6030/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32.c.obj 2025-07-24T05:02:08.6959447Z [6031/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc4.c.obj 2025-07-24T05:02:08.6971898Z [6032/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64.c.obj 2025-07-24T05:02:08.6982985Z [6033/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc2.c.obj 2025-07-24T05:02:08.7038277Z [6034/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72-acc3.c.obj 2025-07-24T05:02:08.7855882Z [6035/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72.c.obj 2025-07-24T05:02:08.7907918Z [6036/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc2.c.obj 2025-07-24T05:02:08.7928790Z [6037/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc5.c.obj 2025-07-24T05:02:08.7979530Z [6038/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc6.c.obj 2025-07-24T05:02:08.7991480Z [6039/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc2.c.obj 2025-07-24T05:02:08.8082909Z [6040/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80.c.obj 2025-07-24T05:02:08.8115952Z [6041/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc3.c.obj 2025-07-24T05:02:08.9269167Z [6042/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96.c.obj 2025-07-24T05:02:08.9365700Z [6043/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc2.c.obj 2025-07-24T05:02:08.9378384Z [6044/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc2.c.obj 2025-07-24T05:02:08.9427698Z [6045/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64.c.obj 2025-07-24T05:02:08.9551580Z [6046/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32.c.obj 2025-07-24T05:02:08.9612980Z [6047/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc4.c.obj 2025-07-24T05:02:08.9663652Z [6048/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc4.c.obj 2025-07-24T05:02:09.0241319Z [6049/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72-acc3.c.obj 2025-07-24T05:02:09.0403386Z [6050/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72.c.obj 2025-07-24T05:02:09.0418673Z [6051/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc5.c.obj 2025-07-24T05:02:09.0474552Z [6052/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc2.c.obj 2025-07-24T05:02:09.0547876Z [6053/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc2.c.obj 2025-07-24T05:02:09.1096233Z [6054/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc3.c.obj 2025-07-24T05:02:09.1154926Z [6055/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc6.c.obj 2025-07-24T05:02:09.1493974Z [6056/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96.c.obj 2025-07-24T05:02:09.1562952Z [6057/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u8.c.obj 2025-07-24T05:02:09.1624287Z [6058/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80.c.obj 2025-07-24T05:02:09.1797401Z [6059/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc2.c.obj 2025-07-24T05:02:09.1814383Z [6060/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u16-acc2.c.obj 2025-07-24T05:02:09.2288812Z [6061/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u8.c.obj 2025-07-24T05:02:09.2454500Z [6062/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc4.c.obj 2025-07-24T05:02:09.2673149Z [6063/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u16-acc2.c.obj 2025-07-24T05:02:09.2873843Z [6064/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc4.c.obj 2025-07-24T05:02:09.2990565Z [6065/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut4-p4-perm-u8.c.obj 2025-07-24T05:02:09.3124940Z [6066/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut4-p4-perm-u16.c.obj 2025-07-24T05:02:09.3355969Z [6067/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut4-p4-perm-u24.c.obj 2025-07-24T05:02:09.3605842Z [6068/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut8-p4-perm-u8.c.obj 2025-07-24T05:02:09.3829474Z [6069/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut8-p4-perm-u16.c.obj 2025-07-24T05:02:09.4044839Z [6070/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut8-p4-perm-u24.c.obj 2025-07-24T05:02:09.4227584Z [6071/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut16-p3-gather-u8.c.obj 2025-07-24T05:02:09.4359307Z [6072/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut8-p4-perm-u32.c.obj 2025-07-24T05:02:09.4491031Z [6073/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut16-p3-gather-u16.c.obj 2025-07-24T05:02:09.4605642Z [6074/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut16-p3-gather-u24.c.obj 2025-07-24T05:02:09.4837881Z [6075/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut16-p3-gather-u32.c.obj 2025-07-24T05:02:09.5070476Z [6076/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u8.c.obj 2025-07-24T05:02:09.5359298Z [6077/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u16.c.obj 2025-07-24T05:02:09.5467087Z [6078/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u24.c.obj 2025-07-24T05:02:09.5580703Z [6079/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u8.c.obj 2025-07-24T05:02:09.5793308Z [6080/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u16.c.obj 2025-07-24T05:02:09.5853936Z [6081/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u32.c.obj 2025-07-24T05:02:09.5904738Z [6082/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u24.c.obj 2025-07-24T05:02:09.5997319Z [6083/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u32.c.obj 2025-07-24T05:02:09.6251371Z [6084/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u8.c.obj 2025-07-24T05:02:09.6725609Z [6085/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u24.c.obj 2025-07-24T05:02:09.6819112Z [6086/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u32.c.obj 2025-07-24T05:02:09.7007798Z [6087/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u16.c.obj 2025-07-24T05:02:09.7107908Z [6088/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u8.c.obj 2025-07-24T05:02:09.7270242Z [6089/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u24.c.obj 2025-07-24T05:02:09.7386403Z [6090/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u32.c.obj 2025-07-24T05:02:09.7487055Z [6091/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u8.c.obj 2025-07-24T05:02:09.8035316Z [6092/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u16.c.obj 2025-07-24T05:02:09.8412105Z [6093/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u32.c.obj 2025-07-24T05:02:09.8631436Z [6094/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u8.c.obj 2025-07-24T05:02:09.8694378Z [6095/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u24.c.obj 2025-07-24T05:02:09.8752716Z [6096/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u24.c.obj 2025-07-24T05:02:09.8767821Z [6097/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u16.c.obj 2025-07-24T05:02:09.8983143Z [6098/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u32.c.obj 2025-07-24T05:02:09.9407983Z [6099/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-2x8c8-minmax-avx2.c.obj 2025-07-24T05:02:09.9757665Z [6100/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-4x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.0960213Z [6101/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:10.1018533Z [6102/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-2x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:10.1032889Z [6103/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.1046234Z [6104/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-2x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T05:02:10.1155204Z [6105/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-2x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.1495023Z [6106/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-3x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:10.1582566Z [6107/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-3x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T05:02:10.2397758Z [6108/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-3x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.3115436Z [6109/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-4x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.3130489Z [6110/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-4x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:10.3226068Z [6111/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:10.3242101Z [6112/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T05:02:10.3301830Z [6113/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.4363085Z [6114/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-6x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T05:02:10.4516237Z [6115/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-6x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.4532246Z [6116/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-6x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:10.5470713Z [6117/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T05:02:10.5542946Z [6118/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:10.5562715Z [6119/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T05:02:10.5830474Z [6120/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:10.5845191Z [6121/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.5991378Z [6122/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.6670819Z [6123/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-2x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.7823117Z [6124/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-4x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.8689685Z [6125/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-4x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.8705005Z [6126/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-2x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.8885296Z [6127/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.8944952Z [6128/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.8995749Z [6129/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:10.9166249Z [6130/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x8c8-minmax-avx2.c.obj 2025-07-24T05:02:10.9292330Z [6131/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T05:02:11.0204852Z [6132/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:11.0261688Z [6133/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x8c8-minmax-avx2.c.obj 2025-07-24T05:02:11.0418468Z [6134/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T05:02:11.0436971Z [6135/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:11.0510444Z [6136/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x8c8-minmax-avx2.c.obj 2025-07-24T05:02:11.1054992Z [6137/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x8c8-minmax-avx2.c.obj 2025-07-24T05:02:11.1617917Z [6138/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:11.2308953Z [6139/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:11.2324571Z [6140/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T05:02:11.2381570Z [6141/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx2.c.obj 2025-07-24T05:02:11.3304979Z [6142/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-6x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:11.3363520Z [6143/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-6x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T05:02:11.3528618Z [6144/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-6x8c8-minmax-avx2.c.obj 2025-07-24T05:02:11.3740264Z [6145/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T05:02:11.4027465Z [6146/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx2.c.obj 2025-07-24T05:02:11.4630552Z [6147/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:11.4726100Z [6148/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx2-madd-prfm.c.obj 2025-07-24T05:02:11.4982590Z [6149/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx2.c.obj 2025-07-24T05:02:11.4995567Z [6150/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x8c8-minmax-avx2.c.obj 2025-07-24T05:02:11.5267457Z [6151/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x8c8-minmax-avx2.c.obj 2025-07-24T05:02:11.5634761Z [6152/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx2-madd.c.obj 2025-07-24T05:02:11.5703218Z [6153/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x8c8-minmax-avx2.c.obj 2025-07-24T05:02:11.6208096Z [6154/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x8c8-minmax-avx2.c.obj 2025-07-24T05:02:11.6315478Z [6155/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:11.6476503Z [6156/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:11.6661402Z [6157/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:11.6741739Z [6158/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:11.6988471Z [6159/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:11.7063311Z [6160/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:11.7664607Z [6161/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:11.7737648Z [6162/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:11.7994913Z [6163/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:11.8097754Z [6164/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:11.8159862Z [6165/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:11.8499568Z [6166/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:11.9006875Z [6167/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:11.9022562Z [6168/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:11.9125345Z [6169/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:11.9564598Z [6170/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:11.9910723Z [6171/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:12.0163444Z [6172/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:12.0178461Z [6173/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:12.0995997Z [6174/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:12.1010697Z [6175/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:12.1074734Z [6176/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:12.1140839Z [6177/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:12.1404955Z [6178/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:12.1583591Z [6179/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:12.1676505Z [6180/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:12.2368715Z [6181/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:12.2520659Z [6182/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:12.2604463Z [6183/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:12.2780952Z [6184/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:12.2922133Z [6185/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:12.3066103Z [6186/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:12.3129925Z [6187/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:12.3730229Z [6188/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:12.4005538Z [6189/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:12.4077475Z [6190/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:12.4183623Z [6191/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:12.4347547Z [6192/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:12.4605035Z [6193/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:12.4899579Z [6194/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:12.5194756Z [6195/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:12.5361676Z [6196/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:12.5425280Z [6197/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:12.5493578Z [6198/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u24.c.obj 2025-07-24T05:02:12.5819060Z [6199/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u64.c.obj 2025-07-24T05:02:12.6057365Z [6200/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u8.c.obj 2025-07-24T05:02:12.6311711Z [6201/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u32.c.obj 2025-07-24T05:02:12.6380128Z [6202/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u24.c.obj 2025-07-24T05:02:12.6619929Z [6203/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u32.c.obj 2025-07-24T05:02:12.6813956Z [6204/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:12.7174743Z [6205/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:12.7243239Z [6206/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx2-madd.c.obj 2025-07-24T05:02:12.7312189Z [6207/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:12.7797104Z [6208/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:12.8130908Z [6209/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:12.8202370Z [6210/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:12.8217869Z [6211/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:12.8525808Z [6212/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:12.8774589Z [6213/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:12.8789313Z [6214/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:12.9184717Z [6215/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:12.9693053Z [6216/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:12.9706987Z [6217/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:12.9980626Z [6218/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:13.0239431Z [6219/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:13.0498834Z [6220/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:13.0559002Z [6221/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:13.0625399Z [6222/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:13.1075910Z [6223/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:13.1335028Z [6224/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:13.1529595Z [6225/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:13.1545365Z [6226/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:13.1937772Z [6227/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:13.2054828Z [6228/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:13.2283534Z [6229/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:13.2485852Z [6230/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:13.2944810Z [6231/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:13.2964781Z [6232/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:13.3028679Z [6233/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:13.3392175Z [6234/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:13.3770319Z [6235/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:13.3793620Z [6236/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:13.4040294Z [6237/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p32c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:13.4352162Z [6238/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p32c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:13.4434660Z [6239/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:13.5362071Z [6240/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:13.5380873Z [6241/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:13.5637599Z [6242/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:13.5742758Z [6243/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:13.7254608Z [6244/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x8c8-minmax-fp32-avx2.c.obj 2025-07-24T05:02:13.7901217Z [6245/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-07-24T05:02:13.7964297Z [6246/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:13.8601664Z [6247/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p32c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-07-24T05:02:13.8619751Z [6248/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x8c8-minmax-fp32-avx2.c.obj 2025-07-24T05:02:13.8863311Z [6249/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p32c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-07-24T05:02:13.9121067Z [6250/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x8c8-minmax-fp32-avx2.c.obj 2025-07-24T05:02:13.9394241Z [6251/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c32.c.obj 2025-07-24T05:02:13.9510094Z [6252/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x8c8-minmax-fp32-avx2.c.obj 2025-07-24T05:02:13.9787683Z [6253/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u32.c.obj 2025-07-24T05:02:13.9883203Z [6254/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc2.c.obj 2025-07-24T05:02:14.0106422Z [6255/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-07-24T05:02:14.0521445Z [6256/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u24.c.obj 2025-07-24T05:02:14.0634761Z [6257/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc4.c.obj 2025-07-24T05:02:14.0788035Z [6258/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u32.c.obj 2025-07-24T05:02:14.1023690Z [6259/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-07-24T05:02:14.1092189Z [6260/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u24.c.obj 2025-07-24T05:02:14.1234432Z [6261/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u32.c.obj 2025-07-24T05:02:14.1803881Z [6262/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u64.c.obj 2025-07-24T05:02:14.1969979Z [6263/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u16.c.obj 2025-07-24T05:02:14.2033452Z [6264/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u16.c.obj 2025-07-24T05:02:14.2121110Z [6265/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u64.c.obj 2025-07-24T05:02:14.2560619Z [6266/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:14.2737212Z [6267/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:14.2946247Z [6268/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:14.3299275Z [6269/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:14.3312906Z [6270/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:14.3434184Z [6271/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:14.3506690Z [6272/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:14.3929193Z [6273/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:14.4233927Z [6274/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:14.4586549Z [6275/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:14.4747083Z [6276/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:14.4760905Z [6277/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:14.5116816Z [6278/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-24T05:02:14.5171962Z [6279/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u24.c.obj 2025-07-24T05:02:14.5479146Z [6280/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u8.c.obj 2025-07-24T05:02:14.5574368Z [6281/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u32.c.obj 2025-07-24T05:02:14.6109951Z [6282/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x8c8-minmax-fp32-avx2.c.obj 2025-07-24T05:02:14.6123621Z [6283/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x8c8-minmax-fp32-avx2.c.obj 2025-07-24T05:02:14.6274920Z [6284/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x8c8-minmax-fp32-avx2.c.obj 2025-07-24T05:02:14.6380586Z [6285/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u32.c.obj 2025-07-24T05:02:14.6512484Z [6286/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x8c8-minmax-fp32-avx2.c.obj 2025-07-24T05:02:14.6673031Z [6287/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc2.c.obj 2025-07-24T05:02:14.6969309Z [6288/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc4.c.obj 2025-07-24T05:02:14.7433113Z [6289/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-07-24T05:02:14.7544701Z [6290/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u16.c.obj 2025-07-24T05:02:14.7694591Z [6291/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-07-24T05:02:14.7789171Z [6292/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u64.c.obj 2025-07-24T05:02:14.7849756Z [6293/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u16.c.obj 2025-07-24T05:02:14.7958373Z [6294/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u32.c.obj 2025-07-24T05:02:14.8326756Z [6295/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u64.c.obj 2025-07-24T05:02:14.8533568Z [6296/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u96.c.obj 2025-07-24T05:02:14.8549633Z [6297/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u64.c.obj 2025-07-24T05:02:14.8833433Z [6298/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2-prfm.c.obj 2025-07-24T05:02:14.9063564Z [6299/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2-prfm.c.obj 2025-07-24T05:02:14.9192454Z [6300/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2.c.obj 2025-07-24T05:02:14.9423955Z [6301/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2.c.obj 2025-07-24T05:02:14.9446168Z [6302/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-mov-avx2.c.obj 2025-07-24T05:02:14.9697405Z [6303/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x8-gemm-goi-avx2-u16-prfm.c.obj 2025-07-24T05:02:14.9760875Z [6304/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x8-gemm-goi-avx2-u16.c.obj 2025-07-24T05:02:15.0013255Z [6305/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x16-gemm-goi-avx2-u16.c.obj 2025-07-24T05:02:15.0167216Z [6306/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-mov-avx2.c.obj 2025-07-24T05:02:15.0348491Z [6307/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u8.c.obj 2025-07-24T05:02:15.0628277Z [6308/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc4.c.obj 2025-07-24T05:02:15.0646625Z [6309/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u16-acc2.c.obj 2025-07-24T05:02:15.1485563Z [6310/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:15.1541964Z [6311/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:15.1600264Z [6312/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-2x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:15.2026706Z [6313/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-3x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:15.2168579Z [6314/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T05:02:15.2256023Z [6315/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:15.2347931Z [6316/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-4x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:15.2970135Z [6317/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:15.3029236Z [6318/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T05:02:15.3141532Z [6319/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-6x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:15.3721631Z [6320/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:15.3812780Z [6321/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:15.4798450Z [6322/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T05:02:15.5430010Z [6323/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T05:02:15.5446146Z [6324/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:15.5463806Z [6325/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:15.5479566Z [6326/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:15.5541463Z [6327/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:15.7168841Z [6328/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T05:02:15.7181728Z [6329/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:15.7230895Z [6330/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:15.7311479Z [6331/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T05:02:15.7607072Z [6332/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-8x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:15.8025745Z [6333/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-7x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:15.8579799Z [6334/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-7x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:15.9643681Z [6335/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-8x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:15.9704727Z [6336/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:15.9722306Z [6337/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:15.9838623Z [6338/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:15.9853267Z [6339/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:15.9902000Z [6340/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:16.0082896Z [6341/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T05:02:16.1245011Z [6342/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-6x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:16.1319178Z [6343/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:16.1492350Z [6344/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:16.1555787Z [6345/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:16.1572760Z [6346/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:16.1591718Z [6347/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T05:02:16.1721555Z [6348/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:16.4132386Z [6349/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:16.4663831Z [6350/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T05:02:16.5015661Z [6351/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T05:02:16.5080579Z [6352/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:16.5549063Z [6353/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:16.7536351Z [6354/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:16.7750563Z [6355/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:16.7796901Z [6356/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T05:02:16.8332364Z [6357/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:16.8584424Z [6358/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256skx-madd.c.obj 2025-07-24T05:02:16.8946963Z [6359/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-07-24T05:02:16.9003514Z [6360/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:16.9146486Z [6361/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x8c8-minmax-avx256skx.c.obj 2025-07-24T05:02:16.9410367Z [6362/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T05:02:16.9485349Z [6363/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T05:02:16.9750016Z [6364/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T05:02:17.0095975Z [6365/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T05:02:17.0355934Z [6366/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc2.c.obj 2025-07-24T05:02:17.0431146Z [6367/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u32.c.obj 2025-07-24T05:02:17.0739709Z [6368/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc4.c.obj 2025-07-24T05:02:17.0791862Z [6369/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T05:02:17.0848964Z [6370/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-07-24T05:02:17.0959152Z [6371/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx-prfm.c.obj 2025-07-24T05:02:17.1629469Z [6372/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx-prfm.c.obj 2025-07-24T05:02:17.1691386Z [6373/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx.c.obj 2025-07-24T05:02:17.1895368Z [6374/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx.c.obj 2025-07-24T05:02:17.2297581Z [6375/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:17.2368581Z [6376/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:17.2387278Z [6377/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:17.2442486Z [6378/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:17.3247230Z [6379/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:17.3536372Z [6380/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:17.3858823Z [6381/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:17.3949968Z [6382/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:17.3985372Z [6383/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:17.4051443Z [6384/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:17.4065122Z [6385/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:17.5449455Z [6386/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:17.5511089Z [6387/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:17.5527392Z [6388/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:17.5654233Z [6389/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:17.6264573Z [6390/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:17.6320003Z [6391/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:17.6542019Z [6392/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-5x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:17.6896624Z [6393/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-7x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:17.6992476Z [6394/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:17.7048010Z [6395/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:17.7163123Z [6396/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-9x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:17.7931091Z [6397/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-10x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:17.9216959Z [6398/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:17.9454218Z [6399/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:17.9723585Z [6400/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-12x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:17.9826529Z [6401/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.0204350Z [6402/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-14x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.0259049Z [6403/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.0704437Z [6404/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-5x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.0894541Z [6405/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.1257261Z [6406/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.1329525Z [6407/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-7x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.1343142Z [6408/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.1760962Z [6409/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-9x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.1891030Z [6410/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.2290433Z [6411/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.2364034Z [6412/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-10x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.2774024Z [6413/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.3024802Z [6414/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-12x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.3095936Z [6415/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.3342469Z [6416/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-14x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.3452173Z [6417/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.3930791Z [6418/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.3948742Z [6419/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.4299370Z [6420/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.4640010Z [6421/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.4699169Z [6422/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.5309323Z [6423/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.5323354Z [6424/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.5451572Z [6425/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.5526312Z [6426/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.5837358Z [6427/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.6324315Z [6428/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.6732396Z [6429/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.6786707Z [6430/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.6946181Z [6431/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.7057639Z [6432/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.7129887Z [6433/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.7393066Z [6434/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.8057190Z [6435/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.8266582Z [6436/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.8619020Z [6437/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.8632516Z [6438/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.8645445Z [6439/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.8752952Z [6440/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:18.9771433Z [6441/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.9829308Z [6442/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:18.9845325Z [6443/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:19.0068797Z [6444/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:19.0296402Z [6445/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:19.0314323Z [6446/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:19.1146329Z [6447/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:19.1370459Z [6448/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:19.1629251Z [6449/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:19.1829337Z [6450/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:19.1985298Z [6451/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:19.2510572Z [6452/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:19.2525876Z [6453/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:19.2586299Z [6454/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:19.3538130Z [6455/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:19.3556250Z [6456/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:19.3618136Z [6457/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:19.3633896Z [6458/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:19.4170369Z [6459/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:19.4278177Z [6460/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:19.4328507Z [6461/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:19.5779969Z [6462/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni.c.obj 2025-07-24T05:02:19.5864711Z [6463/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-avx256vnni.c.obj 2025-07-24T05:02:19.5924809Z [6464/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni.c.obj 2025-07-24T05:02:19.6078891Z [6465/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:19.6167344Z [6466/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x8c8-minmax-avx256vnni.c.obj 2025-07-24T05:02:19.6233395Z [6467/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-07-24T05:02:19.7074621Z [6468/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:19.7286158Z [6469/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:19.7408263Z [6470/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:19.7462011Z [6471/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:19.8605080Z [6472/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:19.8617947Z [6473/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:19.8679275Z [6474/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:19.8838004Z [6475/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:19.9292754Z [6476/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:19.9352556Z [6477/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:20.0263991Z [6478/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:20.0281034Z [6479/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:20.0371781Z [6480/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:20.0433914Z [6481/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:20.1847410Z [6482/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:20.1909543Z [6483/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:20.2149880Z [6484/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:20.2617991Z [6485/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:20.2684808Z [6486/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:20.3429745Z [6487/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:20.3444502Z [6488/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:20.3457324Z [6489/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:20.4481383Z [6490/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:20.4496190Z [6491/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:20.4611864Z [6492/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:20.4990210Z [6493/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:20.5002120Z [6494/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:20.5166519Z [6495/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:20.5264577Z [6496/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:20.6296796Z [6497/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x8c8-gemm-goi-avx256vnni-prfm.c.obj 2025-07-24T05:02:20.6380720Z [6498/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x8c8-gemm-goi-avx256vnni.c.obj 2025-07-24T05:02:20.6394336Z [6499/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x16c8-gemm-goi-avx256vnni-prfm.c.obj 2025-07-24T05:02:20.6487577Z [6500/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-07-24T05:02:20.6538156Z [6501/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u32.c.obj 2025-07-24T05:02:20.6604936Z [6502/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:20.6769497Z [6503/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x8c8-minmax-fp32-avx256vnni.c.obj 2025-07-24T05:02:20.7582807Z [6504/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc2.c.obj 2025-07-24T05:02:20.7652036Z [6505/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc4.c.obj 2025-07-24T05:02:20.7674152Z [6506/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u64-acc2.c.obj 2025-07-24T05:02:20.8060059Z [6507/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:20.8200989Z [6508/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:20.8255131Z [6509/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:20.8377378Z [6510/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:20.9218702Z [6511/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:20.9306598Z [6512/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:20.9619523Z [6513/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:20.9718376Z [6514/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:20.9864622Z [6515/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:20.9877890Z [6516/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:20.9940446Z [6517/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:21.0814741Z [6518/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:21.0951181Z [6519/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:21.1112058Z [6520/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:21.1502430Z [6521/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:21.1515874Z [6522/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:21.1568607Z [6523/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:21.1676932Z [6524/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:21.2395397Z [6525/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:21.2688880Z [6526/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:21.3080182Z [6527/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:21.3199228Z [6528/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:21.3264808Z [6529/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:21.3323486Z [6530/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:21.3841799Z [6531/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:21.4105365Z [6532/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:21.4496301Z [6533/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:21.4653322Z [6534/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:21.4792446Z [6535/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:21.4985104Z [6536/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:21.5078292Z [6537/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-07-24T05:02:21.5444406Z [6538/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256vnnigfni.c.obj 2025-07-24T05:02:21.5510746Z [6539/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f-acc2.c.obj 2025-07-24T05:02:21.5936484Z [6540/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f-acc2.c.obj 2025-07-24T05:02:21.5996392Z [6541/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f.c.obj 2025-07-24T05:02:21.6513324Z [6542/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f-acc2.c.obj 2025-07-24T05:02:21.6531477Z [6543/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f.c.obj 2025-07-24T05:02:21.6585909Z [6544/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f-acc2.c.obj 2025-07-24T05:02:21.6724264Z [6545/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f-acc2.c.obj 2025-07-24T05:02:21.6927807Z [6546/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f.c.obj 2025-07-24T05:02:21.7236268Z [6547/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f-acc2.c.obj 2025-07-24T05:02:21.7345597Z [6548/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f-acc2.c.obj 2025-07-24T05:02:21.7938214Z [6549/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f.c.obj 2025-07-24T05:02:21.7996540Z [6550/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f-acc2.c.obj 2025-07-24T05:02:21.8113333Z [6551/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f-acc2.c.obj 2025-07-24T05:02:21.8406492Z [6552/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f.c.obj 2025-07-24T05:02:21.8420963Z [6553/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f-acc2.c.obj 2025-07-24T05:02:21.8788713Z [6554/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:21.8954837Z [6555/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x64-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:21.9461113Z [6556/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:21.9558995Z [6557/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:21.9696417Z [6558/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x64-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.0043467Z [6559/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.0285415Z [6560/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.0347975Z [6561/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x64-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.0688922Z [6562/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.0933401Z [6563/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.1033975Z [6564/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x64-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.1180149Z [6565/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.1614180Z [6566/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x64-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.1788337Z [6567/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.1912644Z [6568/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.3002162Z [6569/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x64-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.3016830Z [6570/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.3031449Z [6571/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x64-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.3046696Z [6572/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.4051086Z [6573/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.4183171Z [6574/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x64-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.4310465Z [6575/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.4604069Z [6576/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.4709503Z [6577/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x64-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.4767070Z [6578/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.5091019Z [6579/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.5506558Z [6580/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.5960565Z [6581/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.5975911Z [6582/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x64-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.6005612Z [6583/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.6990823Z [6584/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x64-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.7076326Z [6585/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x64-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.7317400Z [6586/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.7333935Z [6587/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.7544256Z [6588/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x64-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.7644669Z [6589/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.7811354Z [6590/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.8499272Z [6591/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.8806994Z [6592/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x64-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.8821952Z [6593/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.9070275Z [6594/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.9083103Z [6595/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.9337357Z [6596/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.9556520Z [6597/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:22.9921822Z [6598/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:23.0453656Z [6599/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:23.0605148Z [6600/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:23.0660624Z [6601/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:23.0875146Z [6602/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:23.0932520Z [6603/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:23.1022620Z [6604/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:23.1530209Z [6605/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:23.1957149Z [6606/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:23.1972230Z [6607/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:23.2035858Z [6608/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc4.c.obj 2025-07-24T05:02:23.2049402Z [6609/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x16-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:23.2379881Z [6610/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x32-minmax-avx512f-broadcast.c.obj 2025-07-24T05:02:23.2765378Z [6611/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-07-24T05:02:23.2879079Z [6612/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc4.c.obj 2025-07-24T05:02:23.2937573Z [6613/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc2.c.obj 2025-07-24T05:02:23.3045182Z [6614/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128.c.obj 2025-07-24T05:02:23.3184204Z [6615/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144-acc3.c.obj 2025-07-24T05:02:23.3467538Z [6616/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144.c.obj 2025-07-24T05:02:23.3696030Z [6617/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc2.c.obj 2025-07-24T05:02:23.3798142Z [6618/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc5.c.obj 2025-07-24T05:02:23.4033116Z [6619/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc2.c.obj 2025-07-24T05:02:23.4109697Z [6620/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160.c.obj 2025-07-24T05:02:23.4195245Z [6621/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc2.c.obj 2025-07-24T05:02:23.4306270Z [6622/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc3.c.obj 2025-07-24T05:02:23.4362476Z [6623/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc6.c.obj 2025-07-24T05:02:23.4649780Z [6624/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192.c.obj 2025-07-24T05:02:23.5024430Z [6625/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc2.c.obj 2025-07-24T05:02:23.5041880Z [6626/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc4.c.obj 2025-07-24T05:02:23.5257845Z [6627/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc2.c.obj 2025-07-24T05:02:23.5272571Z [6628/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128.c.obj 2025-07-24T05:02:23.5338984Z [6629/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc4.c.obj 2025-07-24T05:02:23.5454406Z [6630/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64.c.obj 2025-07-24T05:02:23.5620190Z [6631/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144-acc3.c.obj 2025-07-24T05:02:23.6277053Z [6632/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144.c.obj 2025-07-24T05:02:23.6289767Z [6633/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc2.c.obj 2025-07-24T05:02:23.6361611Z [6634/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc5.c.obj 2025-07-24T05:02:23.6377571Z [6635/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160.c.obj 2025-07-24T05:02:23.6528340Z [6636/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc2.c.obj 2025-07-24T05:02:23.6541856Z [6637/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc6.c.obj 2025-07-24T05:02:23.6592117Z [6638/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc3.c.obj 2025-07-24T05:02:23.7452118Z [6639/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u16.c.obj 2025-07-24T05:02:23.7553330Z [6640/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u64-acc2.c.obj 2025-07-24T05:02:23.7597916Z [6641/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192.c.obj 2025-07-24T05:02:23.7747774Z [6642/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u32-acc2.c.obj 2025-07-24T05:02:23.7943308Z [6643/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u64-acc4.c.obj 2025-07-24T05:02:23.8006635Z [6644/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u16.c.obj 2025-07-24T05:02:23.8604920Z [6645/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u32-acc2.c.obj 2025-07-24T05:02:23.8665324Z [6646/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c16.c.obj 2025-07-24T05:02:23.8721914Z [6647/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc4.c.obj 2025-07-24T05:02:23.8841209Z [6648/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c32.c.obj 2025-07-24T05:02:23.9243855Z [6649/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c128.c.obj 2025-07-24T05:02:23.9304754Z [6650/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u16.c.obj 2025-07-24T05:02:23.9365390Z [6651/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u32-acc2.c.obj 2025-07-24T05:02:23.9809021Z [6652/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u48-acc3.c.obj 2025-07-24T05:02:23.9873795Z [6653/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc2.c.obj 2025-07-24T05:02:23.9933103Z [6654/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u16.c.obj 2025-07-24T05:02:24.0896222Z [6655/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u48-acc3.c.obj 2025-07-24T05:02:24.0910400Z [6656/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc2.c.obj 2025-07-24T05:02:24.0928351Z [6657/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u32-acc2.c.obj 2025-07-24T05:02:24.0941789Z [6658/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc4.c.obj 2025-07-24T05:02:24.1654091Z [6659/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u16.c.obj 2025-07-24T05:02:24.1719366Z [6660/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u32-acc2.c.obj 2025-07-24T05:02:24.2055087Z [6661/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u48-acc3.c.obj 2025-07-24T05:02:24.2163560Z [6662/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u16.c.obj 2025-07-24T05:02:24.2227220Z [6663/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u32-acc2.c.obj 2025-07-24T05:02:24.2240681Z [6664/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc2.c.obj 2025-07-24T05:02:24.2297186Z [6665/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u48-acc3.c.obj 2025-07-24T05:02:24.3019137Z [6666/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u16.c.obj 2025-07-24T05:02:24.3397977Z [6667/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u16.c.obj 2025-07-24T05:02:24.3525683Z [6668/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u16.c.obj 2025-07-24T05:02:24.3587941Z [6669/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc2.c.obj 2025-07-24T05:02:24.3605351Z [6670/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u16.c.obj 2025-07-24T05:02:24.3723132Z [6671/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u16.c.obj 2025-07-24T05:02:24.3870545Z [6672/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u16.c.obj 2025-07-24T05:02:24.4248967Z [6673/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u16.c.obj 2025-07-24T05:02:24.4750507Z [6674/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u16.c.obj 2025-07-24T05:02:24.4904154Z [6675/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u16.c.obj 2025-07-24T05:02:24.4979061Z [6676/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u16.c.obj 2025-07-24T05:02:24.5061476Z [6677/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u16.c.obj 2025-07-24T05:02:24.5181904Z [6678/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u16.c.obj 2025-07-24T05:02:24.5260639Z [6679/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u16.c.obj 2025-07-24T05:02:24.5818818Z [6680/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u16.c.obj 2025-07-24T05:02:24.6356336Z [6681/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u16.c.obj 2025-07-24T05:02:24.6420295Z [6682/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u16.c.obj 2025-07-24T05:02:24.6434731Z [6683/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u16.c.obj 2025-07-24T05:02:24.6531600Z [6684/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u16.c.obj 2025-07-24T05:02:24.6602246Z [6685/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u32.c.obj 2025-07-24T05:02:24.6673675Z [6686/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u16.c.obj 2025-07-24T05:02:24.7071054Z [6687/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u16.c.obj 2025-07-24T05:02:24.7693368Z [6688/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u64.c.obj 2025-07-24T05:02:24.7755192Z [6689/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-lut16-p3-perm-u16.c.obj 2025-07-24T05:02:24.7775737Z [6690/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u128.c.obj 2025-07-24T05:02:24.7926581Z [6691/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-lut16-p3-perm-u48.c.obj 2025-07-24T05:02:24.7986898Z [6692/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-lut16-p3-perm-u64.c.obj 2025-07-24T05:02:24.8493497Z [6693/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u16.c.obj 2025-07-24T05:02:24.8968967Z [6694/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u32.c.obj 2025-07-24T05:02:24.9082701Z [6695/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u48.c.obj 2025-07-24T05:02:24.9143295Z [6696/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-div.c.obj 2025-07-24T05:02:24.9211573Z [6697/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u32.c.obj 2025-07-24T05:02:24.9705895Z [6698/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u32.c.obj 2025-07-24T05:02:24.9783450Z [6699/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-nr.c.obj 2025-07-24T05:02:25.0060834Z [6700/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-lut16-p3-perm-u32.c.obj 2025-07-24T05:02:25.0357196Z [6701/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u32.c.obj 2025-07-24T05:02:25.0422424Z [6702/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u16.c.obj 2025-07-24T05:02:25.0501508Z [6703/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u32.c.obj 2025-07-24T05:02:25.0597746Z [6704/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u32.c.obj 2025-07-24T05:02:25.1108042Z [6705/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u32.c.obj 2025-07-24T05:02:25.1314031Z [6706/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u32.c.obj 2025-07-24T05:02:25.1456423Z [6707/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u16.c.obj 2025-07-24T05:02:25.1535203Z [6708/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u16.c.obj 2025-07-24T05:02:25.1608128Z [6709/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u32.c.obj 2025-07-24T05:02:25.1689205Z [6710/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u64.c.obj 2025-07-24T05:02:25.2089066Z [6711/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-07-24T05:02:25.2280624Z [6712/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u16.c.obj 2025-07-24T05:02:25.2619735Z [6713/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u48.c.obj 2025-07-24T05:02:25.2841303Z [6714/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u64.c.obj 2025-07-24T05:02:25.2857520Z [6715/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u48.c.obj 2025-07-24T05:02:25.2874248Z [6716/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u32.c.obj 2025-07-24T05:02:25.3432705Z [6717/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-u32.c.obj 2025-07-24T05:02:25.3506327Z [6718/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-u16.c.obj 2025-07-24T05:02:25.3523138Z [6719/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-u48.c.obj 2025-07-24T05:02:25.3846093Z [6720/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-u64.c.obj 2025-07-24T05:02:25.4174886Z [6721/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-u48.c.obj 2025-07-24T05:02:25.4350814Z [6722/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-u32.c.obj 2025-07-24T05:02:25.4714628Z [6723/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-u64.c.obj 2025-07-24T05:02:25.4788198Z [6724/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-u16.c.obj 2025-07-24T05:02:25.4853722Z [6725/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-div-u32.c.obj 2025-07-24T05:02:25.4915252Z [6726/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-div-u16.c.obj 2025-07-24T05:02:25.5207758Z [6727/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-div-u48.c.obj 2025-07-24T05:02:25.5623510Z [6728/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-div-u64.c.obj 2025-07-24T05:02:25.5952710Z [6729/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-u48.c.obj 2025-07-24T05:02:25.6490932Z [6730/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-u32.c.obj 2025-07-24T05:02:25.6509772Z [6731/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-u16.c.obj 2025-07-24T05:02:25.6796455Z [6732/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u48.c.obj 2025-07-24T05:02:25.6942867Z [6733/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u16.c.obj 2025-07-24T05:02:25.7002503Z [6734/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u32.c.obj 2025-07-24T05:02:25.7179866Z [6735/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-u16.c.obj 2025-07-24T05:02:25.7292318Z [6736/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-u64.c.obj 2025-07-24T05:02:25.7807753Z [6737/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-u48.c.obj 2025-07-24T05:02:25.7873701Z [6738/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-u32.c.obj 2025-07-24T05:02:25.8187096Z [6739/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-u64.c.obj 2025-07-24T05:02:25.8295305Z [6740/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u48.c.obj 2025-07-24T05:02:25.8734697Z [6741/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-div.c.obj 2025-07-24T05:02:25.8801573Z [6742/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u1-prfm.c.obj 2025-07-24T05:02:25.9078691Z [6743/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u8-prfm.c.obj 2025-07-24T05:02:25.9093150Z [6744/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u32.c.obj 2025-07-24T05:02:25.9264393Z [6745/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u8.c.obj 2025-07-24T05:02:25.9558686Z [6746/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u1.c.obj 2025-07-24T05:02:25.9878968Z [6747/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx512f-u4-prfm.c.obj 2025-07-24T05:02:26.0030709Z [6748/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u1-prfm.c.obj 2025-07-24T05:02:26.0288401Z [6749/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx512f-u4.c.obj 2025-07-24T05:02:26.0302457Z [6750/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u8-prfm.c.obj 2025-07-24T05:02:26.0575257Z [6751/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-goi-avx512f-u4.c.obj 2025-07-24T05:02:26.0677195Z [6752/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u32.c.obj 2025-07-24T05:02:26.1090192Z [6753/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c16.c.obj 2025-07-24T05:02:26.1171636Z [6754/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u1.c.obj 2025-07-24T05:02:26.1508319Z [6755/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c32.c.obj 2025-07-24T05:02:26.1563656Z [6756/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u16.c.obj 2025-07-24T05:02:26.2267294Z [6757/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u32-acc2.c.obj 2025-07-24T05:02:26.2822088Z [6758/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u48-acc3.c.obj 2025-07-24T05:02:26.3310742Z [6759/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc2.c.obj 2025-07-24T05:02:26.3521630Z [6760/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c128.c.obj 2025-07-24T05:02:26.3637638Z [6761/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u128-acc4.c.obj 2025-07-24T05:02:26.3866188Z [6762/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u16.c.obj 2025-07-24T05:02:26.3965287Z [6763/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u32-acc2.c.obj 2025-07-24T05:02:26.4463401Z [6764/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc2.c.obj 2025-07-24T05:02:26.4722673Z [6765/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u16.c.obj 2025-07-24T05:02:26.5045792Z [6766/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u32-acc2.c.obj 2025-07-24T05:02:26.5174477Z [6767/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u48-acc3.c.obj 2025-07-24T05:02:26.5482908Z [6768/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u48-acc3.c.obj 2025-07-24T05:02:26.5709184Z [6769/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc4.c.obj 2025-07-24T05:02:26.5811065Z [6770/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc2.c.obj 2025-07-24T05:02:26.6095035Z [6771/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u16.c.obj 2025-07-24T05:02:26.6152920Z [6772/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u32-acc2.c.obj 2025-07-24T05:02:26.6684324Z [6773/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc2.c.obj 2025-07-24T05:02:26.7118021Z [6774/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u48-acc3.c.obj 2025-07-24T05:02:26.7242863Z [6775/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u16.c.obj 2025-07-24T05:02:26.7488140Z [6776/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u32.c.obj 2025-07-24T05:02:26.7549263Z [6777/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u64.c.obj 2025-07-24T05:02:26.7818850Z [6778/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u32.c.obj 2025-07-24T05:02:26.8085625Z [6779/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-3x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:26.8243775Z [6780/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-2x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:26.9074252Z [6781/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-5x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:26.9138209Z [6782/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-4x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:26.9467830Z [6783/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-6x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.0085579Z [6784/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.0181138Z [6785/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-8x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.0308588Z [6786/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.1051429Z [6787/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.1066418Z [6788/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.1364053Z [6789/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.1563383Z [6790/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.1903871Z [6791/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.2177998Z [6792/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.2722978Z [6793/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.2785653Z [6794/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.2953173Z [6795/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.3351832Z [6796/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.4836609Z [6797/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x16-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.5310643Z [6798/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u32.c.obj 2025-07-24T05:02:27.6094361Z [6799/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x32-minmax-avx512skx-broadcast.c.obj 2025-07-24T05:02:27.6683771Z [6800/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u64.c.obj 2025-07-24T05:02:27.9357168Z [6801/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u96.c.obj 2025-07-24T05:02:27.9882976Z [6802/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u32.c.obj 2025-07-24T05:02:28.0590326Z [6803/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u64.c.obj 2025-07-24T05:02:28.0862448Z [6804/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u96.c.obj 2025-07-24T05:02:28.1903390Z [6805/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T05:02:28.2484245Z [6806/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:28.3105208Z [6807/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:28.3305573Z [6808/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T05:02:28.3414863Z [6809/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T05:02:28.3431043Z [6810/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx.c.obj 2025-07-24T05:02:28.3788327Z [6811/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T05:02:28.4067846Z [6812/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:28.4082747Z [6813/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:28.4784123Z [6814/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:28.4851613Z [6815/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T05:02:28.5217358Z [6816/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512skx.c.obj 2025-07-24T05:02:28.5231941Z [6817/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T05:02:28.6840939Z [6818/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T05:02:28.6937786Z [6819/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:28.7048678Z [6820/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T05:02:28.7121058Z [6821/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:28.7141726Z [6822/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512skx.c.obj 2025-07-24T05:02:28.7213362Z [6823/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T05:02:28.7269825Z [6824/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T05:02:28.8496520Z [6825/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:28.8644380Z [6826/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:28.8698707Z [6827/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T05:02:28.8717050Z [6828/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx.c.obj 2025-07-24T05:02:28.8769631Z [6829/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:28.8789636Z [6830/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T05:02:28.9486238Z [6831/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T05:02:28.9905044Z [6832/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:29.1435541Z [6833/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:29.1457790Z [6834/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T05:02:29.1529600Z [6835/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T05:02:29.1542216Z [6836/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T05:02:29.1555913Z [6837/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:29.1840697Z [6838/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:29.2040539Z [6839/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T05:02:29.3311175Z [6840/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c8-minmax-avx512skx.c.obj 2025-07-24T05:02:29.3547303Z [6841/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:29.3564697Z [6842/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:29.3622978Z [6843/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512skx-madd.c.obj 2025-07-24T05:02:29.3641132Z [6844/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T05:02:29.3816847Z [6845/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-07-24T05:02:29.4546997Z [6846/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T05:02:29.5044000Z [6847/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c8-minmax-avx512skx.c.obj 2025-07-24T05:02:29.5097171Z [6848/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c8-minmax-avx512skx.c.obj 2025-07-24T05:02:29.5157528Z [6849/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T05:02:29.5229491Z [6850/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c8-minmax-avx512skx.c.obj 2025-07-24T05:02:29.5247788Z [6851/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c8-minmax-avx512skx.c.obj 2025-07-24T05:02:29.5265452Z [6852/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T05:02:29.5851359Z [6853/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c8-minmax-avx512skx.c.obj 2025-07-24T05:02:29.6382237Z [6854/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c8-minmax-avx512skx-prfm.c.obj 2025-07-24T05:02:29.6564919Z [6855/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c8-minmax-avx512skx.c.obj 2025-07-24T05:02:29.6589234Z [6856/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:29.6653073Z [6857/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:29.6713326Z [6858/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c8-minmax-avx512skx.c.obj 2025-07-24T05:02:29.6848897Z [6859/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:29.7198256Z [6860/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:29.8084035Z [6861/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u48.c.obj 2025-07-24T05:02:29.8100426Z [6862/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:29.8156250Z [6863/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u16.c.obj 2025-07-24T05:02:29.8169354Z [6864/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:29.8367532Z [6865/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u64.c.obj 2025-07-24T05:02:29.8444590Z [6866/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:29.8457550Z [6867/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:29.9501851Z [6868/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:29.9572784Z [6869/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:29.9593829Z [6870/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:29.9608032Z [6871/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:29.9775300Z [6872/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:29.9893226Z [6873/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:30.0032876Z [6874/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:30.1050289Z [6875/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.1133458Z [6876/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T05:02:30.1195054Z [6877/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.1280501Z [6878/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.1357376Z [6879/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:30.1456300Z [6880/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T05:02:30.1514357Z [6881/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.2463105Z [6882/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.2558863Z [6883/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T05:02:30.2710123Z [6884/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c128.c.obj 2025-07-24T05:02:30.2762448Z [6885/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.2842292Z [6886/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T05:02:30.2902387Z [6887/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.2960564Z [6888/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.3753638Z [6889/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc2.c.obj 2025-07-24T05:02:30.3963592Z [6890/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc4.c.obj 2025-07-24T05:02:30.4067159Z [6891/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-07-24T05:02:30.4174920Z [6892/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-07-24T05:02:30.4229714Z [6893/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u64.c.obj 2025-07-24T05:02:30.4244393Z [6894/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:30.4670906Z [6895/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:30.5322496Z [6896/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:30.5413594Z [6897/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:30.5507090Z [6898/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:30.5572000Z [6899/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:30.5697463Z [6900/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:30.5712983Z [6901/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-24T05:02:30.5966882Z [6902/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u16.c.obj 2025-07-24T05:02:30.6651321Z [6903/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u64.c.obj 2025-07-24T05:02:30.6790601Z [6904/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u48.c.obj 2025-07-24T05:02:30.7071790Z [6905/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.7226755Z [6906/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.7288186Z [6907/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T05:02:30.7354245Z [6908/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.7562974Z [6909/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T05:02:30.8262652Z [6910/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.8505338Z [6911/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.8519042Z [6912/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T05:02:30.8762713Z [6913/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-24T05:02:30.8883671Z [6914/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.9188072Z [6915/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.9376915Z [6916/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u128.c.obj 2025-07-24T05:02:30.9463515Z [6917/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-07-24T05:02:30.9476662Z [6918/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-07-24T05:02:30.9690263Z [6919/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-07-24T05:02:30.9704576Z [6920/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u192.c.obj 2025-07-24T05:02:30.9794914Z [6921/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u256.c.obj 2025-07-24T05:02:31.0211906Z [6922/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u64.c.obj 2025-07-24T05:02:31.0937626Z [6923/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.1117140Z [6924/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u256.c.obj 2025-07-24T05:02:31.1131020Z [6925/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u192.c.obj 2025-07-24T05:02:31.1625112Z [6926/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-5x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.2040720Z [6927/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-5x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.2504797Z [6928/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-7x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.2605439Z [6929/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-9x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.2683550Z [6930/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.2801473Z [6931/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-9x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.3121873Z [6932/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-7x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.3233272Z [6933/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-10x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.3868148Z [6934/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-10x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.4144995Z [6935/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-12x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.4289851Z [6936/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-14x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.4345380Z [6937/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-14x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.4412549Z [6938/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-12x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.4595738Z [6939/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.5017678Z [6940/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.5425462Z [6941/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.6007943Z [6942/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.6073386Z [6943/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.6087098Z [6944/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.6236902Z [6945/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.6303625Z [6946/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.6780752Z [6947/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.6842853Z [6948/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.7821104Z [6949/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.7878635Z [6950/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.7895258Z [6951/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.8096887Z [6952/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.8195100Z [6953/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.8481291Z [6954/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.8858563Z [6955/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.9457079Z [6956/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.9702496Z [6957/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.9847803Z [6958/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:31.9919371Z [6959/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:31.9971900Z [6960/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.0044462Z [6961/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.0805178Z [6962/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.1366831Z [6963/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.1593064Z [6964/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.1645971Z [6965/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.1881306Z [6966/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.1964076Z [6967/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.2013633Z [6968/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.2184236Z [6969/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.3223944Z [6970/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.3239465Z [6971/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.3439856Z [6972/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.3657905Z [6973/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.4021456Z [6974/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.4326541Z [6975/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.4345556Z [6976/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.4674944Z [6977/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.4883801Z [6978/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.5104742Z [6979/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.5161251Z [6980/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.5576323Z [6981/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.5838299Z [6982/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.6240543Z [6983/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.6350368Z [6984/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.6807412Z [6985/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.6892380Z [6986/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.6912836Z [6987/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.7221401Z [6988/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.7283798Z [6989/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.7705657Z [6990/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.8072749Z [6991/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.8463132Z [6992/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.8524120Z [6993/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.8715264Z [6994/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.8808819Z [6995/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:32.9201585Z [6996/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.9352323Z [6997/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:32.9524562Z [6998/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.0124095Z [6999/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.0377606Z [7000/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.0561342Z [7001/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.0751120Z [7002/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.0875642Z [7003/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.0932369Z [7004/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.1205222Z [7005/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.1707416Z [7006/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.1961107Z [7007/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.2298784Z [7008/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.2496029Z [7009/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.2669400Z [7010/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.2730285Z [7011/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.2793373Z [7012/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.3184893Z [7013/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.3355316Z [7014/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.3886807Z [7015/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.4091769Z [7016/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.4310204Z [7017/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.4414351Z [7018/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.4562758Z [7019/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.4697968Z [7020/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.4910631Z [7021/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.5462911Z [7022/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.5775393Z [7023/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.5908801Z [7024/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.6202796Z [7025/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.6422745Z [7026/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.6487167Z [7027/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.6650717Z [7028/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.6865363Z [7029/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.7438811Z [7030/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.7539244Z [7031/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.7818959Z [7032/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.8052718Z [7033/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.8149041Z [7034/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:33.8305598Z [7035/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.8390711Z [7036/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:33.9009795Z [7037/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:33.9079012Z [7038/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.9330445Z [7039/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:33.9615722Z [7040/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.9780625Z [7041/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:33.9853303Z [7042/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T05:02:33.9939495Z [7043/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:34.0669607Z [7044/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:34.0892863Z [7045/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:34.1161527Z [7046/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.1303847Z [7047/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:34.1317488Z [7048/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.1558416Z [7049/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.1645515Z [7050/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:34.2433745Z [7051/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:34.2493833Z [7052/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.2591152Z [7053/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.3023310Z [7054/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:34.3039704Z [7055/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:34.3148639Z [7056/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.3273691Z [7057/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.4017440Z [7058/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.4094651Z [7059/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:34.4181306Z [7060/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:34.4744607Z [7061/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.4816420Z [7062/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:34.4830400Z [7063/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.4891130Z [7064/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x16c4-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:34.5825483Z [7065/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.6401837Z [7066/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x16c8-minmax-fp32-avx512vnni.c.obj 2025-07-24T05:02:34.6458566Z [7067/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:34.6520856Z [7068/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:34.6766508Z [7069/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.7167845Z [7070/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.7299614Z [7071/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:34.7475850Z [7072/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.8013691Z [7073/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.8027616Z [7074/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:34.8835169Z [7075/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:34.8854364Z [7076/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:34.8908146Z [7077/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:34.8988763Z [7078/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.9047308Z [7079/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:34.9426634Z [7080/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:34.9513296Z [7081/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:35.0445094Z [7082/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:35.0500761Z [7083/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:35.0569492Z [7084/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:35.0583392Z [7085/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:35.0741091Z [7086/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:35.1244626Z [7087/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:35.1380112Z [7088/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:35.2120656Z [7089/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:35.2186439Z [7090/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:35.2257531Z [7091/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:35.2317697Z [7092/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:35.2404617Z [7093/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:35.2776488Z [7094/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:35.3230057Z [7095/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c4-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:35.3633626Z [7096/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c4-minmax-avx512vnni.c.obj 2025-07-24T05:02:35.3739491Z [7097/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u64.c.obj 2025-07-24T05:02:35.3890874Z [7098/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc2.c.obj 2025-07-24T05:02:35.3947919Z [7099/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c8-minmax-avx512vnni-prfm.c.obj 2025-07-24T05:02:35.4397266Z [7100/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c8-minmax-avx512vnni.c.obj 2025-07-24T05:02:35.4411909Z [7101/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc4.c.obj 2025-07-24T05:02:35.4588368Z [7102/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:35.5495835Z [7103/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-5x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:35.5618126Z [7104/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-5x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:35.5676366Z [7105/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-7x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:35.5902551Z [7106/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:35.5957440Z [7107/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:35.6019711Z [7108/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-7x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:35.6165932Z [7109/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-9x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:35.7069389Z [7110/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-9x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:35.7316794Z [7111/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-10x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:35.7431449Z [7112/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-10x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:35.7483790Z [7113/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-12x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:35.7649366Z [7114/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:35.8102460Z [7115/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-14x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:35.8117036Z [7116/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-12x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:35.8556708Z [7117/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:35.8728650Z [7118/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:35.8979750Z [7119/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:35.9145640Z [7120/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:35.9203395Z [7121/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:35.9720571Z [7122/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:35.9786557Z [7123/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:36.0088792Z [7124/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:36.0245830Z [7125/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:36.0585721Z [7126/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:36.0732658Z [7127/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:36.1224244Z [7128/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:36.1342282Z [7129/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:36.1357258Z [7130/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:36.1558490Z [7131/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:36.1794750Z [7132/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:36.2333459Z [7133/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:36.2535892Z [7134/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:36.3036230Z [7135/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:36.3101967Z [7136/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:36.3195754Z [7137/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:36.3403723Z [7138/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:36.3639500Z [7139/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:36.3999118Z [7140/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:36.4313843Z [7141/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:36.4662045Z [7142/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:36.4792913Z [7143/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:36.4845513Z [7144/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:36.5111334Z [7145/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-07-24T05:02:36.5533726Z [7146/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:36.8345014Z [7147/7681] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512vnnigfni.c.obj 2025-07-24T05:02:37.3485313Z [7148/7681] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark_main.dir\benchmark_main.cc.obj 2025-07-24T05:02:37.4929115Z [7149/7681] Linking CXX static library lib\gtest_main.lib 2025-07-24T05:02:37.7696380Z [7150/7681] Linking CXX static library lib\gmock.lib 2025-07-24T05:02:37.9381921Z [7151/7681] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\format.cc.obj 2025-07-24T05:02:38.0720042Z [7152/7681] Building C object third_party\ittapi\CMakeFiles\jitprofiling.dir\src\ittnotify\jitprofiling.c.obj 2025-07-24T05:02:38.0880325Z [7153/7681] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock_main.cc.obj 2025-07-24T05:02:38.1804181Z [7154/7681] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\__\googletest\src\gtest-all.cc.obj 2025-07-24T05:02:38.1973519Z [7155/7681] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock-all.cc.obj 2025-07-24T05:02:38.2313657Z [7156/7681] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\os.cc.obj 2025-07-24T05:02:38.3644116Z [7157/7681] Linking CXX static library lib\benchmark.lib 2025-07-24T05:02:39.3891643Z [7158/7681] Building CXX object c10\test\CMakeFiles\c10_StreamGuard_test.dir\core\StreamGuard_test.cpp.obj 2025-07-24T05:02:39.7691864Z [7159/7681] Building CXX object c10\test\CMakeFiles\c10_CompileTimeFunctionPointer_test.dir\core\CompileTimeFunctionPointer_test.cpp.obj 2025-07-24T05:02:39.9851933Z [7160/7681] Building CXX object c10\test\CMakeFiles\c10_DeviceGuard_test.dir\core\DeviceGuard_test.cpp.obj 2025-07-24T05:02:40.3666060Z [7161/7681] Building CXX object c10\test\CMakeFiles\c10_Device_test.dir\core\Device_test.cpp.obj 2025-07-24T05:02:40.6038462Z [7162/7681] Building CXX object c10\test\CMakeFiles\c10_SymInt_test.dir\core\SymInt_test.cpp.obj 2025-07-24T05:02:41.1229342Z [7163/7681] Building CXX object c10\test\CMakeFiles\c10_Scalar_test.dir\core\Scalar_test.cpp.obj 2025-07-24T05:02:41.1646433Z [7164/7681] Building CXX object c10\test\CMakeFiles\c10_DispatchKeySet_test.dir\core\DispatchKeySet_test.cpp.obj 2025-07-24T05:02:41.6925658Z [7165/7681] Building CXX object c10\test\CMakeFiles\c10_ConstexprCrc_test.dir\util\ConstexprCrc_test.cpp.obj 2025-07-24T05:02:41.8036520Z [7166/7681] Building CXX object c10\test\CMakeFiles\c10_InlineDeviceGuard_test.dir\core\impl\InlineDeviceGuard_test.cpp.obj 2025-07-24T05:02:42.6023545Z [7167/7681] Building CXX object c10\test\CMakeFiles\c10_InlineStreamGuard_test.dir\core\impl\InlineStreamGuard_test.cpp.obj 2025-07-24T05:02:42.7568049Z [7168/7681] Building CXX object c10\test\CMakeFiles\c10_SizesAndStrides_test.dir\core\impl\SizesAndStrides_test.cpp.obj 2025-07-24T05:02:43.0089122Z [7169/7681] Building CXX object c10\test\CMakeFiles\c10_ArrayRef_test.dir\util\ArrayRef_test.cpp.obj 2025-07-24T05:02:43.4447998Z [7170/7681] Building CXX object c10\test\CMakeFiles\c10_Bitset_test.dir\util\Bitset_test.cpp.obj 2025-07-24T05:02:43.7183195Z [7171/7681] Building CXX object c10\test\CMakeFiles\c10_DeadlockDetection_test.dir\util\DeadlockDetection_test.cpp.obj 2025-07-24T05:02:43.9314208Z [7172/7681] Building CXX object c10\test\CMakeFiles\c10_cow_test.dir\core\impl\cow_test.cpp.obj 2025-07-24T05:02:44.4463254Z [7173/7681] Building CXX object c10\test\CMakeFiles\c10_Enumerate_test.dir\util\Enumerate_test.cpp.obj 2025-07-24T05:02:44.8278570Z [7174/7681] Building CXX object c10\test\CMakeFiles\c10_Half_test.dir\util\Half_test.cpp.obj 2025-07-24T05:02:45.1363303Z [7175/7681] Building CXX object c10\test\CMakeFiles\c10_IntrusiveList_test.dir\util\IntrusiveList_test.cpp.obj 2025-07-24T05:02:45.7944102Z [7176/7681] Building CXX object c10\test\CMakeFiles\c10_LeftRight_test.dir\util\LeftRight_test.cpp.obj 2025-07-24T05:02:46.2253737Z [7177/7681] Building CXX object c10\test\CMakeFiles\c10_Semaphore_test.dir\util\Semaphore_test.cpp.obj 2025-07-24T05:02:46.2439701Z [7178/7681] Building CXX object c10\test\CMakeFiles\c10_NetworkFlow_test.dir\util\NetworkFlow_test.cpp.obj 2025-07-24T05:02:46.3557400Z [7179/7681] Building CXX object c10\test\CMakeFiles\c10_Metaprogramming_test.dir\util\Metaprogramming_test.cpp.obj 2025-07-24T05:02:46.4925460Z [7180/7681] Building CXX object c10\test\CMakeFiles\c10_Synchronized_test.dir\util\Synchronized_test.cpp.obj 2025-07-24T05:02:47.2894789Z [7181/7681] Building CXX object c10\test\CMakeFiles\c10_ThreadLocal_test.dir\util\ThreadLocal_test.cpp.obj 2025-07-24T05:02:47.4417813Z [7182/7681] Building CXX object c10\test\CMakeFiles\c10_TypeIndex_test.dir\util\TypeIndex_test.cpp.obj 2025-07-24T05:02:48.0348167Z [7183/7681] Building CXX object c10\test\CMakeFiles\c10_TypeList_test.dir\util\TypeList_test.cpp.obj 2025-07-24T05:02:48.1743573Z [7184/7681] Building CXX object c10\test\CMakeFiles\c10_TypeTraits_test.dir\util\TypeTraits_test.cpp.obj 2025-07-24T05:02:48.6604479Z [7185/7681] Building CXX object c10\test\CMakeFiles\c10_accumulate_test.dir\util\accumulate_test.cpp.obj 2025-07-24T05:02:48.8730537Z [7186/7681] Building CXX object c10\test\CMakeFiles\c10_bit_cast_test.dir\util\bit_cast_test.cpp.obj 2025-07-24T05:02:49.0129058Z [7187/7681] Building CXX object c10\test\CMakeFiles\c10_bfloat16_test.dir\util\bfloat16_test.cpp.obj 2025-07-24T05:02:50.0709772Z [7188/7681] Building CXX object c10\test\CMakeFiles\c10_complex_math_test.dir\util\complex_math_test.cpp.obj 2025-07-24T05:02:50.0946314Z [7189/7681] Building CXX object c10\test\CMakeFiles\c10_error_test.dir\util\error_test.cpp.obj 2025-07-24T05:02:50.2330650Z [7190/7681] Building CXX object c10\test\CMakeFiles\c10_complex_test.dir\util\complex_test.cpp.obj 2025-07-24T05:02:50.3981535Z [7191/7681] Building CXX object c10\test\CMakeFiles\c10_exception_test.dir\util\exception_test.cpp.obj 2025-07-24T05:02:51.0044245Z [7192/7681] Building CXX object c10\test\CMakeFiles\c10_flags_test.dir\util\flags_test.cpp.obj 2025-07-24T05:02:51.1704865Z [7193/7681] Building CXX object c10\test\CMakeFiles\c10_generic_math_test.dir\util\generic_math_test.cpp.obj 2025-07-24T05:02:52.0345028Z [7194/7681] Building CXX object c10\test\CMakeFiles\c10_irange_test.dir\util\irange_test.cpp.obj 2025-07-24T05:02:52.8175047Z [7195/7681] Building CXX object c10\test\CMakeFiles\c10_lazy_test.dir\util\lazy_test.cpp.obj 2025-07-24T05:02:53.2906560Z [7196/7681] Building CXX object c10\test\CMakeFiles\c10_logging_test.dir\util\logging_test.cpp.obj 2025-07-24T05:02:54.9932440Z [7197/7681] Building CXX object c10\test\CMakeFiles\c10_ordered_preserving_dict_test.dir\util\ordered_preserving_dict_test.cpp.obj 2025-07-24T05:02:54.9957983Z [7198/7681] Building CXX object c10\test\CMakeFiles\c10_registry_test.dir\util\registry_test.cpp.obj 2025-07-24T05:02:56.8198911Z [7199/7681] Building CXX object c10\test\CMakeFiles\c10_tempfile_test.dir\util\tempfile_test.cpp.obj 2025-07-24T05:02:57.1769056Z [7200/7681] Building CXX object c10\test\CMakeFiles\c10_ssize_test.dir\util\ssize_test.cpp.obj 2025-07-24T05:02:57.2199020Z [7201/7681] Building CXX object c10\test\CMakeFiles\c10_optional_test.dir\util\optional_test.cpp.obj 2025-07-24T05:02:57.2210594Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(70): warning C4834: discarding return value of function with [[nodiscard]] attribute 2025-07-24T05:02:57.2213378Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(70): note: the template instantiation context (the oldest one first) is 2025-07-24T05:02:57.2223619Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(63): note: see reference to class template instantiation 'testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>' being compiled 2025-07-24T05:02:57.2230563Z C:\actions-runner\_work\pytorch\pytorch\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(694): note: while compiling class template member function 'bool testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register(const char *,testing::internal::CodeLocation,const char *,const char *,int,const std::vector> &)' 2025-07-24T05:02:57.2237964Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(63): note: see the first reference to 'testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register' in 'void __cdecl `anonymous namespace'::`dynamic initializer for 'gtest_OptionalTest_Empty_registered_''(void)' 2025-07-24T05:02:57.2243238Z C:\actions-runner\_work\pytorch\pytorch\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(705): note: see reference to class template instantiation 'testing::internal::SuiteApiResolver' being compiled 2025-07-24T05:02:57.4589559Z C:\actions-runner\_work\pytorch\pytorch\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(491): note: see reference to class template instantiation '`anonymous-namespace'::OptionalTest_Empty_Test' being compiled 2025-07-24T05:02:57.4592212Z with 2025-07-24T05:02:57.4592725Z [ 2025-07-24T05:02:57.4593194Z T=Type 2025-07-24T05:02:57.4593669Z ] 2025-07-24T05:02:57.4595513Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(63): note: while compiling class template member function 'void `anonymous-namespace'::OptionalTest_Empty_Test::TestBody(void)' 2025-07-24T05:02:57.4597658Z with 2025-07-24T05:02:57.4598087Z [ 2025-07-24T05:02:57.4598510Z T=Type 2025-07-24T05:02:57.4598948Z ] 2025-07-24T05:02:57.4599857Z [7202/7681] Building CXX object c10\test\CMakeFiles\c10_string_util_test.dir\util\string_util_test.cpp.obj 2025-07-24T05:02:57.5752178Z [7203/7681] Building CXX object c10\test\CMakeFiles\c10_string_view_test.dir\util\string_view_test.cpp.obj 2025-07-24T05:02:59.8906557Z [7204/7681] Building CXX object c10\benchmark\CMakeFiles\c10_intrusive_ptr_benchmark.dir\intrusive_ptr_benchmark.cpp.obj 2025-07-24T05:02:59.9131942Z [7205/7681] Building CXX object c10\test\CMakeFiles\c10_intrusive_ptr_test.dir\util\intrusive_ptr_test.cpp.obj 2025-07-24T05:03:00.9993766Z [7206/7681] Building CXX object c10\test\CMakeFiles\c10_typeid_test.dir\util\typeid_test.cpp.obj 2025-07-24T05:03:01.7973515Z [7207/7681] Building CXX object c10\test\CMakeFiles\c10_small_vector_test.dir\util\small_vector_test.cpp.obj 2025-07-24T05:03:04.3904667Z [7208/7681] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_catches_stream.dir\impl\CUDAAssertionsTest_catches_stream.cu.obj 2025-07-24T05:03:04.4624632Z CUDAAssertionsTest_catches_stream.cu 2025-07-24T05:03:04.4625152Z tmpxft_00001248_00000000-7_CUDAAssertionsTest_catches_stream.cudafe1.cpp 2025-07-24T05:03:04.4625965Z [7209/7681] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_1_var_test.dir\impl\CUDAAssertionsTest_1_var_test.cu.obj 2025-07-24T05:03:04.4915335Z CUDAAssertionsTest_1_var_test.cu 2025-07-24T05:03:04.4915805Z tmpxft_0000109c_00000000-7_CUDAAssertionsTest_1_var_test.cudafe1.cpp 2025-07-24T05:03:04.4916863Z [7210/7681] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.dir\impl\CUDAAssertionsTest_catches_thread_and_block_and_device.cu.obj 2025-07-24T05:03:04.5428945Z CUDAAssertionsTest_catches_thread_and_block_and_device.cu 2025-07-24T05:03:04.5430086Z tmpxft_00000ba8_00000000-7_CUDAAssertionsTest_catches_thread_and_block_and_device.cudafe1.cpp 2025-07-24T05:03:04.5432155Z [7211/7681] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.dir\impl\CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cu.obj 2025-07-24T05:03:04.5568944Z CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cu 2025-07-24T05:03:04.5569828Z tmpxft_000014e4_00000000-7_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cudafe1.cpp 2025-07-24T05:03:04.5571012Z [7212/7681] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_from_2_processes.dir\impl\CUDAAssertionsTest_from_2_processes.cu.obj 2025-07-24T05:03:04.5840951Z CUDAAssertionsTest_from_2_processes.cu 2025-07-24T05:03:04.5841467Z tmpxft_00001588_00000000-7_CUDAAssertionsTest_from_2_processes.cudafe1.cpp 2025-07-24T05:03:04.5843475Z [7213/7681] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.dir\impl\CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cu.obj 2025-07-24T05:03:04.5861477Z CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cu 2025-07-24T05:03:04.5862345Z tmpxft_000017c0_00000000-7_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cudafe1.cpp 2025-07-24T05:03:04.5863425Z [7214/7681] Building C object caffe2\CMakeFiles\torch_global_deps.dir\__\torch\csrc\empty.c.obj 2025-07-24T05:03:04.6126575Z [7215/7681] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.dir\impl\CUDAAssertionsTest_multiple_writes_from_same_block.cu.obj 2025-07-24T05:03:04.7310000Z CUDAAssertionsTest_multiple_writes_from_same_block.cu 2025-07-24T05:03:04.7310611Z tmpxft_00001668_00000000-7_CUDAAssertionsTest_multiple_writes_from_same_block.cudafe1.cpp 2025-07-24T05:03:04.7311546Z [7216/7681] Building CXX object caffe2\CMakeFiles\caffe2_nvrtc.dir\__\aten\src\ATen\cuda\nvrtc_stub\ATenNVRTC.cpp.obj 2025-07-24T05:03:05.9260424Z [7217/7681] Building CXX object c10\cuda\test\CMakeFiles\c10_cuda_CUDATest.dir\impl\CUDATest.cpp.obj 2025-07-24T05:03:06.7743271Z [7218/7681] Building CXX object caffe2\CMakeFiles\Dimname_test.dir\__\aten\src\ATen\test\Dimname_test.cpp.obj 2025-07-24T05:03:18.0783088Z [7219/7681] Building CXX object caffe2\CMakeFiles\MaybeOwned_test.dir\__\aten\src\ATen\test\MaybeOwned_test.cpp.obj 2025-07-24T05:03:20.1620569Z [7220/7681] Building CXX object caffe2\CMakeFiles\Dict_test.dir\__\aten\src\ATen\test\Dict_test.cpp.obj 2025-07-24T05:03:20.8843101Z [7221/7681] Building CXX object caffe2\CMakeFiles\NamedTensor_test.dir\__\aten\src\ATen\test\NamedTensor_test.cpp.obj 2025-07-24T05:03:50.0294551Z [7222/7681] Building CXX object caffe2\CMakeFiles\apply_utils_test.dir\__\aten\src\ATen\test\apply_utils_test.cpp.obj 2025-07-24T05:03:58.7073094Z [7223/7681] Building CXX object caffe2\CMakeFiles\atest.dir\__\aten\src\ATen\test\atest.cpp.obj 2025-07-24T05:03:59.6926315Z [7224/7681] Building CXX object caffe2\CMakeFiles\broadcast_test.dir\__\aten\src\ATen\test\broadcast_test.cpp.obj 2025-07-24T05:04:01.2537495Z [7225/7681] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX2.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-07-24T05:04:01.2539484Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T05:04:01.2541738Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T05:04:01.4238726Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T05:04:01.4240788Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-24T05:04:01.4242354Z [7226/7681] Building CXX object caffe2\CMakeFiles\basic.dir\__\aten\src\ATen\test\basic.cpp.obj 2025-07-24T05:04:01.4835053Z [7227/7681] Building CXX object caffe2\CMakeFiles\cpu_allocator_test.dir\__\aten\src\ATen\test\cpu_allocator_test.cpp.obj 2025-07-24T05:04:05.3699953Z [7228/7681] Building CXX object caffe2\CMakeFiles\vec_test_all_types_DEFAULT.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-07-24T05:04:11.7207927Z [7229/7681] Building CXX object caffe2\CMakeFiles\cpu_profiling_allocator_test.dir\__\aten\src\ATen\test\cpu_profiling_allocator_test.cpp.obj 2025-07-24T05:04:11.9791712Z [7230/7681] Building CXX object caffe2\CMakeFiles\cpu_generator_test.dir\__\aten\src\ATen\test\cpu_generator_test.cpp.obj 2025-07-24T05:04:12.6157097Z [7231/7681] Building CXX object caffe2\CMakeFiles\dlconvertor_test.dir\__\aten\src\ATen\test\dlconvertor_test.cpp.obj 2025-07-24T05:04:14.5726247Z [7232/7681] Building CXX object caffe2\CMakeFiles\extension_backend_test.dir\__\aten\src\ATen\test\extension_backend_test.cpp.obj 2025-07-24T05:04:18.0606459Z [7233/7681] Building CXX object caffe2\CMakeFiles\half_test.dir\__\aten\src\ATen\test\half_test.cpp.obj 2025-07-24T05:04:23.9105598Z [7234/7681] Building CXX object caffe2\CMakeFiles\lazy_tensor_test.dir\__\aten\src\ATen\test\lazy_tensor_test.cpp.obj 2025-07-24T05:04:26.5684446Z [7235/7681] Building CXX object caffe2\CMakeFiles\memory_format_test.dir\__\aten\src\ATen\test\memory_format_test.cpp.obj 2025-07-24T05:04:26.8735472Z [7236/7681] Building CXX object caffe2\CMakeFiles\math_kernel_test.dir\__\aten\src\ATen\test\math_kernel_test.cpp.obj 2025-07-24T05:04:29.0267398Z [7237/7681] Building CXX object caffe2\CMakeFiles\operator_name_test.dir\__\aten\src\ATen\test\operator_name_test.cpp.obj 2025-07-24T05:04:30.0168690Z [7238/7681] Building CXX object caffe2\CMakeFiles\memory_overlapping_test.dir\__\aten\src\ATen\test\memory_overlapping_test.cpp.obj 2025-07-24T05:04:31.9136047Z [7239/7681] Building CXX object caffe2\CMakeFiles\cpu_rng_test.dir\__\aten\src\ATen\test\cpu_rng_test.cpp.obj 2025-07-24T05:04:38.6167243Z [7240/7681] Building CXX object caffe2\CMakeFiles\ivalue_test.dir\__\aten\src\ATen\test\ivalue_test.cpp.obj 2025-07-24T05:04:39.9958625Z [7241/7681] Building CXX object caffe2\CMakeFiles\native_test.dir\__\aten\src\ATen\test\native_test.cpp.obj 2025-07-24T05:04:41.0785371Z [7242/7681] Building CXX object caffe2\CMakeFiles\operators_test.dir\__\aten\src\ATen\test\operators_test.cpp.obj 2025-07-24T05:04:41.5469034Z [7243/7681] Building CXX object caffe2\CMakeFiles\packedtensoraccessor_test.dir\__\aten\src\ATen\test\packedtensoraccessor_test.cpp.obj 2025-07-24T05:04:45.8154499Z [7244/7681] Building CXX object caffe2\CMakeFiles\pow_test.dir\__\aten\src\ATen\test\pow_test.cpp.obj 2025-07-24T05:04:46.5835023Z [7245/7681] Building CXX object caffe2\CMakeFiles\mobile_memory_cleanup.dir\__\aten\src\ATen\test\mobile_memory_cleanup.cpp.obj 2025-07-24T05:04:49.6281565Z [7246/7681] Building CXX object caffe2\CMakeFiles\quantized_test.dir\__\aten\src\ATen\test\quantized_test.cpp.obj 2025-07-24T05:04:51.7693402Z [7247/7681] Building CXX object caffe2\CMakeFiles\reportMemoryUsage_test.dir\__\aten\src\ATen\test\reportMemoryUsage_test.cpp.obj 2025-07-24T05:04:52.5847883Z [7248/7681] Building CXX object caffe2\CMakeFiles\reduce_ops_test.dir\__\aten\src\ATen\test\reduce_ops_test.cpp.obj 2025-07-24T05:04:55.1753274Z [7249/7681] Building CXX object caffe2\CMakeFiles\scalar_tensor_test.dir\__\aten\src\ATen\test\scalar_tensor_test.cpp.obj 2025-07-24T05:04:55.5624707Z [7250/7681] Building CXX object caffe2\CMakeFiles\StorageUtils_test.dir\__\aten\src\ATen\test\StorageUtils_test.cpp.obj 2025-07-24T05:04:57.1042046Z [7251/7681] Building CXX object caffe2\CMakeFiles\scalar_test.dir\__\aten\src\ATen\test\scalar_test.cpp.obj 2025-07-24T05:04:59.9805126Z [7252/7681] Building CXX object caffe2\CMakeFiles\type_ptr_test.dir\__\aten\src\ATen\test\type_ptr_test.cpp.obj 2025-07-24T05:05:00.0446618Z [7253/7681] Building CXX object caffe2\CMakeFiles\stride_properties_test.dir\__\aten\src\ATen\test\stride_properties_test.cpp.obj 2025-07-24T05:05:01.9645712Z [7254/7681] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX512.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-07-24T05:05:05.3376214Z [7255/7681] Building CXX object caffe2\CMakeFiles\thread_init_test.dir\__\aten\src\ATen\test\thread_init_test.cpp.obj 2025-07-24T05:05:05.6084281Z [7256/7681] Building CXX object caffe2\CMakeFiles\tensor_iterator_test.dir\__\aten\src\ATen\test\tensor_iterator_test.cpp.obj 2025-07-24T05:05:07.0677556Z [7257/7681] Building CXX object caffe2\CMakeFiles\test_parallel.dir\__\aten\src\ATen\test\test_parallel.cpp.obj 2025-07-24T05:05:10.3312733Z [7258/7681] Building CXX object caffe2\CMakeFiles\verify_api_visibility.dir\__\aten\src\ATen\test\verify_api_visibility.cpp.obj 2025-07-24T05:05:10.7526119Z [7259/7681] Building CXX object caffe2\CMakeFiles\undefined_tensor_test.dir\__\aten\src\ATen\test\undefined_tensor_test.cpp.obj 2025-07-24T05:05:14.1233980Z [7260/7681] Building CXX object caffe2\CMakeFiles\legacy_vmap_test.dir\__\aten\src\ATen\test\legacy_vmap_test.cpp.obj 2025-07-24T05:05:15.9156729Z [7261/7681] Building CXX object caffe2\CMakeFiles\weakref_test.dir\__\aten\src\ATen\test\weakref_test.cpp.obj 2025-07-24T05:05:16.1273796Z [7262/7681] Building CXX object caffe2\CMakeFiles\wrapdim_test.dir\__\aten\src\ATen\test\wrapdim_test.cpp.obj 2025-07-24T05:05:17.9175993Z [7263/7681] Building CXX object caffe2\CMakeFiles\xla_tensor_test.dir\__\aten\src\ATen\test\xla_tensor_test.cpp.obj 2025-07-24T05:05:19.0210056Z [7264/7681] Building CXX object caffe2\CMakeFiles\type_test.dir\__\aten\src\ATen\test\type_test.cpp.obj 2025-07-24T05:05:19.7072550Z [7265/7681] Building CXX object caffe2\CMakeFiles\List_test.dir\__\aten\src\ATen\core\List_test.cpp.obj 2025-07-24T05:05:20.8231801Z [7266/7681] Building CXX object caffe2\CMakeFiles\IListRef_test.dir\__\aten\src\ATen\core\IListRef_test.cpp.obj 2025-07-24T05:05:27.1210173Z [7267/7681] Building CXX object caffe2\CMakeFiles\kernel_function_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_test.cpp.obj 2025-07-24T05:05:27.8418058Z [7268/7681] Building CXX object caffe2\CMakeFiles\kernel_stackbased_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_stackbased_test.cpp.obj 2025-07-24T05:05:29.2780154Z [7269/7681] Building CXX object caffe2\CMakeFiles\kernel_function_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_legacy_test.cpp.obj 2025-07-24T05:05:29.4766215Z [7270/7681] Building CXX object caffe2\CMakeFiles\KernelFunction_test.dir\__\aten\src\ATen\core\boxing\KernelFunction_test.cpp.obj 2025-07-24T05:05:30.9074635Z [7271/7681] Building CXX object caffe2\CMakeFiles\CppSignature_test.dir\__\aten\src\ATen\core\dispatch\CppSignature_test.cpp.obj 2025-07-24T05:05:32.5044914Z [7272/7681] Building CXX object caffe2\CMakeFiles\op_allowlist_test.dir\__\aten\src\ATen\core\op_registration\op_allowlist_test.cpp.obj 2025-07-24T05:05:32.5274442Z [7273/7681] Building CXX object caffe2\CMakeFiles\kernel_lambda_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_test.cpp.obj 2025-07-24T05:05:33.4741920Z [7274/7681] Building CXX object caffe2\CMakeFiles\make_boxed_from_unboxed_functor_test.dir\__\aten\src\ATen\core\boxing\impl\make_boxed_from_unboxed_functor_test.cpp.obj 2025-07-24T05:05:34.2597526Z [7275/7681] Building CXX object caffe2\CMakeFiles\kernel_lambda_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_legacy_test.cpp.obj 2025-07-24T05:05:35.8051014Z [7276/7681] Building CXX object caffe2\CMakeFiles\cuda_apply_test.dir\__\aten\src\ATen\test\cuda_apply_test.cpp.obj 2025-07-24T05:05:36.1517725Z [7277/7681] Building CXX object caffe2\CMakeFiles\inline_container_test.dir\serialize\inline_container_test.cc.obj 2025-07-24T05:05:41.6774399Z [7278/7681] Building CXX object caffe2\CMakeFiles\backend_fallback_test.dir\__\aten\src\ATen\core\dispatch\backend_fallback_test.cpp.obj 2025-07-24T05:05:42.4259681Z [7279/7681] Building CUDA object caffe2\CMakeFiles\cuda_atomic_ops_test.dir\__\aten\src\ATen\test\cuda_atomic_ops_test.cu.obj 2025-07-24T05:05:42.6255910Z cuda_atomic_ops_test.cu 2025-07-24T05:05:42.6256543Z tmpxft_00001610_00000000-7_cuda_atomic_ops_test.cudafe1.cpp 2025-07-24T05:05:42.6257824Z [7280/7681] Building CUDA object caffe2\CMakeFiles\cuda_complex_math_test.dir\__\aten\src\ATen\test\cuda_complex_math_test.cu.obj 2025-07-24T05:05:42.6383096Z cuda_complex_math_test.cu 2025-07-24T05:05:42.6383502Z tmpxft_00000ffc_00000000-7_cuda_complex_math_test.cudafe1.cpp 2025-07-24T05:05:42.6384205Z [7281/7681] Building CUDA object caffe2\CMakeFiles\cuda_complex_test.dir\__\aten\src\ATen\test\cuda_complex_test.cu.obj 2025-07-24T05:05:42.8563232Z cuda_complex_test.cu 2025-07-24T05:05:42.8563612Z tmpxft_000015c0_00000000-7_cuda_complex_test.cudafe1.cpp 2025-07-24T05:05:42.8572487Z [7282/7681] Building CXX object caffe2\CMakeFiles\cuda_allocator_test.dir\__\aten\src\ATen\test\cuda_allocator_test.cpp.obj 2025-07-24T05:05:45.0558954Z [7283/7681] Building CUDA object caffe2\CMakeFiles\cuda_cub_test.dir\__\aten\src\ATen\test\cuda_cub_test.cu.obj 2025-07-24T05:05:45.5261596Z cuda_cub_test.cu 2025-07-24T05:05:45.5262101Z tmpxft_00000dd0_00000000-7_cuda_cub_test.cudafe1.cpp 2025-07-24T05:05:45.5263971Z [7284/7681] Building CXX object caffe2\CMakeFiles\cuda_caching_host_allocator_test.dir\__\aten\src\ATen\test\cuda_caching_host_allocator_test.cpp.obj 2025-07-24T05:05:45.8963348Z [7285/7681] Building CXX object caffe2\CMakeFiles\cuda_device_test.dir\__\aten\src\ATen\test\cuda_device_test.cpp.obj 2025-07-24T05:05:46.4618216Z [7286/7681] Building CXX object caffe2\CMakeFiles\cuda_exchange_device_test.dir\__\aten\src\ATen\test\cuda_exchange_device_test.cpp.obj 2025-07-24T05:05:49.6538857Z [7287/7681] Building CUDA object caffe2\CMakeFiles\cuda_integer_divider_test.dir\__\aten\src\ATen\test\cuda_integer_divider_test.cu.obj 2025-07-24T05:05:49.6543467Z cuda_integer_divider_test.cu 2025-07-24T05:05:49.6550922Z tmpxft_00001454_00000000-7_cuda_integer_divider_test.cudafe1.cpp 2025-07-24T05:05:49.6552794Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data 2025-07-24T05:05:49.6577496Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): note: the template instantiation context (the oldest one first) is 2025-07-24T05:05:49.6580201Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\test\cuda_integer_divider_test.cu(181): note: see reference to class template instantiation 'IntDividerTester' being compiled 2025-07-24T05:05:49.6583048Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\test\cuda_integer_divider_test.cu(86): note: while compiling class template member function 'void IntDividerTester::addTestCase(Value,Value,int)' 2025-07-24T05:05:49.6584812Z with 2025-07-24T05:05:49.6585145Z [ 2025-07-24T05:05:49.6585489Z Value=unsigned __int64 2025-07-24T05:05:49.6585933Z ] 2025-07-24T05:05:49.6588088Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\test\cuda_integer_divider_test.cu(188): note: see the first reference to 'IntDividerTester::addTestCase' in 'testUint64Divider' 2025-07-24T05:05:49.6591324Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\test\cuda_integer_divider_test.cu(92): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::emplace_back(Value &,unsigned __int64 &&,int &)' being compiled 2025-07-24T05:05:49.6593587Z with 2025-07-24T05:05:49.6593889Z [ 2025-07-24T05:05:49.6594266Z _Ty=TestCase, 2025-07-24T05:05:49.6594943Z Value=unsigned __int64 2025-07-24T05:05:49.6595361Z ] 2025-07-24T05:05:49.6598805Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(862): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(Value &,unsigned __int64 &&,int &)' being compiled 2025-07-24T05:05:49.6677297Z with 2025-07-24T05:05:49.6678473Z [ 2025-07-24T05:05:49.6778965Z _Ty=TestCase, 2025-07-24T05:05:49.6779651Z Value=unsigned __int64 2025-07-24T05:05:49.6961290Z ] 2025-07-24T05:05:49.6963754Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(780): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(Value &,unsigned __int64 &&,int &)' being compiled 2025-07-24T05:05:49.7048685Z with 2025-07-24T05:05:49.7049241Z [ 2025-07-24T05:05:49.7089916Z _Ty=TestCase, 2025-07-24T05:05:49.7094745Z Value=unsigned __int64 2025-07-24T05:05:49.7095455Z ] 2025-07-24T05:05:52.4215303Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(798): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,Value&,unsigned __int64,int&>(_Alloc &,_Objty *const ,Value &,unsigned __int64 &&,int &)' being compiled 2025-07-24T05:05:52.4217960Z with 2025-07-24T05:05:52.4219998Z [ 2025-07-24T05:05:52.4220652Z _Alloc=std::allocator>, 2025-07-24T05:05:52.4222249Z _Ty=TestCase, 2025-07-24T05:05:52.4222721Z Value=unsigned __int64, 2025-07-24T05:05:52.4224155Z _Objty=TestCase 2025-07-24T05:05:52.4224616Z ] 2025-07-24T05:05:52.4227019Z [7288/7681] Building CUDA object caffe2\CMakeFiles\cuda_distributions_test.dir\__\aten\src\ATen\test\cuda_distributions_test.cu.obj 2025-07-24T05:05:55.2924961Z cuda_distributions_test.cu 2025-07-24T05:05:55.2925663Z tmpxft_000006d8_00000000-7_cuda_distributions_test.cudafe1.cpp 2025-07-24T05:05:55.2926992Z [7289/7681] Building CUDA object caffe2\CMakeFiles\cuda_generator_test.dir\__\aten\src\ATen\test\cuda_generator_test.cu.obj 2025-07-24T05:05:55.6519047Z cuda_generator_test.cu 2025-07-24T05:05:55.6519624Z tmpxft_00001688_00000000-7_cuda_generator_test.cudafe1.cpp 2025-07-24T05:05:55.6520740Z [7290/7681] Building CUDA object caffe2\CMakeFiles\cuda_half_test.dir\__\aten\src\ATen\test\cuda_half_test.cu.obj 2025-07-24T05:05:56.3421514Z cuda_half_test.cu 2025-07-24T05:05:56.3422085Z tmpxft_00001790_00000000-7_cuda_half_test.cudafe1.cpp 2025-07-24T05:05:56.3423315Z [7291/7681] Building CUDA object caffe2\CMakeFiles\cuda_optional_test.dir\__\aten\src\ATen\test\cuda_optional_test.cu.obj 2025-07-24T05:05:57.9580863Z cuda_optional_test.cu 2025-07-24T05:05:57.9581455Z tmpxft_000015cc_00000000-7_cuda_optional_test.cudafe1.cpp 2025-07-24T05:05:57.9582800Z [7292/7681] Building CXX object caffe2\CMakeFiles\cuda_allocatorTraceTracker_test.dir\__\aten\src\ATen\test\cuda_allocatorTraceTracker_test.cpp.obj 2025-07-24T05:05:58.5295393Z [7293/7681] Building CUDA object caffe2\CMakeFiles\cuda_packedtensoraccessor_test.dir\__\aten\src\ATen\test\cuda_packedtensoraccessor_test.cu.obj 2025-07-24T05:05:58.7201726Z cuda_packedtensoraccessor_test.cu 2025-07-24T05:05:58.7202200Z tmpxft_000014e4_00000000-7_cuda_packedtensoraccessor_test.cudafe1.cpp 2025-07-24T05:05:58.7202866Z [7294/7681] Building C object sleef\src\libm\CMakeFiles\mkrename_gnuabi.dir\mkrename_gnuabi.c.obj 2025-07-24T05:05:58.8792271Z [7295/7681] Building C object sleef\src\libm\CMakeFiles\mkmasked_gnuabi.dir\mkmasked_gnuabi.c.obj 2025-07-24T05:05:59.0506750Z [7296/7681] Building C object sleef\src\common\CMakeFiles\addSuffix.dir\addSuffix.c.obj 2025-07-24T05:06:00.1985250Z [7297/7681] Building CXX object caffe2\CMakeFiles\cuda_dlconvertor_test.dir\__\aten\src\ATen\test\cuda_dlconvertor_test.cpp.obj 2025-07-24T05:06:00.3295553Z [7298/7681] Building CXX object caffe2\CMakeFiles\op_registration_test.dir\__\aten\src\ATen\core\op_registration\op_registration_test.cpp.obj 2025-07-24T05:06:00.4315456Z [7299/7681] Building CXX object caffe2\CMakeFiles\cuda_stream_test.dir\__\aten\src\ATen\test\cuda_stream_test.cpp.obj 2025-07-24T05:06:01.8430287Z [7300/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\__\common\main.cpp.obj 2025-07-24T05:06:02.6774810Z [7301/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\source_range_test.cpp.obj 2025-07-24T05:06:03.5236744Z [7302/7681] Building CUDA object caffe2\CMakeFiles\cuda_vectorized_test.dir\__\aten\src\ATen\test\cuda_vectorized_test.cu.obj 2025-07-24T05:06:04.5500509Z cuda_vectorized_test.cu 2025-07-24T05:06:04.5500914Z tmpxft_0000121c_00000000-7_cuda_vectorized_test.cudafe1.cpp 2025-07-24T05:06:04.5501697Z [7303/7681] Building CXX object caffe2\CMakeFiles\cuda_reportMemoryUsage_test.dir\__\aten\src\ATen\test\cuda_reportMemoryUsage_test.cpp.obj 2025-07-24T05:06:07.7980629Z [7304/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_add_if_then_else.cpp.obj 2025-07-24T05:06:08.8895844Z [7305/7681] Building CXX object caffe2\CMakeFiles\cuda_cudnn_test.dir\__\aten\src\ATen\test\cuda_cudnn_test.cpp.obj 2025-07-24T05:06:12.8883477Z [7306/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_load_upgraders.cpp.obj 2025-07-24T05:06:16.0768139Z [7307/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_op_replacement.cpp.obj 2025-07-24T05:06:17.4071629Z [7308/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_upgrader_utils.cpp.obj 2025-07-24T05:06:17.7924825Z [7309/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_argument_spec.cpp.obj 2025-07-24T05:06:18.3920404Z [7310/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_alias_analysis.cpp.obj 2025-07-24T05:06:22.0749775Z [7311/7681] Building CXX object test_jit\CMakeFiles\torchbind_test.dir\test_custom_class_registrations.cpp.obj 2025-07-24T05:06:27.3165467Z [7312/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_parser.cpp.obj 2025-07-24T05:06:27.4355933Z [7313/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_autodiff.cpp.obj 2025-07-24T05:06:27.6484850Z [7314/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_code_template.cpp.obj 2025-07-24T05:06:34.3196407Z [7315/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_concat_opt.cpp.obj 2025-07-24T05:06:34.7871025Z [7316/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_constant_pooling.cpp.obj 2025-07-24T05:06:35.5320566Z [7317/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_create_autodiff_subgraphs.cpp.obj 2025-07-24T05:06:36.3825137Z [7318/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cleanup_passes.cpp.obj 2025-07-24T05:06:37.3753709Z [7319/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_backend.cpp.obj 2025-07-24T05:06:39.5759008Z [7320/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_type.cpp.obj 2025-07-24T05:06:39.7643758Z [7321/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_import.cpp.obj 2025-07-24T05:06:44.0686442Z [7322/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_dce.cpp.obj 2025-07-24T05:06:51.3284873Z [7323/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class.cpp.obj 2025-07-24T05:06:51.8908939Z [7324/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_operators.cpp.obj 2025-07-24T05:06:53.6598004Z [7325/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_fuser.cpp.obj 2025-07-24T05:06:57.3208885Z [7326/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class_registrations.cpp.obj 2025-07-24T05:07:00.1261744Z [7327/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_inliner.cpp.obj 2025-07-24T05:07:01.0921504Z [7328/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_executor.cpp.obj 2025-07-24T05:07:01.3858757Z [7329/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_iterator.cpp.obj 2025-07-24T05:07:04.0171043Z [7330/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lexer.cpp.obj 2025-07-24T05:07:06.0425210Z [7331/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_ir.cpp.obj 2025-07-24T05:07:06.5771037Z [7332/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cs_debug_info_serialization.cpp.obj 2025-07-24T05:07:08.4472642Z [7333/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_irparser.cpp.obj 2025-07-24T05:07:09.2690197Z [7334/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_type.cpp.obj 2025-07-24T05:07:14.1108369Z [7335/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interface.cpp.obj 2025-07-24T05:07:16.5051720Z [7336/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_memory_dag.cpp.obj 2025-07-24T05:07:16.6064917Z [7337/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interpreter.cpp.obj 2025-07-24T05:07:22.2746580Z [7338/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_mobile_type_parser.cpp.obj 2025-07-24T05:07:24.0966643Z [7339/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_peephole_optimize.cpp.obj 2025-07-24T05:07:24.5866971Z [7340/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_qualified_name.cpp.obj 2025-07-24T05:07:29.2748873Z [7341/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter_direct.cpp.obj 2025-07-24T05:07:29.9887493Z [7342/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_trainer.cpp.obj 2025-07-24T05:07:30.3407191Z [7343/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter.cpp.obj 2025-07-24T05:07:36.1566956Z [7344/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_misc.cpp.obj 2025-07-24T05:07:38.0784061Z [7345/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_info.cpp.obj 2025-07-24T05:07:38.2700209Z [7346/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_matching.cpp.obj 2025-07-24T05:07:39.5472238Z [7347/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_matcher.cpp.obj 2025-07-24T05:07:42.3152677Z [7348/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_module_api.cpp.obj 2025-07-24T05:07:42.5864828Z [7349/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_stack_opt.cpp.obj 2025-07-24T05:07:45.3224353Z [7350/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_rewriter.cpp.obj 2025-07-24T05:07:46.3025568Z [7351/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_utils.cpp.obj 2025-07-24T05:07:46.5867372Z [7352/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_union.cpp.obj 2025-07-24T05:07:48.3948077Z [7353/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_file_format.cpp.obj 2025-07-24T05:07:50.2691573Z [7354/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_save_load.cpp.obj 2025-07-24T05:07:50.6588426Z [7355/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\common\main.cpp.obj 2025-07-24T05:07:50.8653374Z [7356/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_script_profile.cpp.obj 2025-07-24T05:07:53.3858004Z [7357/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_utils.cpp.obj 2025-07-24T05:07:53.6462587Z [7358/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_logging_levels.cpp.obj 2025-07-24T05:07:55.5711301Z [7359/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_file_util.cpp.obj 2025-07-24T05:07:57.3801285Z [7360/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_shape_analysis.cpp.obj 2025-07-24T05:08:01.3951966Z [7361/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_function_schema.cpp.obj 2025-07-24T05:08:06.3968408Z [7362/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_execution_planner.cpp.obj 2025-07-24T05:08:10.2495261Z [7363/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_execution_frame.cpp.obj 2025-07-24T05:08:11.9395138Z [7364/7681] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_flatbuffer.cpp.obj 2025-07-24T05:08:12.8841991Z [7365/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_alias_analyzer.cpp.obj 2025-07-24T05:08:13.8331681Z [7366/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_graph.cpp.obj 2025-07-24T05:08:14.0567507Z [7367/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_layout_planner_algorithm.cpp.obj 2025-07-24T05:08:14.1460980Z [7368/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_graph_signature.cpp.obj 2025-07-24T05:08:14.6131296Z [7369/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_mpmc_queue.cpp.obj 2025-07-24T05:08:16.1196479Z [7370/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_placement.cpp.obj 2025-07-24T05:08:20.2440075Z [7371/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_c10_kernel.cpp.obj 2025-07-24T05:08:23.6244281Z [7372/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_tensor_meta.cpp.obj 2025-07-24T05:08:24.2352668Z [7373/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_itree.cpp.obj 2025-07-24T05:08:25.0907813Z [7374/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\TensorMeta.cpp.obj 2025-07-24T05:08:27.8363494Z [7375/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_serialization.cpp.obj 2025-07-24T05:08:29.9167931Z [7376/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\PlacementUtils.cpp.obj 2025-07-24T05:08:32.1940878Z [7377/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_op_kernel.cpp.obj 2025-07-24T05:08:33.9089337Z [7378/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\GraphSignature.cpp.obj 2025-07-24T05:08:34.9518555Z [7379/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\common\FileUtil.cpp.obj 2025-07-24T05:08:39.1600599Z [7380/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\Graph.cpp.obj 2025-07-24T05:08:40.9392493Z [7381/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\FunctionSchema.cpp.obj 2025-07-24T05:08:41.8349790Z [7382/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\Serialization.cpp.obj 2025-07-24T05:08:46.5751332Z [7383/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_weights.cpp.obj 2025-07-24T05:08:46.6831112Z [7384/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\OpKernel.cpp.obj 2025-07-24T05:08:47.0789395Z [7385/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\Bump.cpp.obj 2025-07-24T05:08:47.9989509Z [7386/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\GreedyBySize.cpp.obj 2025-07-24T05:08:48.9590019Z [7387/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\DisjointStorageGroups.cpp.obj 2025-07-24T05:08:49.7610367Z [7388/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ExecutionPlanner.cpp.obj 2025-07-24T05:08:52.5834986Z [7389/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\Weights.cpp.obj 2025-07-24T05:08:54.9281270Z [7390/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\detail\ITree.cpp.obj 2025-07-24T05:09:00.8333900Z [7391/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ExecutionFrame.cpp.obj 2025-07-24T05:09:02.1509298Z [7392/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\LayoutPlanner.cpp.obj 2025-07-24T05:09:03.4745186Z [7393/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\C10Kernel.cpp.obj 2025-07-24T05:09:03.5500592Z [7394/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\AliasAnalyzer.cpp.obj 2025-07-24T05:09:07.4512078Z [7395/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\LayoutManager.cpp.obj 2025-07-24T05:09:12.1192078Z [7396/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\Executor.cpp.obj 2025-07-24T05:09:16.8129779Z [7397/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\KernelFactory.cpp.obj 2025-07-24T05:09:19.9228004Z [7398/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ConstantFolder.cpp.obj 2025-07-24T05:09:21.6110423Z [7399/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\SerialGraphExecutor.cpp.obj 2025-07-24T05:09:21.6760073Z [7400/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\GraphExecutorBase.cpp.obj 2025-07-24T05:09:22.5877544Z [7401/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ParallelGraphExecutor.cpp.obj 2025-07-24T05:09:22.6456432Z [7402/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_approx.cpp.obj 2025-07-24T05:09:23.5642377Z [7403/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\__\common\main.cpp.obj 2025-07-24T05:09:27.2159985Z [7404/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\AutoFunctionalizeKernel.cpp.obj 2025-07-24T05:09:30.8551913Z [7405/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\CallTorchBindKernel.cpp.obj 2025-07-24T05:09:33.2564626Z [7406/7681] Building CXX object test_inductor\CMakeFiles\aoti_custom_ops.dir\custom_ops.cpp.obj 2025-07-24T05:09:33.3636220Z [7407/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\padded_buffer.cpp.obj 2025-07-24T05:09:37.3866090Z [7408/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_aten.cpp.obj 2025-07-24T05:09:37.5105884Z [7409/7681] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\HigherOrderKernel.cpp.obj 2025-07-24T05:09:39.8439969Z [7410/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_boundsinference.cpp.obj 2025-07-24T05:09:45.6226361Z [7411/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_cpp_codegen.cpp.obj 2025-07-24T05:09:46.7753066Z [7412/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ir_printer.cpp.obj 2025-07-24T05:09:50.8872248Z [7413/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_expr.cpp.obj 2025-07-24T05:09:52.2341969Z [7414/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_conv.cpp.obj 2025-07-24T05:09:53.5469719Z [7415/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ir_verifier.cpp.obj 2025-07-24T05:09:57.7338493Z [7416/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_external_calls.cpp.obj 2025-07-24T05:09:57.7873466Z [7417/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_dynamic_shapes.cpp.obj 2025-07-24T05:10:00.9659191Z [7418/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_graph_opt.cpp.obj 2025-07-24T05:10:13.1455035Z [7419/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_memdependency.cpp.obj 2025-07-24T05:10:15.3891663Z [7420/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_memplanning.cpp.obj 2025-07-24T05:10:17.9495285Z [7421/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_kernel.cpp.obj 2025-07-24T05:10:19.2768149Z [7422/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_loopnest.cpp.obj 2025-07-24T05:10:23.7339144Z [7423/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ops.cpp.obj 2025-07-24T05:10:26.3189461Z [7424/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_reductions.cpp.obj 2025-07-24T05:10:30.2913568Z [7425/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_quantization.cpp.obj 2025-07-24T05:10:33.9069112Z [7426/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_te_fuser_pass.cpp.obj 2025-07-24T05:10:34.4207133Z [7427/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_registerizer.cpp.obj 2025-07-24T05:10:35.7168726Z [7428/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_type.cpp.obj 2025-07-24T05:10:42.6111218Z [7429/7681] Building CXX object test_cpp_c10d\CMakeFiles\BackoffTest.dir\BackoffTest.cpp.obj 2025-07-24T05:10:43.3992392Z [7430/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_type_specializations.cpp.obj 2025-07-24T05:10:43.7009567Z [7431/7681] Building CXX object test_cpp_c10d\CMakeFiles\FileStoreTest.dir\FileStoreTest.cpp.obj 2025-07-24T05:10:44.2131677Z [7432/7681] Building CXX object test_cpp_c10d\CMakeFiles\TCPStoreTest.dir\TCPStoreTest.cpp.obj 2025-07-24T05:10:45.4735247Z [7433/7681] Building CXX object test_api\CMakeFiles\test_api.dir\__\common\main.cpp.obj 2025-07-24T05:10:47.3801836Z [7434/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_simplify.cpp.obj 2025-07-24T05:10:49.5583453Z [7435/7681] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_cuda.cpp.obj 2025-07-24T05:10:58.9465889Z [7436/7681] Building CXX object test_cpp_c10d\CMakeFiles\ProcessGroupGlooAsyncTest.dir\ProcessGroupGlooAsyncTest.cpp.obj 2025-07-24T05:10:59.5391559Z [7437/7681] Building CXX object test_cpp_c10d\CMakeFiles\ProcessGroupGlooTest.dir\ProcessGroupGlooTest.cpp.obj 2025-07-24T05:11:00.5414545Z [7438/7681] Building CXX object test_tensorexpr\CMakeFiles\tutorial_tensorexpr.dir\tutorial.cpp.obj 2025-07-24T05:11:08.8073974Z [7439/7681] Building CXX object test_api\CMakeFiles\test_api.dir\any.cpp.obj 2025-07-24T05:11:13.0931548Z [7440/7681] Building CXX object test_api\CMakeFiles\test_api.dir\enum.cpp.obj 2025-07-24T05:11:14.7320612Z [7441/7681] Building CXX object test_api\CMakeFiles\test_api.dir\autograd.cpp.obj 2025-07-24T05:11:22.1163514Z [7442/7681] Building CXX object test_api\CMakeFiles\test_api.dir\dataloader.cpp.obj 2025-07-24T05:11:22.1779366Z [7443/7681] Building CXX object test_api\CMakeFiles\test_api.dir\expanding-array.cpp.obj 2025-07-24T05:11:22.7847979Z [7444/7681] Building CXX object test_api\CMakeFiles\test_api.dir\fft.cpp.obj 2025-07-24T05:11:24.0777566Z [7445/7681] Building CXX object test_api\CMakeFiles\test_api.dir\memory.cpp.obj 2025-07-24T05:11:33.5252842Z [7446/7681] Building CXX object test_api\CMakeFiles\test_api.dir\functional.cpp.obj 2025-07-24T05:11:35.8820202Z [7447/7681] Building CXX object test_api\CMakeFiles\test_api.dir\init.cpp.obj 2025-07-24T05:11:37.9915137Z [7448/7681] Building CXX object test_api\CMakeFiles\test_api.dir\integration.cpp.obj 2025-07-24T05:11:38.7120599Z [7449/7681] Building CXX object test_api\CMakeFiles\test_api.dir\ivalue.cpp.obj 2025-07-24T05:11:40.4310685Z [7450/7681] Building CXX object test_api\CMakeFiles\test_api.dir\jit.cpp.obj 2025-07-24T05:11:45.1619209Z [7451/7681] Building CXX object test_api\CMakeFiles\test_api.dir\meta_tensor.cpp.obj 2025-07-24T05:11:45.9744748Z [7452/7681] Building CXX object test_api\CMakeFiles\test_api.dir\misc.cpp.obj 2025-07-24T05:11:56.3404531Z [7453/7681] Building CXX object test_api\CMakeFiles\test_api.dir\module.cpp.obj 2025-07-24T05:11:57.0414011Z [7454/7681] Building CXX object test_api\CMakeFiles\test_api.dir\moduledict.cpp.obj 2025-07-24T05:11:59.2917979Z [7455/7681] Building CXX object test_api\CMakeFiles\test_api.dir\modulelist.cpp.obj 2025-07-24T05:12:00.3847425Z [7456/7681] Building CXX object test_api\CMakeFiles\test_api.dir\nested.cpp.obj 2025-07-24T05:12:07.9860584Z [7457/7681] Building CXX object test_api\CMakeFiles\test_api.dir\parameterdict.cpp.obj 2025-07-24T05:12:09.5668810Z [7458/7681] Building CXX object test_api\CMakeFiles\test_api.dir\parameterlist.cpp.obj 2025-07-24T05:12:15.2758357Z [7459/7681] Building CXX object test_api\CMakeFiles\test_api.dir\modules.cpp.obj 2025-07-24T05:12:19.7665425Z [7460/7681] Building CXX object test_api\CMakeFiles\test_api.dir\namespace.cpp.obj 2025-07-24T05:12:22.8124141Z [7461/7681] Building CXX object test_api\CMakeFiles\test_api.dir\nn_utils.cpp.obj 2025-07-24T05:12:25.8329019Z [7462/7681] Building CXX object test_api\CMakeFiles\test_api.dir\ordered_dict.cpp.obj 2025-07-24T05:12:31.6284534Z [7463/7681] Building CXX object test_api\CMakeFiles\test_api.dir\optim.cpp.obj 2025-07-24T05:12:32.2395979Z [7464/7681] Building CXX object test_api\CMakeFiles\test_api.dir\rnn.cpp.obj 2025-07-24T05:12:37.2279739Z [7465/7681] Building CXX object test_api\CMakeFiles\test_api.dir\sequential.cpp.obj 2025-07-24T05:12:44.2603761Z [7466/7681] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_cuda.cpp.obj 2025-07-24T05:12:44.9409065Z [7467/7681] Building CXX object test_api\CMakeFiles\test_api.dir\transformer.cpp.obj 2025-07-24T05:12:46.3063760Z [7468/7681] Building CXX object test_api\CMakeFiles\test_api.dir\support.cpp.obj 2025-07-24T05:12:47.0517760Z [7469/7681] Building CXX object test_api\CMakeFiles\test_api.dir\special.cpp.obj 2025-07-24T05:12:47.6075702Z [7470/7681] Building CXX object test_api\CMakeFiles\test_api.dir\serialize.cpp.obj 2025-07-24T05:12:48.2592064Z [7471/7681] Building CXX object test_api\CMakeFiles\test_api.dir\static.cpp.obj 2025-07-24T05:13:00.1697243Z [7472/7681] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_indexing.cpp.obj 2025-07-24T05:13:04.7084138Z [7473/7681] Building CXX object test_api\CMakeFiles\test_api.dir\grad_mode.cpp.obj 2025-07-24T05:13:05.1468479Z [7474/7681] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options_cuda.cpp.obj 2025-07-24T05:13:06.0004967Z [7475/7681] Building CXX object test_api\CMakeFiles\test_api.dir\inference_mode.cpp.obj 2025-07-24T05:13:06.3349675Z [7476/7681] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options.cpp.obj 2025-07-24T05:13:07.4728365Z [7477/7681] Building CXX object test_api\CMakeFiles\test_api.dir\torch_include.cpp.obj 2025-07-24T05:13:08.7661192Z [7478/7681] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\__\common\main.cpp.obj 2025-07-24T05:13:10.6074173Z [7479/7681] Building CXX object test_api\CMakeFiles\test_api.dir\tensor.cpp.obj 2025-07-24T05:13:17.0266288Z [7480/7681] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_cache.cpp.obj 2025-07-24T05:13:20.0483417Z [7481/7681] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir.cpp.obj 2025-07-24T05:13:22.2049402Z [7482/7681] Building CXX object test_api\CMakeFiles\test_api.dir\operations.cpp.obj 2025-07-24T05:13:22.3319958Z [7483/7681] Building CXX object test_api\CMakeFiles\test_api.dir\parallel.cpp.obj 2025-07-24T05:13:24.2964891Z [7484/7681] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_permutation_util.cpp.obj 2025-07-24T05:13:24.5845565Z [7485/7681] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_misc.cpp.obj 2025-07-24T05:13:25.6485720Z [7486/7681] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir_util.cpp.obj 2025-07-24T05:13:26.3699357Z [7487/7681] Building CXX object test_api\CMakeFiles\parallel_benchmark.dir\parallel_benchmark.cpp.obj 2025-07-24T05:13:27.0340473Z [7488/7681] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_util.cpp.obj 2025-07-24T05:13:27.2153533Z [7489/7681] Building CXX object test_api\CMakeFiles\test_api.dir\nested_int.cpp.obj 2025-07-24T05:13:28.3505414Z [7490/7681] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_backend_device.cpp.obj 2025-07-24T05:13:30.1877980Z [7491/7681] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_shape.cpp.obj 2025-07-24T05:13:32.3627597Z [7492/7681] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_trie_cache.cpp.obj 2025-07-24T05:13:37.7029406Z [7493/7681] Building C object functorch\CMakeFiles\functorch.dir\csrc\dim\dim_opcode.c.obj 2025-07-24T05:13:39.9148041Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(41): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-07-24T05:13:39.9149041Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-07-24T05:13:39.9149894Z [7494/7681] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_lib.cpp.obj 2025-07-24T05:13:40.6624632Z [7495/7681] Linking CXX static library lib\libprotobuf-lite.lib 2025-07-24T05:13:40.7646686Z [7496/7681] Linking C static library lib\cpuinfo_internals.lib 2025-07-24T05:13:43.6261195Z [7497/7681] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\dim\dim.cpp.obj 2025-07-24T05:13:45.0205350Z [7498/7681] Linking CXX static library lib\gmock_main.lib 2025-07-24T05:13:45.1048715Z [7499/7681] Linking CXX static library lib\benchmark_main.lib 2025-07-24T05:13:45.1652736Z [7500/7681] Linking C static library lib\libjitprofiling.lib 2025-07-24T05:13:45.3251710Z [7501/7681] Linking CXX static library lib\fmt.lib 2025-07-24T05:13:45.4325741Z [7502/7681] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_graph_executor.cpp.obj 2025-07-24T05:13:46.4984282Z [7503/7681] Linking CXX executable bin\c10_DeviceGuard_test.exe 2025-07-24T05:13:46.5066308Z [7504/7681] Linking CXX executable bin\c10_CompileTimeFunctionPointer_test.exe 2025-07-24T05:13:46.7372928Z [7505/7681] Linking CXX executable bin\c10_Device_test.exe 2025-07-24T05:13:46.8351897Z [7506/7681] Linking CXX executable bin\c10_DispatchKeySet_test.exe 2025-07-24T05:13:46.9709174Z [7507/7681] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops_util.cpp.obj 2025-07-24T05:13:47.0502948Z [7508/7681] Linking CXX executable bin\c10_Scalar_test.exe 2025-07-24T05:13:47.0653331Z [7509/7681] Linking CXX executable bin\c10_StreamGuard_test.exe 2025-07-24T05:13:47.2327468Z [7510/7681] Linking CXX executable bin\c10_SymInt_test.exe 2025-07-24T05:13:47.3257732Z [7511/7681] Linking CXX executable bin\c10_InlineDeviceGuard_test.exe 2025-07-24T05:13:47.3604313Z [7512/7681] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_preprocess.cpp.obj 2025-07-24T05:13:47.4280984Z [7513/7681] Linking CXX executable bin\c10_InlineStreamGuard_test.exe 2025-07-24T05:13:47.6212493Z [7514/7681] Linking CXX executable bin\c10_ArrayRef_test.exe 2025-07-24T05:13:47.6404243Z [7515/7681] Linking CXX executable bin\c10_SizesAndStrides_test.exe 2025-07-24T05:13:47.7014435Z [7516/7681] Linking CXX executable bin\c10_Bitset_test.exe 2025-07-24T05:13:47.8432601Z [7517/7681] Linking CXX executable bin\c10_DeadlockDetection_test.exe 2025-07-24T05:13:47.8542855Z [7518/7681] Linking CXX executable bin\c10_ConstexprCrc_test.exe 2025-07-24T05:13:47.9596338Z [7519/7681] Linking CXX executable bin\c10_cow_test.exe 2025-07-24T05:13:48.0579365Z [7520/7681] Linking CXX executable bin\c10_Enumerate_test.exe 2025-07-24T05:13:48.1256335Z [7521/7681] Linking CXX executable bin\c10_Half_test.exe 2025-07-24T05:13:48.1923204Z [7522/7681] Linking CXX executable bin\c10_IntrusiveList_test.exe 2025-07-24T05:13:48.4071871Z [7523/7681] Linking CXX executable bin\c10_NetworkFlow_test.exe 2025-07-24T05:13:48.4557246Z [7524/7681] Linking CXX executable bin\c10_LeftRight_test.exe 2025-07-24T05:13:48.4567930Z [7525/7681] Linking CXX executable bin\c10_Semaphore_test.exe 2025-07-24T05:13:48.4578021Z [7526/7681] Linking CXX executable bin\c10_Metaprogramming_test.exe 2025-07-24T05:13:48.6893488Z [7527/7681] Linking CXX executable bin\c10_TypeList_test.exe 2025-07-24T05:13:48.6905666Z [7528/7681] Linking CXX executable bin\c10_Synchronized_test.exe 2025-07-24T05:13:48.6926308Z [7529/7681] Linking CXX executable bin\c10_TypeIndex_test.exe 2025-07-24T05:13:48.7646210Z [7530/7681] Linking CXX executable bin\c10_ThreadLocal_test.exe 2025-07-24T05:13:48.8792848Z [7531/7681] Linking CXX executable bin\c10_TypeTraits_test.exe 2025-07-24T05:13:48.9187978Z [7532/7681] Linking CXX executable bin\c10_accumulate_test.exe 2025-07-24T05:13:48.9339065Z [7533/7681] Linking CXX executable bin\c10_bit_cast_test.exe 2025-07-24T05:13:49.0381669Z [7534/7681] Linking CXX executable bin\c10_bfloat16_test.exe 2025-07-24T05:13:49.1495502Z [7535/7681] Linking CXX executable bin\c10_error_test.exe 2025-07-24T05:13:49.1629316Z [7536/7681] Linking CXX executable bin\c10_complex_math_test.exe 2025-07-24T05:13:49.2182114Z [7537/7681] Linking CXX executable bin\c10_complex_test.exe 2025-07-24T05:13:49.2342411Z [7538/7681] Linking CXX executable bin\c10_exception_test.exe 2025-07-24T05:13:49.3867297Z [7539/7681] Linking CXX executable bin\c10_generic_math_test.exe 2025-07-24T05:13:49.5528044Z [7540/7681] Linking CXX executable bin\c10_flags_test.exe 2025-07-24T05:13:49.5674107Z [7541/7681] Linking CXX executable bin\c10_irange_test.exe 2025-07-24T05:13:49.7392669Z [7542/7681] Linking CXX executable bin\c10_lazy_test.exe 2025-07-24T05:13:49.8901386Z [7543/7681] Linking CXX executable bin\c10_logging_test.exe 2025-07-24T05:13:50.2937784Z [7544/7681] Linking CXX executable bin\c10_registry_test.exe 2025-07-24T05:13:50.3115067Z [7545/7681] Linking CXX executable bin\c10_ordered_preserving_dict_test.exe 2025-07-24T05:13:50.3940806Z [7546/7681] Linking CXX executable bin\c10_optional_test.exe 2025-07-24T05:13:50.5952919Z [7547/7681] Linking CXX executable bin\c10_ssize_test.exe 2025-07-24T05:13:50.7699320Z [7548/7681] Linking CXX executable bin\c10_string_view_test.exe 2025-07-24T05:13:50.7906722Z [7549/7681] Linking CXX executable bin\c10_string_util_test.exe 2025-07-24T05:13:50.9675466Z [7550/7681] Linking CXX executable bin\c10_tempfile_test.exe 2025-07-24T05:13:51.1822931Z [7551/7681] Linking CXX executable bin\c10_intrusive_ptr_test.exe 2025-07-24T05:13:51.1867291Z [7552/7681] Linking CXX executable bin\c10_typeid_test.exe 2025-07-24T05:13:51.4960147Z [7553/7681] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_1_var_test.exe 2025-07-24T05:13:51.5103259Z [7554/7681] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_catches_stream.exe 2025-07-24T05:13:51.6969699Z [7555/7681] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_from_2_processes.exe 2025-07-24T05:13:51.7200254Z [7556/7681] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe 2025-07-24T05:13:51.9845447Z [7557/7681] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe 2025-07-24T05:13:52.0058836Z [7558/7681] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe 2025-07-24T05:13:52.2536698Z [7559/7681] Linking CXX executable bin\c10_cuda_CUDATest.exe 2025-07-24T05:13:52.3156001Z [7560/7681] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe 2025-07-24T05:13:52.5429064Z [7561/7681] Linking CXX shared library bin\caffe2_nvrtc.dll 2025-07-24T05:13:52.5818617Z [7562/7681] Linking CXX executable bin\c10_small_vector_test.exe 2025-07-24T05:13:52.7399793Z [7563/7681] Linking C executable sleef\bin\mkrename_gnuabi.exe 2025-07-24T05:13:52.7929873Z [7564/7681] Linking C executable sleef\bin\mkmasked_gnuabi.exe 2025-07-24T05:13:52.8053504Z [7565/7681] Linking C shared library bin\torch_global_deps.dll 2025-07-24T05:13:52.9405249Z [7566/7681] Linking C executable sleef\bin\addSuffix.exe 2025-07-24T05:13:53.0137447Z [7567/7681] Linking CXX executable bin\c10_intrusive_ptr_benchmark.exe 2025-07-24T05:13:58.1815769Z [7568/7681] Building C object sleef\src\common\CMakeFiles\arraymap.dir\arraymap.c.obj 2025-07-24T05:13:59.2633551Z [7569/7681] Linking C static library lib\microkernels-all.lib 2025-07-24T05:14:00.6370706Z [7570/7681] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\init_dim_only.cpp.obj 2025-07-24T05:14:03.3354115Z [7571/7681] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops.cpp.obj 2025-07-24T05:16:00.6631674Z [7572/7681] Linking CXX shared library bin\torch_cpu.dll 2025-07-24T05:16:02.2669479Z [7573/7681] Linking CXX executable bin\BackoffTest.exe 2025-07-24T05:16:02.2701539Z [7574/7681] Linking CXX executable bin\FileStoreTest.exe 2025-07-24T05:16:02.2704406Z [7575/7681] Linking CXX executable bin\TCPStoreTest.exe 2025-07-24T05:17:07.8070183Z [7576/7681] Linking CXX shared library bin\torch_cuda.dll 2025-07-24T05:17:07.9920902Z [7577/7681] Linking CXX shared library bin\c10d_cuda_test.dll 2025-07-24T05:17:08.0056617Z [7578/7681] Linking CXX shared library bin\torch.dll 2025-07-24T05:17:08.2684862Z [7579/7681] Linking CXX shared library bin\shm.dll 2025-07-24T05:17:08.3243026Z [7580/7681] Linking CXX executable bin\ProcessGroupGlooAsyncTest.exe 2025-07-24T05:17:08.3278827Z [7581/7681] Linking CXX executable bin\ProcessGroupGlooTest.exe 2025-07-24T05:17:08.6468740Z [7582/7681] Linking CXX shared library bin\jitbackend_test.dll 2025-07-24T05:17:08.6773393Z [7583/7681] Linking CXX executable bin\Dimname_test.exe 2025-07-24T05:17:09.1658686Z [7584/7681] Linking CXX shared library bin\backend_with_compiler.dll 2025-07-24T05:17:09.1798038Z [7585/7681] Linking CXX executable bin\Dict_test.exe 2025-07-24T05:17:09.1816878Z [7586/7681] Linking CXX executable bin\NamedTensor_test.exe 2025-07-24T05:17:09.4226068Z [7587/7681] Linking CXX executable bin\MaybeOwned_test.exe 2025-07-24T05:17:09.6879930Z [7588/7681] Linking CXX executable bin\apply_utils_test.exe 2025-07-24T05:17:09.7205720Z [7589/7681] Linking CXX executable bin\atest.exe 2025-07-24T05:17:09.7341364Z [7590/7681] Linking CXX executable bin\basic.exe 2025-07-24T05:17:09.8727304Z [7591/7681] Linking CXX executable bin\broadcast_test.exe 2025-07-24T05:17:10.1155448Z [7592/7681] Linking CXX executable bin\cpu_allocator_test.exe 2025-07-24T05:17:10.2176482Z [7593/7681] Linking CXX executable bin\cpu_profiling_allocator_test.exe 2025-07-24T05:17:10.2455797Z [7594/7681] Linking CXX executable bin\cpu_generator_test.exe 2025-07-24T05:17:10.5933792Z [7595/7681] Linking CXX executable bin\dlconvertor_test.exe 2025-07-24T05:17:10.7467402Z [7596/7681] Linking CXX executable bin\half_test.exe 2025-07-24T05:17:10.7527720Z [7597/7681] Linking CXX executable bin\extension_backend_test.exe 2025-07-24T05:17:11.2079329Z [7598/7681] Linking CXX executable bin\lazy_tensor_test.exe 2025-07-24T05:17:11.2091547Z [7599/7681] Linking CXX executable bin\math_kernel_test.exe 2025-07-24T05:17:11.6513765Z [7600/7681] Linking CXX executable bin\ivalue_test.exe 2025-07-24T05:17:11.7003491Z [7601/7681] Linking CXX executable bin\memory_overlapping_test.exe 2025-07-24T05:17:11.7015006Z [7602/7681] Linking CXX executable bin\memory_format_test.exe 2025-07-24T05:17:11.8503808Z [7603/7681] Linking CXX executable bin\cpu_rng_test.exe 2025-07-24T05:17:12.0609811Z [7604/7681] Linking CXX executable bin\operator_name_test.exe 2025-07-24T05:17:12.1413832Z [7605/7681] Linking CXX executable bin\mobile_memory_cleanup.exe 2025-07-24T05:17:12.3095950Z [7606/7681] Linking CXX executable bin\native_test.exe 2025-07-24T05:17:12.3172087Z [7607/7681] Linking CXX executable bin\operators_test.exe 2025-07-24T05:17:12.5997254Z [7608/7681] Linking CXX executable bin\packedtensoraccessor_test.exe 2025-07-24T05:17:12.7362240Z [7609/7681] Linking CXX executable bin\reduce_ops_test.exe 2025-07-24T05:17:12.8406742Z [7610/7681] Linking CXX executable bin\quantized_test.exe 2025-07-24T05:17:12.9536123Z [7611/7681] Linking CXX executable bin\pow_test.exe 2025-07-24T05:17:13.0468070Z [7612/7681] Linking CXX executable bin\reportMemoryUsage_test.exe 2025-07-24T05:17:13.2053314Z [7613/7681] Linking CXX executable bin\scalar_tensor_test.exe 2025-07-24T05:17:13.5167605Z [7614/7681] Linking CXX executable bin\StorageUtils_test.exe 2025-07-24T05:17:13.5179698Z [7615/7681] Linking CXX executable bin\scalar_test.exe 2025-07-24T05:17:13.5345350Z [7616/7681] Linking CXX executable bin\stride_properties_test.exe 2025-07-24T05:17:13.9415020Z [7617/7681] Linking CXX executable bin\thread_init_test.exe 2025-07-24T05:17:13.9496513Z [7618/7681] Linking CXX executable bin\type_ptr_test.exe 2025-07-24T05:17:14.0923670Z [7619/7681] Linking CXX executable bin\test_parallel.exe 2025-07-24T05:17:14.2052386Z [7620/7681] Linking CXX executable bin\vec_test_all_types_DEFAULT.exe 2025-07-24T05:17:14.2529537Z [7621/7681] Linking CXX executable bin\vec_test_all_types_AVX2.exe 2025-07-24T05:17:14.4728091Z [7622/7681] Linking CXX executable bin\tensor_iterator_test.exe 2025-07-24T05:17:14.5364389Z [7623/7681] Linking CXX executable bin\undefined_tensor_test.exe 2025-07-24T05:17:14.6609477Z [7624/7681] Linking CXX executable bin\verify_api_visibility.exe 2025-07-24T05:17:14.7405264Z [7625/7681] Linking CXX executable bin\type_test.exe 2025-07-24T05:17:14.9246118Z [7626/7681] Linking CXX executable bin\vec_test_all_types_AVX512.exe 2025-07-24T05:17:14.9570335Z [7627/7681] Linking CXX executable bin\weakref_test.exe 2025-07-24T05:17:15.1620068Z [7628/7681] Linking CXX executable bin\wrapdim_test.exe 2025-07-24T05:17:15.2407413Z [7629/7681] Linking CXX executable bin\xla_tensor_test.exe 2025-07-24T05:17:15.3290109Z [7630/7681] Linking CXX executable bin\legacy_vmap_test.exe 2025-07-24T05:17:15.5477052Z [7631/7681] Linking CXX executable bin\IListRef_test.exe 2025-07-24T05:17:15.9154161Z [7632/7681] Linking CXX executable bin\KernelFunction_test.exe 2025-07-24T05:17:16.2134908Z [7633/7681] Linking CXX executable bin\List_test.exe 2025-07-24T05:17:16.2670736Z [7634/7681] Linking CXX executable bin\kernel_stackbased_test.exe 2025-07-24T05:17:16.5662845Z [7635/7681] Linking CXX executable bin\CppSignature_test.exe 2025-07-24T05:17:16.8267376Z [7636/7681] Linking CXX executable bin\backend_fallback_test.exe 2025-07-24T05:17:16.8381782Z [7637/7681] Linking CXX executable bin\op_allowlist_test.exe 2025-07-24T05:17:17.2109250Z [7638/7681] Linking CXX executable bin\kernel_function_test.exe 2025-07-24T05:17:17.6739823Z [7639/7681] Linking CXX executable bin\make_boxed_from_unboxed_functor_test.exe 2025-07-24T05:17:17.7140553Z [7640/7681] Linking CXX executable bin\kernel_lambda_test.exe 2025-07-24T05:17:17.7304764Z [7641/7681] Linking CXX executable bin\cuda_allocator_test.exe 2025-07-24T05:17:17.9759270Z [7642/7681] Linking CXX executable bin\inline_container_test.exe 2025-07-24T05:17:18.0131662Z [7643/7681] Linking CXX executable bin\cuda_apply_test.exe 2025-07-24T05:17:18.2241056Z [7644/7681] Linking CXX executable bin\kernel_function_legacy_test.exe 2025-07-24T05:17:18.4792676Z [7645/7681] Linking CXX executable bin\cuda_atomic_ops_test.exe 2025-07-24T05:17:18.4893514Z [7646/7681] Linking CXX executable bin\cuda_caching_host_allocator_test.exe 2025-07-24T05:17:18.5189584Z [7647/7681] Linking CXX executable bin\cuda_complex_math_test.exe 2025-07-24T05:17:18.6325449Z [7648/7681] Linking CXX executable bin\cuda_complex_test.exe 2025-07-24T05:17:18.8679835Z [7649/7681] Linking CXX executable bin\cuda_device_test.exe 2025-07-24T05:17:18.8702023Z [7650/7681] Linking CXX executable bin\cuda_cub_test.exe 2025-07-24T05:17:19.0207060Z [7651/7681] Linking CXX executable bin\cuda_exchange_device_test.exe 2025-07-24T05:17:19.0554584Z [7652/7681] Linking CXX executable bin\cuda_dlconvertor_test.exe 2025-07-24T05:17:19.2233564Z [7653/7681] Linking CXX executable bin\cuda_distributions_test.exe 2025-07-24T05:17:19.3727545Z [7654/7681] Linking CXX executable bin\kernel_lambda_legacy_test.exe 2025-07-24T05:17:19.5028086Z [7655/7681] Linking CXX executable bin\cuda_integer_divider_test.exe 2025-07-24T05:17:19.5546307Z [7656/7681] Linking CXX executable bin\cuda_half_test.exe 2025-07-24T05:17:19.6017857Z [7657/7681] Linking CXX executable bin\cuda_generator_test.exe 2025-07-24T05:17:19.6089610Z [7658/7681] Linking CXX executable bin\cuda_optional_test.exe 2025-07-24T05:17:19.8591001Z [7659/7681] Linking CXX executable bin\cuda_allocatorTraceTracker_test.exe 2025-07-24T05:17:19.8717423Z [7660/7681] Linking CXX executable bin\cuda_packedtensoraccessor_test.exe 2025-07-24T05:17:20.1395596Z [7661/7681] Linking CXX executable bin\cuda_reportMemoryUsage_test.exe 2025-07-24T05:17:20.2061681Z [7662/7681] Linking CXX executable bin\cuda_stream_test.exe 2025-07-24T05:17:20.2265366Z [7663/7681] Linking CXX executable bin\cuda_cudnn_test.exe 2025-07-24T05:17:20.2550133Z [7664/7681] Linking CXX executable bin\cuda_vectorized_test.exe 2025-07-24T05:17:20.5279545Z [7665/7681] Linking CXX executable bin\tutorial_tensorexpr.exe 2025-07-24T05:17:21.1497483Z [7666/7681] Linking CXX shared library bin\aoti_custom_ops.dll 2025-07-24T05:17:21.4219167Z [7667/7681] Linking CXX executable bin\parallel_benchmark.exe 2025-07-24T05:17:22.0430954Z [7668/7681] Linking CXX executable bin\test_lazy.exe 2025-07-24T05:17:22.2559397Z [7669/7681] Linking CXX executable bin\test_tensorexpr.exe 2025-07-24T05:17:22.4525625Z [7670/7681] Linking CXX executable bin\test_api.exe 2025-07-24T05:17:23.2676305Z [7671/7681] Linking CXX shared library bin\torchbind_test.dll 2025-07-24T05:17:26.8807797Z [7672/7681] Linking CXX executable bin\op_registration_test.exe 2025-07-24T05:17:31.4203617Z [7673/7681] Linking CXX executable bin\test_nativert.exe 2025-07-24T05:17:36.5599101Z [7674/7681] Linking CXX executable bin\test_jit.exe 2025-07-24T05:17:57.8276671Z [7675/7681] Linking CXX shared library bin\torch_python.dll 2025-07-24T05:17:58.0555451Z [7676/7681] Linking CXX shared library bin\nnapi_backend.dll 2025-07-24T05:17:58.0714587Z [7677/7681] Linking CXX shared module functorch\functorch.pyd 2025-07-24T05:17:58.0715012Z [7677/7681] Install the project... 2025-07-24T05:17:58.1634815Z -- Install configuration: "Release" 2025-07-24T05:23:19.1622163Z Could not find an up-to-date installation of `packaging`. License expressions might not be validated. To enforce validation, please install `packaging>=24.2`. 2025-07-24T05:23:19.2114351Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\config\_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated 2025-07-24T05:23:19.2120402Z !! 2025-07-24T05:23:19.2120516Z 2025-07-24T05:23:19.2120636Z ******************************************************************************** 2025-07-24T05:23:19.2121473Z Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). 2025-07-24T05:23:19.2122240Z 2025-07-24T05:23:19.2122470Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-07-24T05:23:19.2122973Z or your builds will no longer be supported. 2025-07-24T05:23:19.2123212Z 2025-07-24T05:23:19.2123593Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-07-24T05:23:19.2124161Z ******************************************************************************** 2025-07-24T05:23:19.2124403Z 2025-07-24T05:23:19.2124484Z !! 2025-07-24T05:23:19.2124683Z corresp(dist, value, root_dir) 2025-07-24T05:23:19.4608937Z -- Checkout nccl release tag: v2.27.5-1 2025-07-24T05:23:19.4610957Z running bdist_wheel 2025-07-24T05:23:27.6120564Z running build 2025-07-24T05:23:27.6120840Z running build_py 2025-07-24T05:23:27.6210899Z creating build\lib.win-amd64-cpython-39\functorch 2025-07-24T05:23:27.6216179Z copying functorch\__init__.py -> build\lib.win-amd64-cpython-39\functorch 2025-07-24T05:23:27.6629257Z creating build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:27.6632409Z copying torch\functional.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:27.7666849Z copying torch\hub.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:27.8793169Z copying torch\library.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:27.9500815Z copying torch\overrides.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.0234031Z copying torch\quasirandom.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.0983520Z copying torch\random.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.0995517Z copying torch\return_types.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.1009093Z copying torch\serialization.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.1046701Z copying torch\storage.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.2875881Z copying torch\torch_version.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.4235526Z copying torch\types.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.4265914Z copying torch\version.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.4272206Z copying torch\_appdirs.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.4586797Z copying torch\_classes.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.4596962Z copying torch\_compile.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.4607402Z copying torch\_custom_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.4618428Z copying torch\_deploy.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.4628486Z copying torch\_environment.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.4634371Z copying torch\_guards.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.5613465Z copying torch\_jit_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.5639386Z copying torch\_linalg_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.5649599Z copying torch\_lobpcg.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.6326525Z copying torch\_lowrank.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.6339310Z copying torch\_meta_registrations.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.7525307Z copying torch\_namedtensor_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.7537123Z copying torch\_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.7576557Z copying torch\_python_dispatcher.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.7587551Z copying torch\_size_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.7598120Z copying torch\_sources.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.7609348Z copying torch\_storage_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.7620772Z copying torch\_streambase.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.7626961Z copying torch\_tensor.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.8609827Z copying torch\_tensor_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.8663940Z copying torch\_tensor_str.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.8682458Z copying torch\_thread_safe_fork.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.8687231Z copying torch\_torch_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.8838860Z copying torch\_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.8860374Z copying torch\_utils_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.8870699Z copying torch\_VF.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.8877067Z copying torch\_vmap_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.8888361Z copying torch\_weights_only_unpickler.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.8904238Z copying torch\__config__.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.8910325Z copying torch\__future__.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.8920496Z copying torch\__init__.py -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:28.9626139Z creating build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:28.9628975Z copying torchgen\code_template.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:29.0525872Z copying torchgen\context.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:29.0536832Z copying torchgen\gen.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:29.0602183Z copying torchgen\gen_aoti_c_shim.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:29.0619109Z copying torchgen\gen_backend_stubs.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:29.0646123Z copying torchgen\gen_functionalization_type.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:29.0666713Z copying torchgen\gen_lazy_tensor.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:29.0682808Z copying torchgen\gen_schema_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:29.0692473Z copying torchgen\gen_vmap_plumbing.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:29.1291988Z copying torchgen\local.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:29.1302464Z copying torchgen\model.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:29.1345654Z copying torchgen\native_function_generation.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:29.1361500Z copying torchgen\utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:29.1377613Z copying torchgen\yaml_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:29.1387218Z copying torchgen\__init__.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-24T05:23:29.1394540Z creating build\lib.win-amd64-cpython-39\functorch\compile 2025-07-24T05:23:29.1397728Z copying functorch\compile\__init__.py -> build\lib.win-amd64-cpython-39\functorch\compile 2025-07-24T05:23:29.1410299Z creating build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:23:29.1413701Z copying functorch\dim\batch_tensor.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:23:29.1423883Z copying functorch\dim\delayed_mul_tensor.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:23:29.2288273Z copying functorch\dim\dim.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:23:29.2298393Z copying functorch\dim\magic_trace.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:23:29.2319754Z copying functorch\dim\op_properties.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:23:29.2330345Z copying functorch\dim\reference.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:23:29.2350015Z copying functorch\dim\tree_map.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:23:29.2355765Z copying functorch\dim\wrap_type.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:23:29.2365807Z copying functorch\dim\__init__.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-24T05:23:29.2378588Z creating build\lib.win-amd64-cpython-39\functorch\einops 2025-07-24T05:23:29.2381756Z copying functorch\einops\rearrange.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-07-24T05:23:29.2394106Z copying functorch\einops\_parsing.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-07-24T05:23:29.2405215Z copying functorch\einops\__init__.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-07-24T05:23:29.2412554Z creating build\lib.win-amd64-cpython-39\functorch\experimental 2025-07-24T05:23:29.2425440Z copying functorch\experimental\control_flow.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-07-24T05:23:29.2431734Z copying functorch\experimental\ops.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-07-24T05:23:29.2437387Z copying functorch\experimental\__init__.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-07-24T05:23:29.2444445Z creating build\lib.win-amd64-cpython-39\functorch\_src 2025-07-24T05:23:29.2447421Z copying functorch\_src\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src 2025-07-24T05:23:29.2453272Z creating build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-07-24T05:23:29.2456289Z copying functorch\_src\aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-07-24T05:23:29.2463041Z creating build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-07-24T05:23:29.2466202Z copying functorch\_src\eager_transforms\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-07-24T05:23:29.2477608Z creating build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-07-24T05:23:29.2491581Z copying functorch\_src\make_functional\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-07-24T05:23:29.2498349Z creating build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-07-24T05:23:29.2501378Z copying functorch\_src\vmap\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-07-24T05:23:29.2508885Z creating build\lib.win-amd64-cpython-39\torch\accelerator 2025-07-24T05:23:29.2512175Z copying torch\accelerator\_utils.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-07-24T05:23:29.2522171Z copying torch\accelerator\__init__.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-07-24T05:23:29.2534093Z creating build\lib.win-amd64-cpython-39\torch\amp 2025-07-24T05:23:29.2537441Z copying torch\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-07-24T05:23:29.2555697Z copying torch\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-07-24T05:23:29.2573329Z copying torch\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-07-24T05:23:29.2581077Z creating build\lib.win-amd64-cpython-39\torch\ao 2025-07-24T05:23:29.2584539Z copying torch\ao\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao 2025-07-24T05:23:29.2594053Z creating build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:23:29.2597766Z copying torch\autograd\anomaly_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:23:29.3622388Z copying torch\autograd\forward_ad.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:23:29.3635505Z copying torch\autograd\function.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:23:29.3658084Z copying torch\autograd\functional.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:23:29.3689304Z copying torch\autograd\gradcheck.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:23:29.3729702Z copying torch\autograd\grad_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:23:29.3741460Z copying torch\autograd\graph.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:23:29.3758170Z copying torch\autograd\profiler.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:23:29.3783961Z copying torch\autograd\profiler_legacy.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:23:29.3794925Z copying torch\autograd\profiler_util.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:23:29.3816106Z copying torch\autograd\variable.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:23:29.3826189Z copying torch\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-24T05:23:29.3843662Z creating build\lib.win-amd64-cpython-39\torch\backends 2025-07-24T05:23:29.3846599Z copying torch\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends 2025-07-24T05:23:29.3858009Z creating build\lib.win-amd64-cpython-39\torch\compiler 2025-07-24T05:23:29.3861027Z copying torch\compiler\config.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-07-24T05:23:29.3871962Z copying torch\compiler\_cache.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-07-24T05:23:29.3883113Z copying torch\compiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-07-24T05:23:29.3899889Z creating build\lib.win-amd64-cpython-39\torch\contrib 2025-07-24T05:23:29.3903289Z copying torch\contrib\_tensorboard_vis.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-07-24T05:23:29.3913976Z copying torch\contrib\__init__.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-07-24T05:23:29.3920280Z creating build\lib.win-amd64-cpython-39\torch\cpu 2025-07-24T05:23:29.3923396Z copying torch\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu 2025-07-24T05:23:29.3937469Z creating build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.3941205Z copying torch\cuda\comm.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.3946944Z copying torch\cuda\error.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.3951753Z copying torch\cuda\gds.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4571161Z copying torch\cuda\graphs.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4590568Z copying torch\cuda\jiterator.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4603901Z copying torch\cuda\memory.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4638975Z copying torch\cuda\nccl.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4649827Z copying torch\cuda\nvtx.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4663820Z copying torch\cuda\profiler.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4696744Z copying torch\cuda\random.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4708414Z copying torch\cuda\sparse.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4713952Z copying torch\cuda\streams.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4725175Z copying torch\cuda\tunable.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4743776Z copying torch\cuda\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4754463Z copying torch\cuda\_memory_viz.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4770677Z copying torch\cuda\_pin_memory_utils.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4780979Z copying torch\cuda\_sanitizer.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4797535Z copying torch\cuda\_utils.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4808504Z copying torch\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-24T05:23:29.4846415Z creating build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:29.4849385Z copying torch\distributed\argparse_util.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:29.5518053Z copying torch\distributed\c10d_logger.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:29.5529476Z copying torch\distributed\collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:29.6932461Z copying torch\distributed\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:29.6963919Z copying torch\distributed\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:29.6992348Z copying torch\distributed\distributed_c10d.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:29.7773322Z copying torch\distributed\launch.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:29.8368462Z copying torch\distributed\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:29.8374993Z copying torch\distributed\remote_device.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:30.0310346Z copying torch\distributed\rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:30.0341152Z copying torch\distributed\run.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:30.0986029Z copying torch\distributed\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:30.1394702Z copying torch\distributed\_checkpointable.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:30.1405848Z copying torch\distributed\_composable_state.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:30.1415915Z copying torch\distributed\_dist2.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:30.1430368Z copying torch\distributed\_functional_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:30.1452151Z copying torch\distributed\_functional_collectives_impl.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:30.1462813Z copying torch\distributed\_serialization.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:30.1481313Z copying torch\distributed\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:30.2029696Z copying torch\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-24T05:23:30.2050764Z creating build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2055692Z copying torch\distributions\bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2073398Z copying torch\distributions\beta.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2082947Z copying torch\distributions\binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2093859Z copying torch\distributions\categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2110345Z copying torch\distributions\cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2121278Z copying torch\distributions\chi2.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2133032Z copying torch\distributions\constraints.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2149874Z copying torch\distributions\constraint_registry.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2166007Z copying torch\distributions\continuous_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2182226Z copying torch\distributions\dirichlet.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2193375Z copying torch\distributions\distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2204601Z copying torch\distributions\exponential.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2215363Z copying torch\distributions\exp_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2229437Z copying torch\distributions\fishersnedecor.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2244645Z copying torch\distributions\gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2255773Z copying torch\distributions\generalized_pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2266987Z copying torch\distributions\geometric.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2278052Z copying torch\distributions\gumbel.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2289627Z copying torch\distributions\half_cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2299753Z copying torch\distributions\half_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2309810Z copying torch\distributions\independent.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2320932Z copying torch\distributions\inverse_gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2337088Z copying torch\distributions\kl.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2354086Z copying torch\distributions\kumaraswamy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2363799Z copying torch\distributions\laplace.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2374188Z copying torch\distributions\lkj_cholesky.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2385946Z copying torch\distributions\logistic_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2396467Z copying torch\distributions\log_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2407173Z copying torch\distributions\lowrank_multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2421348Z copying torch\distributions\mixture_same_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2433267Z copying torch\distributions\multinomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2466732Z copying torch\distributions\multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2483457Z copying torch\distributions\negative_binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2494944Z copying torch\distributions\normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2505089Z copying torch\distributions\one_hot_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2516031Z copying torch\distributions\pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2532268Z copying torch\distributions\poisson.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2541959Z copying torch\distributions\relaxed_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2555918Z copying torch\distributions\relaxed_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2571737Z copying torch\distributions\studentT.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2585287Z copying torch\distributions\transformed_distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2596799Z copying torch\distributions\transforms.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2618542Z copying torch\distributions\uniform.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2629624Z copying torch\distributions\utils.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2641569Z copying torch\distributions\von_mises.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2664759Z copying torch\distributions\weibull.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2675715Z copying torch\distributions\wishart.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2687096Z copying torch\distributions\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-24T05:23:30.2705968Z creating build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.2709122Z copying torch\export\custom_obj.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3417719Z copying torch\export\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3418413Z copying torch\export\decomp_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3419105Z copying torch\export\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3437523Z copying torch\export\exported_program.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3466405Z copying torch\export\graph_signature.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3482779Z copying torch\export\unflatten.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3514289Z copying torch\export\_draft_export.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3535356Z copying torch\export\_remove_auto_functionalized_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3546336Z copying torch\export\_remove_effect_tokens_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3556833Z copying torch\export\_safeguard.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3570879Z copying torch\export\_swap.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3588893Z copying torch\export\_trace.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3622985Z copying torch\export\_tree_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3638051Z copying torch\export\_unlift.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3654118Z copying torch\export\_wrapper_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3660763Z copying torch\export\__init__.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-24T05:23:30.3681692Z creating build\lib.win-amd64-cpython-39\torch\fft 2025-07-24T05:23:30.3684615Z copying torch\fft\__init__.py -> build\lib.win-amd64-cpython-39\torch\fft 2025-07-24T05:23:30.3714096Z creating build\lib.win-amd64-cpython-39\torch\func 2025-07-24T05:23:30.3717316Z copying torch\func\__init__.py -> build\lib.win-amd64-cpython-39\torch\func 2025-07-24T05:23:30.3729879Z creating build\lib.win-amd64-cpython-39\torch\futures 2025-07-24T05:23:30.3732808Z copying torch\futures\__init__.py -> build\lib.win-amd64-cpython-39\torch\futures 2025-07-24T05:23:30.3750954Z creating build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.3754332Z copying torch\fx\annotate.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.3764042Z copying torch\fx\config.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.3770047Z copying torch\fx\graph.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.4583394Z copying torch\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.4604888Z copying torch\fx\immutable_collections.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.4622824Z copying torch\fx\interpreter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.4649775Z copying torch\fx\node.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.4669974Z copying torch\fx\operator_schemas.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.4898457Z copying torch\fx\proxy.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.4917143Z copying torch\fx\subgraph_rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.4934449Z copying torch\fx\tensor_type.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.4949552Z copying torch\fx\traceback.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.4962239Z copying torch\fx\_compatibility.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.4978958Z copying torch\fx\_graph_pickler.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.4999784Z copying torch\fx\_lazy_graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.5011607Z copying torch\fx\_pytree.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.5021940Z copying torch\fx\_symbolic_trace.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.5047189Z copying torch\fx\_utils.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.5057010Z copying torch\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-24T05:23:30.5073186Z creating build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5076556Z copying torch\jit\annotations.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5092512Z copying torch\jit\frontend.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5114717Z copying torch\jit\generate_bytecode.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5124944Z copying torch\jit\quantized.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5146118Z copying torch\jit\supported_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5159828Z copying torch\jit\unsupported_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5170859Z copying torch\jit\_async.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5181951Z copying torch\jit\_await.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5192091Z copying torch\jit\_builtins.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5204063Z copying torch\jit\_check.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5216374Z copying torch\jit\_dataclass_impls.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5227433Z copying torch\jit\_decompositions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5241593Z copying torch\jit\_decomposition_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5247618Z copying torch\jit\_freeze.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5259324Z copying torch\jit\_fuser.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5273912Z copying torch\jit\_ir_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5284671Z copying torch\jit\_logging.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5290776Z copying torch\jit\_monkeytype_config.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5302763Z copying torch\jit\_pickle.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5312898Z copying torch\jit\_recursive.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5334261Z copying torch\jit\_script.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5371541Z copying torch\jit\_serialization.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5384005Z copying torch\jit\_shape_functions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5411763Z copying torch\jit\_state.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5422968Z copying torch\jit\_trace.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5448214Z copying torch\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:30.5460145Z creating build\lib.win-amd64-cpython-39\torch\linalg 2025-07-24T05:23:30.5463136Z copying torch\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\linalg 2025-07-24T05:23:30.5513737Z creating build\lib.win-amd64-cpython-39\torch\masked 2025-07-24T05:23:30.5523788Z copying torch\masked\_docs.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-07-24T05:23:30.5549057Z copying torch\masked\_ops.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-07-24T05:23:30.5578731Z copying torch\masked\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-07-24T05:23:30.5590036Z creating build\lib.win-amd64-cpython-39\torch\monitor 2025-07-24T05:23:30.5592978Z copying torch\monitor\__init__.py -> build\lib.win-amd64-cpython-39\torch\monitor 2025-07-24T05:23:30.5605141Z creating build\lib.win-amd64-cpython-39\torch\mps 2025-07-24T05:23:30.5608403Z copying torch\mps\event.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-07-24T05:23:30.5618293Z copying torch\mps\profiler.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-07-24T05:23:30.5628644Z copying torch\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-07-24T05:23:30.5641587Z creating build\lib.win-amd64-cpython-39\torch\mtia 2025-07-24T05:23:30.5644805Z copying torch\mtia\memory.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-07-24T05:23:30.5655275Z copying torch\mtia\_utils.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-07-24T05:23:30.5665349Z copying torch\mtia\__init__.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-07-24T05:23:30.5678828Z creating build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-24T05:23:30.5682281Z copying torch\multiprocessing\pool.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-24T05:23:30.5692336Z copying torch\multiprocessing\queue.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-24T05:23:30.5702571Z copying torch\multiprocessing\reductions.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-24T05:23:30.5746060Z copying torch\multiprocessing\spawn.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-24T05:23:30.5756811Z copying torch\multiprocessing\_atfork.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-24T05:23:30.5773860Z copying torch\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-24T05:23:30.5784705Z creating build\lib.win-amd64-cpython-39\torch\nested 2025-07-24T05:23:30.5787604Z copying torch\nested\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested 2025-07-24T05:23:30.5805787Z creating build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:23:30.5808914Z copying torch\nn\common_types.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:23:30.6662007Z copying torch\nn\cpp.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:23:30.6673644Z copying torch\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:23:30.6757638Z copying torch\nn\grad.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:23:30.6769190Z copying torch\nn\init.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:23:30.6791463Z copying torch\nn\parameter.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:23:30.7705802Z copying torch\nn\_reduction.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:23:30.7717268Z copying torch\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:23:30.7734156Z creating build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:30.7737521Z copying torch\onnx\errors.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:30.8601654Z copying torch\onnx\operators.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:30.8612343Z copying torch\onnx\symbolic_helper.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:30.8647686Z copying torch\onnx\symbolic_opset10.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:30.8681712Z copying torch\onnx\symbolic_opset11.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.0165223Z copying torch\onnx\symbolic_opset12.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.0178610Z copying torch\onnx\symbolic_opset13.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.0202380Z copying torch\onnx\symbolic_opset14.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.0213817Z copying torch\onnx\symbolic_opset15.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.0223859Z copying torch\onnx\symbolic_opset16.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.0235761Z copying torch\onnx\symbolic_opset17.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.0251315Z copying torch\onnx\symbolic_opset18.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.0262915Z copying torch\onnx\symbolic_opset19.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.0269511Z copying torch\onnx\symbolic_opset20.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.0280224Z copying torch\onnx\symbolic_opset7.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.0290496Z copying torch\onnx\symbolic_opset8.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.0302157Z copying torch\onnx\symbolic_opset9.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.0401411Z copying torch\onnx\utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.0433764Z copying torch\onnx\verification.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.1225429Z copying torch\onnx\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.1239798Z copying torch\onnx\_experimental.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.2055303Z copying torch\onnx\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.2070092Z copying torch\onnx\_globals.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.2082745Z copying torch\onnx\_onnx_supported_ops.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.2093174Z copying torch\onnx\_type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.2105074Z copying torch\onnx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-24T05:23:31.2128941Z creating build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2132225Z copying torch\optim\adadelta.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2146802Z copying torch\optim\adagrad.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2164040Z copying torch\optim\adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2186866Z copying torch\optim\adamax.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2202228Z copying torch\optim\adamw.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2213421Z copying torch\optim\asgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2230544Z copying torch\optim\lbfgs.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2256940Z copying torch\optim\lr_scheduler.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2304212Z copying torch\optim\nadam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2320153Z copying torch\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2344988Z copying torch\optim\radam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2398507Z copying torch\optim\rmsprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2415153Z copying torch\optim\rprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2430515Z copying torch\optim\sgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2448753Z copying torch\optim\sparse_adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2459555Z copying torch\optim\swa_utils.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2474229Z copying torch\optim\_adafactor.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2494011Z copying torch\optim\_functional.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2504126Z copying torch\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-24T05:23:31.2517948Z creating build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2521301Z copying torch\package\file_structure_representation.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2532476Z copying torch\package\find_file_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2543857Z copying torch\package\glob_group.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2566500Z copying torch\package\importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2577308Z copying torch\package\package_exporter.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2602715Z copying torch\package\package_importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2619108Z copying torch\package\_digraph.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2629610Z copying torch\package\_directory_reader.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2650758Z copying torch\package\_importlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2662277Z copying torch\package\_mangling.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2672049Z copying torch\package\_mock.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2682503Z copying torch\package\_package_pickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2694475Z copying torch\package\_package_unpickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2705792Z copying torch\package\_stdlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2718453Z copying torch\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-24T05:23:31.2733883Z creating build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:23:31.2737458Z copying torch\profiler\itt.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:23:31.2748365Z copying torch\profiler\profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:23:31.2769076Z copying torch\profiler\python_tracer.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:23:31.2775088Z copying torch\profiler\_memory_profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:23:31.2799383Z copying torch\profiler\_pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:23:31.2830814Z copying torch\profiler\_utils.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:23:31.2846147Z copying torch\profiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-24T05:23:31.2863200Z creating build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.2866409Z copying torch\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.2876937Z copying torch\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.2882712Z copying torch\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.2902497Z copying torch\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.2911944Z copying torch\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.2921854Z copying torch\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.2931395Z copying torch\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.2942029Z copying torch\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.2951915Z copying torch\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.2961949Z copying torch\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.2967835Z copying torch\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.2973819Z copying torch\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.2983480Z copying torch\quantization\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.2993167Z copying torch\quantization\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.3003404Z copying torch\quantization\_quantized_conversions.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.3014515Z copying torch\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-24T05:23:31.3031261Z creating build\lib.win-amd64-cpython-39\torch\signal 2025-07-24T05:23:31.3034313Z copying torch\signal\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal 2025-07-24T05:23:31.3042488Z creating build\lib.win-amd64-cpython-39\torch\sparse 2025-07-24T05:23:31.3045727Z copying torch\sparse\semi_structured.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-24T05:23:31.3065107Z copying torch\sparse\_semi_structured_conversions.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-24T05:23:31.3076260Z copying torch\sparse\_semi_structured_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-24T05:23:31.3097563Z copying torch\sparse\_triton_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-24T05:23:31.3134747Z copying torch\sparse\_triton_ops_meta.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-24T05:23:31.3295760Z copying torch\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-24T05:23:31.3316573Z creating build\lib.win-amd64-cpython-39\torch\special 2025-07-24T05:23:31.3319905Z copying torch\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\special 2025-07-24T05:23:31.3340256Z creating build\lib.win-amd64-cpython-39\torch\testing 2025-07-24T05:23:31.3343394Z copying torch\testing\_comparison.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-07-24T05:23:31.3373732Z copying torch\testing\_creation.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-07-24T05:23:31.3384362Z copying torch\testing\_utils.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-07-24T05:23:31.3394453Z copying torch\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-07-24T05:23:31.3408561Z creating build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.3411946Z copying torch\utils\backend_registration.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.4268767Z copying torch\utils\bundled_inputs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.4961675Z copying torch\utils\checkpoint.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.4992121Z copying torch\utils\collect_env.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.5024672Z copying torch\utils\cpp_backtrace.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.5030631Z copying torch\utils\cpp_extension.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.5084098Z copying torch\utils\deterministic.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.5987487Z copying torch\utils\dlpack.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.5999217Z copying torch\utils\file_baton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.6009264Z copying torch\utils\flop_counter.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.6029326Z copying torch\utils\hooks.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.6780894Z copying torch\utils\mkldnn.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.6792471Z copying torch\utils\mobile_optimizer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.6802863Z copying torch\utils\model_zoo.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.6808915Z copying torch\utils\module_tracker.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.6822938Z copying torch\utils\show_pickle.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.6833194Z copying torch\utils\throughput_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7649587Z copying torch\utils\weak.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7665446Z copying torch\utils\_appending_byte_serializer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7675767Z copying torch\utils\_backport_slots.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7686366Z copying torch\utils\_config_module.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7713769Z copying torch\utils\_content_store.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7725761Z copying torch\utils\_contextlib.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7736960Z copying torch\utils\_cpp_embed_headers.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7746761Z copying torch\utils\_cpp_extension_versioner.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7756998Z copying torch\utils\_cxx_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7777456Z copying torch\utils\_device.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7790856Z copying torch\utils\_dtype_abbrs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7800801Z copying torch\utils\_exposed_in.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7811050Z copying torch\utils\_filelock.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7824997Z copying torch\utils\_foreach_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7844898Z copying torch\utils\_freeze.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7855543Z copying torch\utils\_functools.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7866494Z copying torch\utils\_get_clean_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7876760Z copying torch\utils\_helion.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7882938Z copying torch\utils\_import_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7893003Z copying torch\utils\_mode_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7899387Z copying torch\utils\_ordered_set.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7910300Z copying torch\utils\_python_dispatch.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7926328Z copying torch\utils\_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7957998Z copying torch\utils\_stats.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7967908Z copying torch\utils\_thunk.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7988023Z copying torch\utils\_traceback.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.7998899Z copying torch\utils\_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.8009306Z copying torch\utils\_typing_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.8015283Z copying torch\utils\_zip.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.8026069Z copying torch\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:31.8039225Z creating build\lib.win-amd64-cpython-39\torch\xpu 2025-07-24T05:23:31.8042504Z copying torch\xpu\memory.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-24T05:23:31.8054834Z copying torch\xpu\random.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-24T05:23:31.8066168Z copying torch\xpu\streams.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-24T05:23:31.8078845Z copying torch\xpu\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-24T05:23:31.8090341Z copying torch\xpu\_utils.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-24T05:23:31.8100135Z copying torch\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-24T05:23:31.8127387Z creating build\lib.win-amd64-cpython-39\torch\_awaits 2025-07-24T05:23:31.8130469Z copying torch\_awaits\__init__.py -> build\lib.win-amd64-cpython-39\torch\_awaits 2025-07-24T05:23:31.8142746Z creating build\lib.win-amd64-cpython-39\torch\_custom_op 2025-07-24T05:23:31.8145961Z copying torch\_custom_op\autograd.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-07-24T05:23:31.8158137Z copying torch\_custom_op\impl.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-07-24T05:23:31.8173627Z copying torch\_custom_op\__init__.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-07-24T05:23:31.8180390Z creating build\lib.win-amd64-cpython-39\torch\_decomp 2025-07-24T05:23:31.8183695Z copying torch\_decomp\decompositions.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-07-24T05:23:31.8249530Z copying torch\_decomp\decompositions_for_jvp.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-07-24T05:23:31.8271908Z copying torch\_decomp\decompositions_for_rng.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-07-24T05:23:31.8295366Z copying torch\_decomp\__init__.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-07-24T05:23:31.8311501Z creating build\lib.win-amd64-cpython-39\torch\_dispatch 2025-07-24T05:23:31.8314661Z copying torch\_dispatch\python.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-07-24T05:23:31.8325267Z copying torch\_dispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-07-24T05:23:31.8338545Z creating build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.8341896Z copying torch\_dynamo\bytecode_analysis.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.8632894Z copying torch\_dynamo\bytecode_transformation.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.8660608Z copying torch\_dynamo\cache_size.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.8685384Z copying torch\_dynamo\callback.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.8696544Z copying torch\_dynamo\codegen.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.8715220Z copying torch\_dynamo\code_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.8725875Z copying torch\_dynamo\compiled_autograd.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.8751756Z copying torch\_dynamo\comptime.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.8763512Z copying torch\_dynamo\config.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.8779886Z copying torch\_dynamo\convert_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.9559282Z copying torch\_dynamo\create_parameter_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.9570182Z copying torch\_dynamo\current_scope_id.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.9581427Z copying torch\_dynamo\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.9889673Z copying torch\_dynamo\decorators.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.9910073Z copying torch\_dynamo\device_interface.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.9924534Z copying torch\_dynamo\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:31.9934854Z copying torch\_dynamo\eval_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.0045126Z copying torch\_dynamo\exc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.0062224Z copying torch\_dynamo\external_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.0073542Z copying torch\_dynamo\funcname_cache.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.0084247Z copying torch\_dynamo\graph_break_hints.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.0104729Z copying torch\_dynamo\graph_deduplication.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.0122177Z copying torch\_dynamo\graph_region_tracker.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.0136304Z copying torch\_dynamo\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.0146430Z copying torch\_dynamo\guards.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.0209964Z copying torch\_dynamo\hooks.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.0221244Z copying torch\_dynamo\logging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.0232562Z copying torch\_dynamo\metrics_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.0251153Z copying torch\_dynamo\mutation_guard.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.0267311Z copying torch\_dynamo\output_graph.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.1608225Z copying torch\_dynamo\package.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.1625968Z copying torch\_dynamo\pgo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.1656159Z copying torch\_dynamo\precompile_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.1677299Z copying torch\_dynamo\profiler.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.1688484Z copying torch\_dynamo\replay_record.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.1699716Z copying torch\_dynamo\resume_execution.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.2029767Z copying torch\_dynamo\side_effects.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.2055606Z copying torch\_dynamo\source.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.2074635Z copying torch\_dynamo\symbolic_convert.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.2135835Z copying torch\_dynamo\tensor_version_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.2147487Z copying torch\_dynamo\testing.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.2166459Z copying torch\_dynamo\test_case.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.2178441Z copying torch\_dynamo\test_dont_skip_tracing_functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.2189248Z copying torch\_dynamo\test_minifier_common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.2210270Z copying torch\_dynamo\trace_rules.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.2272702Z copying torch\_dynamo\types.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.2284221Z copying torch\_dynamo\utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.2611515Z copying torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.2623607Z copying torch\_dynamo\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:32.2637044Z creating build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:23:32.2640267Z copying torch\_export\converter.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:23:32.3605991Z copying torch\_export\error.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:23:32.4695051Z copying torch\_export\non_strict_utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:23:32.4737878Z copying torch\_export\pass_base.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:23:32.4765416Z copying torch\_export\tools.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:23:32.5703254Z copying torch\_export\utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:23:32.5730086Z copying torch\_export\verifier.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:23:32.5745447Z copying torch\_export\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:23:32.5756851Z copying torch\_export\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-24T05:23:32.6481081Z creating build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:32.6484048Z copying torch\_functorch\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:32.7224351Z copying torch\_functorch\apis.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:32.8004956Z copying torch\_functorch\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:32.9238459Z copying torch\_functorch\batch_norm_replacement.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.0254131Z copying torch\_functorch\benchmark_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.0270411Z copying torch\_functorch\compilers.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.0282779Z copying torch\_functorch\compile_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.0293420Z copying torch\_functorch\config.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.0895439Z copying torch\_functorch\deprecated.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.0906858Z copying torch\_functorch\eager_transforms.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.0937779Z copying torch\_functorch\functional_call.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.0949296Z copying torch\_functorch\fx_minifier.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.0965784Z copying torch\_functorch\make_functional.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.0982177Z copying torch\_functorch\partitioners.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.1022322Z copying torch\_functorch\pyfunctorch.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.1033697Z copying torch\_functorch\python_key.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.1039915Z copying torch\_functorch\pytree_hacks.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.1054268Z copying torch\_functorch\top_operators_github_usage.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.1069997Z copying torch\_functorch\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.1080372Z copying torch\_functorch\vmap.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.1098436Z copying torch\_functorch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-24T05:23:33.1299773Z creating build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.1303168Z copying torch\_higher_order_ops\aoti_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.1314309Z copying torch\_higher_order_ops\associative_scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.1330321Z copying torch\_higher_order_ops\auto_functionalize.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.1359610Z copying torch\_higher_order_ops\base_hop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2345813Z copying torch\_higher_order_ops\cond.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2364394Z copying torch\_higher_order_ops\effects.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2376809Z copying torch\_higher_order_ops\executorch_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2387523Z copying torch\_higher_order_ops\flat_apply.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2398721Z copying torch\_higher_order_ops\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2420114Z copying torch\_higher_order_ops\foreach_map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2430607Z copying torch\_higher_order_ops\hints_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2441218Z copying torch\_higher_order_ops\invoke_subgraph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2458555Z copying torch\_higher_order_ops\map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2471062Z copying torch\_higher_order_ops\out_dtype.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2482334Z copying torch\_higher_order_ops\run_const_graph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2492322Z copying torch\_higher_order_ops\scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2519203Z copying torch\_higher_order_ops\schema.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2531087Z copying torch\_higher_order_ops\strict_mode.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2541665Z copying torch\_higher_order_ops\torchbind.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.2552728Z copying torch\_higher_order_ops\triton_kernel_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.3102566Z copying torch\_higher_order_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.3122522Z copying torch\_higher_order_ops\while_loop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.3145597Z copying torch\_higher_order_ops\wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.3156850Z copying torch\_higher_order_ops\_invoke_quant.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.3167297Z copying torch\_higher_order_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-24T05:23:33.3188672Z creating build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.3191904Z copying torch\_inductor\analyze_preserves_zero_mask.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.4020648Z copying torch\_inductor\aoti_eager.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.4033020Z copying torch\_inductor\async_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.4057309Z copying torch\_inductor\autotune_process.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.4073197Z copying torch\_inductor\bounds.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.4087266Z copying torch\_inductor\choices.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.4101988Z copying torch\_inductor\codecache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.4156736Z copying torch\_inductor\comms.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.4183288Z copying torch\_inductor\comm_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.4197873Z copying torch\_inductor\comm_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.4209375Z copying torch\_inductor\compiler_bisector.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.4224774Z copying torch\_inductor\compile_fx.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.4993922Z copying torch\_inductor\compile_fx_async.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.5038361Z copying torch\_inductor\compile_fx_ext.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.5053766Z copying torch\_inductor\compile_fx_subproc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.5063922Z copying torch\_inductor\config.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.5952836Z copying torch\_inductor\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.5966706Z copying torch\_inductor\cpp_builder.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.6002238Z copying torch\_inductor\cpu_vec_isa.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.6013964Z copying torch\_inductor\cudagraph_trees.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.6055224Z copying torch\_inductor\cudagraph_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.6077885Z copying torch\_inductor\custom_graph_pass.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.6087563Z copying torch\_inductor\debug.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.6107751Z copying torch\_inductor\decomposition.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.6129102Z copying torch\_inductor\dependencies.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.6145093Z copying torch\_inductor\dtype_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.6157086Z copying torch\_inductor\exc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.6168248Z copying torch\_inductor\extern_node_serializer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.6178315Z copying torch\_inductor\freezing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.6193760Z copying torch\_inductor\freezing_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.6204439Z copying torch\_inductor\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.6227127Z copying torch\_inductor\fx_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.6816484Z copying torch\_inductor\graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.7395546Z copying torch\_inductor\hooks.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.7401831Z copying torch\_inductor\index_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.7926317Z copying torch\_inductor\inductor_prims.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:33.9114572Z copying torch\_inductor\ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.0253173Z copying torch\_inductor\jagged_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.0268847Z copying torch\_inductor\loop_body.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.0286313Z copying torch\_inductor\lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.0367581Z copying torch\_inductor\memory.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.0385366Z copying torch\_inductor\metrics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.0396761Z copying torch\_inductor\mkldnn_ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.0419111Z copying torch\_inductor\mkldnn_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.1401735Z copying torch\_inductor\mock_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.1423225Z copying torch\_inductor\ops_handler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.1443739Z copying torch\_inductor\optimize_indexing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.1458756Z copying torch\_inductor\output_code.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.2396864Z copying torch\_inductor\pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.2434650Z copying torch\_inductor\quantized_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.2445764Z copying torch\_inductor\remote_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.2457100Z copying torch\_inductor\scheduler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.3121158Z copying torch\_inductor\select_algorithm.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.3173380Z copying torch\_inductor\sizevars.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.3192341Z copying torch\_inductor\standalone_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.4481207Z copying torch\_inductor\subgraph_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.5388719Z copying torch\_inductor\template_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.5411022Z copying torch\_inductor\test_case.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.5421468Z copying torch\_inductor\test_operators.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.5431792Z copying torch\_inductor\tiling_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.5448119Z copying torch\_inductor\triton_bundler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.5464683Z copying torch\_inductor\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.5511491Z copying torch\_inductor\virtualized.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.5523239Z copying torch\_inductor\wrapper_benchmark.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.5538909Z copying torch\_inductor\__autotune_main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.5557110Z copying torch\_inductor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:34.5571363Z creating build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:23:34.5574577Z copying torch\_lazy\closure.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:23:34.5586753Z copying torch\_lazy\computation.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:23:34.5601333Z copying torch\_lazy\config.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:23:34.5607150Z copying torch\_lazy\debug.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:23:34.5616682Z copying torch\_lazy\device_context.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:23:34.5632597Z copying torch\_lazy\extract_compiled_graph.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:23:34.5643613Z copying torch\_lazy\ir_cache.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:23:34.5649610Z copying torch\_lazy\metrics.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:23:34.5655601Z copying torch\_lazy\tensor_factory_functions.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:23:34.5665843Z copying torch\_lazy\ts_backend.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:23:34.5671934Z copying torch\_lazy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-24T05:23:34.5684667Z creating build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:23:34.5687880Z copying torch\_library\autograd.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:23:34.5699052Z copying torch\_library\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:23:34.5723448Z copying torch\_library\fake_class_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:23:34.5735170Z copying torch\_library\fake_impl.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:23:34.5752394Z copying torch\_library\fake_profile.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:23:34.5763737Z copying torch\_library\infer_schema.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:23:34.5774851Z copying torch\_library\simple_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:23:34.5784853Z copying torch\_library\triton.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:23:34.5796437Z copying torch\_library\utils.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:23:34.5811729Z copying torch\_library\__init__.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-24T05:23:34.5819324Z creating build\lib.win-amd64-cpython-39\torch\_logging 2025-07-24T05:23:34.5823174Z copying torch\_logging\scribe.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-07-24T05:23:34.5833561Z copying torch\_logging\structured.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-07-24T05:23:34.5843402Z copying torch\_logging\_internal.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-07-24T05:23:34.5869218Z copying torch\_logging\_registrations.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-07-24T05:23:34.6025260Z copying torch\_logging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-07-24T05:23:34.6043030Z creating build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6046025Z copying torch\_numpy\fft.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6056635Z copying torch\_numpy\linalg.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6071116Z copying torch\_numpy\random.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6085466Z copying torch\_numpy\_binary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6095916Z copying torch\_numpy\_casting_dicts.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6124818Z copying torch\_numpy\_dtypes.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6136770Z copying torch\_numpy\_dtypes_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6147212Z copying torch\_numpy\_funcs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6162243Z copying torch\_numpy\_funcs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6189050Z copying torch\_numpy\_getlimits.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6194879Z copying torch\_numpy\_ndarray.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6211595Z copying torch\_numpy\_normalizations.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6223724Z copying torch\_numpy\_reductions_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6235814Z copying torch\_numpy\_ufuncs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6247276Z copying torch\_numpy\_unary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6256510Z copying torch\_numpy\_util.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6267250Z copying torch\_numpy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-24T05:23:34.6275019Z creating build\lib.win-amd64-cpython-39\torch\_prims 2025-07-24T05:23:34.6278418Z copying torch\_prims\context.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-07-24T05:23:34.6289910Z copying torch\_prims\debug_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-07-24T05:23:34.6300141Z copying torch\_prims\executor.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-07-24T05:23:34.6363670Z copying torch\_prims\rng_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-07-24T05:23:34.6375787Z copying torch\_prims\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-07-24T05:23:34.6428516Z creating build\lib.win-amd64-cpython-39\torch\_prims_common 2025-07-24T05:23:34.6431652Z copying torch\_prims_common\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-07-24T05:23:34.6448707Z copying torch\_prims_common\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-07-24T05:23:34.7262962Z creating build\lib.win-amd64-cpython-39\torch\_refs 2025-07-24T05:23:34.7265962Z copying torch\_refs\fft.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-07-24T05:23:34.7294404Z copying torch\_refs\_conversions.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-07-24T05:23:34.7304272Z copying torch\_refs\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-07-24T05:23:34.7408477Z creating build\lib.win-amd64-cpython-39\torch\_strobelight 2025-07-24T05:23:34.7418938Z copying torch\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-07-24T05:23:34.7433997Z copying torch\_strobelight\compile_time_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-07-24T05:23:34.7445809Z copying torch\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-07-24T05:23:34.7459967Z creating build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:23:34.7463575Z copying torch\_subclasses\fake_impls.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:23:34.7486847Z copying torch\_subclasses\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:23:34.7543098Z copying torch\_subclasses\fake_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:23:34.7561543Z copying torch\_subclasses\functional_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:23:34.7583075Z copying torch\_subclasses\meta_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:23:34.7622374Z copying torch\_subclasses\schema_check_mode.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:23:34.7635138Z copying torch\_subclasses\_fake_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:23:34.7646025Z copying torch\_subclasses\__init__.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-24T05:23:34.7653192Z creating build\lib.win-amd64-cpython-39\torch\_vendor 2025-07-24T05:23:34.7656165Z copying torch\_vendor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor 2025-07-24T05:23:34.7662376Z creating build\lib.win-amd64-cpython-39\torch\ao\nn 2025-07-24T05:23:34.7665126Z copying torch\ao\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn 2025-07-24T05:23:34.7676820Z creating build\lib.win-amd64-cpython-39\torch\ao\ns 2025-07-24T05:23:34.7679912Z copying torch\ao\ns\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-07-24T05:23:34.8322510Z copying torch\ao\ns\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-07-24T05:23:34.9556910Z copying torch\ao\ns\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-07-24T05:23:34.9563949Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-07-24T05:23:34.9567280Z copying torch\ao\pruning\_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-07-24T05:23:35.0457953Z copying torch\ao\pruning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-07-24T05:23:35.0468802Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.0472239Z copying torch\ao\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.0488705Z copying torch\ao\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.0499801Z copying torch\ao\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.0517038Z copying torch\ao\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.1588740Z copying torch\ao\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.1611140Z copying torch\ao\quantization\qconfig_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.1623046Z copying torch\ao\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.1635121Z copying torch\ao\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.1652103Z copying torch\ao\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.1671971Z copying torch\ao\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.1683980Z copying torch\ao\quantization\quantize_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.1695036Z copying torch\ao\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.1705797Z copying torch\ao\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.1716783Z copying torch\ao\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.1732429Z copying torch\ao\quantization\_correct_bias.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.1743192Z copying torch\ao\quantization\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.1754432Z copying torch\ao\quantization\_learnable_fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.1765237Z copying torch\ao\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-24T05:23:35.1777875Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-07-24T05:23:35.1780900Z copying torch\ao\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-07-24T05:23:35.1791985Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-07-24T05:23:35.1795003Z copying torch\ao\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-07-24T05:23:35.1802101Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-07-24T05:23:35.1805094Z copying torch\ao\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-07-24T05:23:35.1812187Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-07-24T05:23:35.1826364Z copying torch\ao\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-07-24T05:23:35.1860780Z copying torch\ao\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-07-24T05:23:35.1868411Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-07-24T05:23:35.1871478Z copying torch\ao\nn\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-07-24T05:23:35.1878785Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-07-24T05:23:35.1881932Z copying torch\ao\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-07-24T05:23:35.1894760Z copying torch\ao\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-07-24T05:23:35.1902009Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-07-24T05:23:35.1905332Z copying torch\ao\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-07-24T05:23:35.1917477Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-07-24T05:23:35.1920913Z copying torch\ao\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-07-24T05:23:35.1929226Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:23:35.1932789Z copying torch\ao\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:23:35.1954945Z copying torch\ao\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:23:35.1966432Z copying torch\ao\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:23:35.1980022Z copying torch\ao\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:23:35.1998893Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-07-24T05:23:35.2001950Z copying torch\ao\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-07-24T05:23:35.2009533Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:23:35.2012849Z copying torch\ao\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:23:35.2022585Z copying torch\ao\nn\intrinsic\quantized\modules\conv_add.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:23:35.2036137Z copying torch\ao\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:23:35.2047532Z copying torch\ao\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:23:35.4593154Z copying torch\ao\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:23:35.4594103Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:23:35.4595039Z copying torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:23:35.4596261Z copying torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:23:35.4597187Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-07-24T05:23:35.4597787Z copying torch\ao\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-07-24T05:23:35.4598384Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-07-24T05:23:35.4599068Z copying torch\ao\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-07-24T05:23:35.4599800Z copying torch\ao\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-07-24T05:23:35.4600518Z copying torch\ao\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-07-24T05:23:35.4601289Z copying torch\ao\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-07-24T05:23:35.4601908Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-07-24T05:23:35.4602581Z copying torch\ao\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-07-24T05:23:35.4603407Z copying torch\ao\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-07-24T05:23:35.4604072Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-07-24T05:23:35.4604786Z copying torch\ao\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-07-24T05:23:35.4605629Z copying torch\ao\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-07-24T05:23:35.4606441Z copying torch\ao\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-07-24T05:23:35.4607124Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-07-24T05:23:35.4607763Z copying torch\ao\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-07-24T05:23:35.4608419Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:23:35.4609098Z copying torch\ao\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:23:35.4609932Z copying torch\ao\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:23:35.4610729Z copying torch\ao\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:23:35.4611513Z copying torch\ao\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:23:35.4612351Z copying torch\ao\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:23:35.4613239Z copying torch\ao\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:23:35.4614073Z copying torch\ao\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:23:35.4614908Z copying torch\ao\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:23:35.4615724Z copying torch\ao\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:23:35.4616509Z copying torch\ao\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:23:35.4617295Z copying torch\ao\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-24T05:23:35.4628178Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-07-24T05:23:35.4641234Z copying torch\ao\nn\quantized\reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-07-24T05:23:35.4648900Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:23:35.4652021Z copying torch\ao\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:23:35.4666399Z copying torch\ao\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:23:35.4676450Z copying torch\ao\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:23:35.4699597Z copying torch\ao\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:23:35.4707765Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-24T05:23:35.4710930Z copying torch\ao\nn\quantized\reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-24T05:23:35.4722290Z copying torch\ao\nn\quantized\reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-24T05:23:35.4732464Z copying torch\ao\nn\quantized\reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-24T05:23:35.4748660Z copying torch\ao\nn\quantized\reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-24T05:23:35.4762937Z copying torch\ao\nn\quantized\reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-24T05:23:35.4773449Z copying torch\ao\nn\quantized\reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-24T05:23:35.4780790Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-07-24T05:23:35.4784128Z copying torch\ao\nn\sparse\quantized\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-07-24T05:23:35.4799967Z copying torch\ao\nn\sparse\quantized\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-07-24T05:23:35.4810651Z copying torch\ao\nn\sparse\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-07-24T05:23:35.4818400Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-07-24T05:23:35.4822267Z copying torch\ao\nn\sparse\quantized\dynamic\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-07-24T05:23:35.4835798Z copying torch\ao\nn\sparse\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-07-24T05:23:35.4844385Z creating build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:23:35.4847671Z copying torch\ao\ns\fx\graph_matcher.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:23:35.4863350Z copying torch\ao\ns\fx\graph_passes.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:23:35.4891620Z copying torch\ao\ns\fx\mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:23:35.4906764Z copying torch\ao\ns\fx\ns_types.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:23:35.4916304Z copying torch\ao\ns\fx\n_shadows_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:23:35.4950546Z copying torch\ao\ns\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:23:35.4961794Z copying torch\ao\ns\fx\qconfig_multi_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:23:35.4972688Z copying torch\ao\ns\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:23:35.4987927Z copying torch\ao\ns\fx\weight_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:23:35.4999083Z copying torch\ao\ns\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-24T05:23:35.5005711Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-07-24T05:23:35.5008991Z copying torch\ao\pruning\scheduler\base_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-07-24T05:23:35.5019980Z copying torch\ao\pruning\scheduler\cubic_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-07-24T05:23:35.5030588Z copying torch\ao\pruning\scheduler\lambda_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-07-24T05:23:35.5051757Z copying torch\ao\pruning\scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-07-24T05:23:35.5058287Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-24T05:23:35.5097133Z copying torch\ao\pruning\sparsifier\base_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-24T05:23:35.5108227Z copying torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-24T05:23:35.5215359Z copying torch\ao\pruning\sparsifier\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-24T05:23:35.5235008Z copying torch\ao\pruning\sparsifier\weight_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-24T05:23:35.5250090Z copying torch\ao\pruning\sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-24T05:23:35.5263492Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-07-24T05:23:35.5266514Z copying torch\ao\pruning\_experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-07-24T05:23:35.5272845Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-24T05:23:35.5276619Z copying torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-24T05:23:35.5292155Z copying torch\ao\pruning\_experimental\activation_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-24T05:23:35.5298382Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-07-24T05:23:35.5301887Z copying torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-07-24T05:23:35.5312449Z copying torch\ao\pruning\_experimental\data_scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-07-24T05:23:35.5323561Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:23:35.5335110Z copying torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:23:35.5346699Z copying torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:23:35.6187023Z copying torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:23:35.6211130Z copying torch\ao\pruning\_experimental\data_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:23:35.6224342Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:23:35.6227751Z copying torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:23:35.6238947Z copying torch\ao\pruning\_experimental\pruner\FPGM_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:23:35.6249135Z copying torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:23:35.7377648Z copying torch\ao\pruning\_experimental\pruner\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:23:35.7407891Z copying torch\ao\pruning\_experimental\pruner\parametrization.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:23:35.7426384Z copying torch\ao\pruning\_experimental\pruner\prune_functions.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:23:35.7441870Z copying torch\ao\pruning\_experimental\pruner\saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:23:35.7452889Z copying torch\ao\pruning\_experimental\pruner\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-24T05:23:35.7460991Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-07-24T05:23:35.7465046Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-07-24T05:23:35.7472233Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:23:35.7476594Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\data_sparsity.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:23:35.7488930Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\_data_sparstity_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:23:35.7500234Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:23:35.7519903Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:23:35.7527965Z copying torch\ao\quantization\backend_config\backend_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:23:35.7564447Z copying torch\ao\quantization\backend_config\executorch.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:23:35.7578838Z copying torch\ao\quantization\backend_config\fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:23:35.7610152Z copying torch\ao\quantization\backend_config\native.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:23:35.7629640Z copying torch\ao\quantization\backend_config\observation_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:23:35.7634570Z copying torch\ao\quantization\backend_config\onednn.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:23:35.7648975Z copying torch\ao\quantization\backend_config\qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:23:35.7659391Z copying torch\ao\quantization\backend_config\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:23:35.7669453Z copying torch\ao\quantization\backend_config\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:23:35.7683846Z copying torch\ao\quantization\backend_config\x86.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:23:35.7693691Z copying torch\ao\quantization\backend_config\_common_operator_config_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:23:35.7710795Z copying torch\ao\quantization\backend_config\_qnnpack_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:23:35.7724854Z copying torch\ao\quantization\backend_config\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-24T05:23:35.7738441Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.7741752Z copying torch\ao\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8603169Z copying torch\ao\quantization\fx\custom_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8624538Z copying torch\ao\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8635247Z copying torch\ao\quantization\fx\fuse_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8645971Z copying torch\ao\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8664013Z copying torch\ao\quantization\fx\lower_to_fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8673728Z copying torch\ao\quantization\fx\lower_to_qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8683773Z copying torch\ao\quantization\fx\lstm_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8701652Z copying torch\ao\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8712364Z copying torch\ao\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8727279Z copying torch\ao\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8762284Z copying torch\ao\quantization\fx\qconfig_mapping_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8774327Z copying torch\ao\quantization\fx\quantize_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8788202Z copying torch\ao\quantization\fx\tracer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8800403Z copying torch\ao\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8822670Z copying torch\ao\quantization\fx\_decomposed.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8845763Z copying torch\ao\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8868381Z copying torch\ao\quantization\fx\_lower_to_native_backend.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8897653Z copying torch\ao\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-24T05:23:35.8920304Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:23:35.8923905Z copying torch\ao\quantization\pt2e\duplicate_dq_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:23:35.8933991Z copying torch\ao\quantization\pt2e\export_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:23:35.8945326Z copying torch\ao\quantization\pt2e\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:23:35.8957794Z copying torch\ao\quantization\pt2e\lowering.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:23:35.8972321Z copying torch\ao\quantization\pt2e\port_metadata_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:23:35.8987002Z copying torch\ao\quantization\pt2e\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:23:35.9002452Z copying torch\ao\quantization\pt2e\qat_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:23:35.9021868Z copying torch\ao\quantization\pt2e\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:23:35.9042104Z copying torch\ao\quantization\pt2e\_affine_quantization.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:23:35.9063746Z copying torch\ao\quantization\pt2e\_numeric_debugger.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:23:35.9077115Z copying torch\ao\quantization\pt2e\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-24T05:23:35.9085706Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:23:35.9094358Z copying torch\ao\quantization\quantizer\composable_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:23:35.9107763Z copying torch\ao\quantization\quantizer\embedding_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:23:35.9117452Z copying torch\ao\quantization\quantizer\quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:23:35.9131632Z copying torch\ao\quantization\quantizer\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:23:35.9143194Z copying torch\ao\quantization\quantizer\x86_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:23:35.9172343Z copying torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:23:35.9190664Z copying torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:23:35.9211975Z copying torch\ao\quantization\quantizer\xpu_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:23:35.9221060Z copying torch\ao\quantization\quantizer\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-24T05:23:35.9229410Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-24T05:23:35.9232568Z copying torch\ao\quantization\fx\_model_report\detector.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-24T05:23:35.9263807Z copying torch\ao\quantization\fx\_model_report\model_report.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-24T05:23:35.9280143Z copying torch\ao\quantization\fx\_model_report\model_report_observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-24T05:23:35.9299616Z copying torch\ao\quantization\fx\_model_report\model_report_visualizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-24T05:23:35.9319537Z copying torch\ao\quantization\fx\_model_report\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-24T05:23:35.9326117Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-07-24T05:23:35.9329903Z copying torch\ao\quantization\pt2e\representation\rewrite.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-07-24T05:23:35.9349980Z copying torch\ao\quantization\pt2e\representation\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-07-24T05:23:35.9357380Z creating build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-07-24T05:23:35.9360707Z copying torch\autograd\_functions\tensor.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-07-24T05:23:35.9371124Z copying torch\autograd\_functions\utils.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-07-24T05:23:35.9383785Z copying torch\autograd\_functions\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-07-24T05:23:35.9390543Z creating build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-07-24T05:23:35.9393581Z copying torch\backends\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-07-24T05:23:35.9400719Z creating build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-07-24T05:23:35.9403876Z copying torch\backends\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-07-24T05:23:35.9424224Z creating build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-07-24T05:23:35.9427474Z copying torch\backends\cudnn\rnn.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-07-24T05:23:35.9437988Z copying torch\backends\cudnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-07-24T05:23:35.9450009Z creating build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-07-24T05:23:35.9452665Z copying torch\backends\cusparselt\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-07-24T05:23:35.9467899Z creating build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-07-24T05:23:35.9475259Z copying torch\backends\kleidiai\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-07-24T05:23:35.9482880Z creating build\lib.win-amd64-cpython-39\torch\backends\mha 2025-07-24T05:23:35.9486138Z copying torch\backends\mha\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mha 2025-07-24T05:23:35.9501354Z creating build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-07-24T05:23:35.9504316Z copying torch\backends\mkl\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-07-24T05:23:35.9515429Z creating build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-07-24T05:23:35.9518705Z copying torch\backends\mkldnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-07-24T05:23:35.9531024Z creating build\lib.win-amd64-cpython-39\torch\backends\mps 2025-07-24T05:23:35.9533907Z copying torch\backends\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mps 2025-07-24T05:23:35.9548743Z creating build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-07-24T05:23:35.9551709Z copying torch\backends\nnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-07-24T05:23:35.9562574Z creating build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-07-24T05:23:35.9565515Z copying torch\backends\openmp\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-07-24T05:23:35.9572366Z creating build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-07-24T05:23:35.9575407Z copying torch\backends\opt_einsum\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-07-24T05:23:35.9586473Z creating build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-07-24T05:23:35.9589508Z copying torch\backends\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-07-24T05:23:35.9602999Z creating build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-07-24T05:23:35.9606078Z copying torch\backends\xeon\run_cpu.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-07-24T05:23:35.9640316Z copying torch\backends\xeon\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-07-24T05:23:35.9646131Z creating build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-07-24T05:23:35.9649727Z copying torch\backends\xnnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-07-24T05:23:35.9660504Z creating build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-07-24T05:23:35.9663872Z copying torch\backends\_coreml\preprocess.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-07-24T05:23:35.9675051Z copying torch\backends\_coreml\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-07-24T05:23:35.9681346Z creating build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-07-24T05:23:35.9684498Z copying torch\backends\_nnapi\prepare.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-07-24T05:23:35.9695172Z copying torch\backends\_nnapi\serializer.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-07-24T05:23:35.9735540Z copying torch\backends\_nnapi\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-07-24T05:23:35.9742221Z creating build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-07-24T05:23:35.9745459Z copying torch\cpu\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-07-24T05:23:35.9755407Z copying torch\cpu\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-07-24T05:23:35.9765856Z copying torch\cpu\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-07-24T05:23:35.9777591Z creating build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-07-24T05:23:35.9781581Z copying torch\cuda\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-07-24T05:23:35.9791118Z copying torch\cuda\amp\common.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-07-24T05:23:35.9797032Z copying torch\cuda\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-07-24T05:23:35.9806692Z copying torch\cuda\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-07-24T05:23:35.9813772Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-07-24T05:23:35.9821587Z copying torch\distributed\algorithms\join.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-07-24T05:23:35.9881826Z copying torch\distributed\algorithms\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-07-24T05:23:35.9895075Z creating build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-07-24T05:23:35.9898424Z copying torch\distributed\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-07-24T05:23:35.9914756Z creating build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:35.9918233Z copying torch\distributed\checkpoint\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:35.9928378Z copying torch\distributed\checkpoint\default_planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:35.9948947Z copying torch\distributed\checkpoint\filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:35.9976645Z copying torch\distributed\checkpoint\format_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:35.9993023Z copying torch\distributed\checkpoint\hf_storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0005707Z copying torch\distributed\checkpoint\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0017258Z copying torch\distributed\checkpoint\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0027770Z copying torch\distributed\checkpoint\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0039338Z copying torch\distributed\checkpoint\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0050700Z copying torch\distributed\checkpoint\planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0068751Z copying torch\distributed\checkpoint\planner_helpers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0085186Z copying torch\distributed\checkpoint\resharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0094860Z copying torch\distributed\checkpoint\staging.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0105751Z copying torch\distributed\checkpoint\stateful.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0115745Z copying torch\distributed\checkpoint\state_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0141604Z copying torch\distributed\checkpoint\state_dict_loader.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0156148Z copying torch\distributed\checkpoint\state_dict_saver.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0172629Z copying torch\distributed\checkpoint\storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0183300Z copying torch\distributed\checkpoint\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0201291Z copying torch\distributed\checkpoint\_async_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0211424Z copying torch\distributed\checkpoint\_async_process_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0222750Z copying torch\distributed\checkpoint\_async_thread_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0236272Z copying torch\distributed\checkpoint\_checkpointer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0250001Z copying torch\distributed\checkpoint\_consolidate_hf_safetensors.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0273152Z copying torch\distributed\checkpoint\_dedup_save_plans.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0287270Z copying torch\distributed\checkpoint\_dedup_tensors.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0297870Z copying torch\distributed\checkpoint\_extension.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0309109Z copying torch\distributed\checkpoint\_fsspec_filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0320199Z copying torch\distributed\checkpoint\_hf_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0329936Z copying torch\distributed\checkpoint\_nested_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0339630Z copying torch\distributed\checkpoint\_pg_transport.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0351565Z copying torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0366440Z copying torch\distributed\checkpoint\_state_dict_stager.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0377468Z copying torch\distributed\checkpoint\_storage_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0391340Z copying torch\distributed\checkpoint\_traverse.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0402150Z copying torch\distributed\checkpoint\_version.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0408192Z copying torch\distributed\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-24T05:23:36.0419634Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-07-24T05:23:36.0423203Z copying torch\distributed\elastic\control_plane.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-07-24T05:23:36.0432783Z copying torch\distributed\elastic\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-07-24T05:23:36.0448269Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.0451667Z copying torch\distributed\fsdp\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.0471388Z copying torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.0514877Z copying torch\distributed\fsdp\sharded_grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.0529547Z copying torch\distributed\fsdp\wrap.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.0548411Z copying torch\distributed\fsdp\_common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1256480Z copying torch\distributed\fsdp\_debug_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1271719Z copying torch\distributed\fsdp\_dynamo_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1283230Z copying torch\distributed\fsdp\_exec_order_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1421820Z copying torch\distributed\fsdp\_flat_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1473602Z copying torch\distributed\fsdp\_fsdp_extensions.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1484709Z copying torch\distributed\fsdp\_init_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1505239Z copying torch\distributed\fsdp\_limiter_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1526382Z copying torch\distributed\fsdp\_optim_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1585145Z copying torch\distributed\fsdp\_runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1615383Z copying torch\distributed\fsdp\_shard_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1629752Z copying torch\distributed\fsdp\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1648754Z copying torch\distributed\fsdp\_trace_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1659535Z copying torch\distributed\fsdp\_traversal_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1673598Z copying torch\distributed\fsdp\_unshard_param_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1684489Z copying torch\distributed\fsdp\_wrap_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1699191Z copying torch\distributed\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-24T05:23:36.1713613Z creating build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-07-24T05:23:36.1716866Z copying torch\distributed\launcher\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-07-24T05:23:36.1727815Z copying torch\distributed\launcher\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-07-24T05:23:36.1735068Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-07-24T05:23:36.1738295Z copying torch\distributed\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-07-24T05:23:36.1753001Z copying torch\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-07-24T05:23:36.1762801Z creating build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1766545Z copying torch\distributed\optim\apply_optimizer_in_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1778119Z copying torch\distributed\optim\functional_adadelta.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1790859Z copying torch\distributed\optim\functional_adagrad.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1804982Z copying torch\distributed\optim\functional_adam.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1819895Z copying torch\distributed\optim\functional_adamax.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1830374Z copying torch\distributed\optim\functional_adamw.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1841513Z copying torch\distributed\optim\functional_rmsprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1852846Z copying torch\distributed\optim\functional_rprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1862592Z copying torch\distributed\optim\functional_sgd.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1873726Z copying torch\distributed\optim\named_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1888307Z copying torch\distributed\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1899938Z copying torch\distributed\optim\post_localSGD_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1920005Z copying torch\distributed\optim\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1949399Z copying torch\distributed\optim\zero_redundancy_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1980499Z copying torch\distributed\optim\_deprecation_warning.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.1987099Z copying torch\distributed\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:36.2002953Z creating build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:23:36.2006768Z copying torch\distributed\pipelining\microbatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:23:36.2022173Z copying torch\distributed\pipelining\schedules.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:23:36.2067446Z copying torch\distributed\pipelining\stage.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:23:36.2095587Z copying torch\distributed\pipelining\_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:23:36.2110771Z copying torch\distributed\pipelining\_debug.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:23:36.2122398Z copying torch\distributed\pipelining\_IR.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:23:36.2148381Z copying torch\distributed\pipelining\_schedule_visualizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:23:36.2159089Z copying torch\distributed\pipelining\_unflatten.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:23:36.2172487Z copying torch\distributed\pipelining\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:23:36.2182498Z copying torch\distributed\pipelining\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-24T05:23:36.2190947Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:23:36.2194039Z copying torch\distributed\rpc\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:23:36.2213508Z copying torch\distributed\rpc\backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:23:36.2230599Z copying torch\distributed\rpc\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:23:36.2266444Z copying torch\distributed\rpc\functions.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:23:36.2281831Z copying torch\distributed\rpc\internal.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:23:36.2292423Z copying torch\distributed\rpc\options.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:23:36.2306930Z copying torch\distributed\rpc\rref_proxy.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:23:36.2316757Z copying torch\distributed\rpc\server_process_global_profiler.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:23:36.2327409Z copying torch\distributed\rpc\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:23:36.2340629Z copying torch\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-24T05:23:36.2354679Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:23:36.2358002Z copying torch\distributed\tensor\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:23:36.2364106Z copying torch\distributed\tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:23:36.3056771Z copying torch\distributed\tensor\_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:23:36.3082898Z copying torch\distributed\tensor\_collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:23:36.3101802Z copying torch\distributed\tensor\_dispatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:23:36.3117292Z copying torch\distributed\tensor\_dtensor_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:23:36.3129803Z copying torch\distributed\tensor\_op_schema.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:23:36.3149364Z copying torch\distributed\tensor\_random.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:23:36.3165916Z copying torch\distributed\tensor\_redistribute.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:23:36.3180410Z copying torch\distributed\tensor\_sharding_prop.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:23:36.3202192Z copying torch\distributed\tensor\_shards_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:23:36.3213825Z copying torch\distributed\tensor\_tp_conv.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:23:36.3225231Z copying torch\distributed\tensor\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:23:36.3244678Z copying torch\distributed\tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-24T05:23:36.3256764Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-07-24T05:23:36.3260524Z copying torch\distributed\_composable\checkpoint_activation.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-07-24T05:23:36.3270874Z copying torch\distributed\_composable\contract.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-07-24T05:23:36.3285647Z copying torch\distributed\_composable\replicate.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-07-24T05:23:36.3297021Z copying torch\distributed\_composable\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-07-24T05:23:36.3312137Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:23:36.3315501Z copying torch\distributed\_shard\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:23:36.3326940Z copying torch\distributed\_shard\common_op_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:23:36.3338072Z copying torch\distributed\_shard\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:23:36.3355731Z copying torch\distributed\_shard\op_registry_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:23:36.3365841Z copying torch\distributed\_shard\sharder.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:23:36.3383590Z copying torch\distributed\_shard\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:23:36.3393445Z copying torch\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-24T05:23:36.3401334Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-07-24T05:23:36.3404688Z copying torch\distributed\_sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-07-24T05:23:36.3411811Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-07-24T05:23:36.3415261Z copying torch\distributed\_sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-07-24T05:23:36.3422222Z creating build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-07-24T05:23:36.3425338Z copying torch\distributed\_symmetric_memory\_nvshmem_triton.py -> build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-07-24T05:23:36.3437333Z copying torch\distributed\_symmetric_memory\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-07-24T05:23:36.3468775Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-07-24T05:23:36.3471839Z copying torch\distributed\_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-07-24T05:23:36.3478051Z copying torch\distributed\_tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-07-24T05:23:36.3483870Z copying torch\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-07-24T05:23:36.3500543Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:23:36.3503764Z copying torch\distributed\_tools\common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:23:36.3514390Z copying torch\distributed\_tools\fake_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:23:36.3532978Z copying torch\distributed\_tools\fsdp2_mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:23:36.3549604Z copying torch\distributed\_tools\ilp_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:23:36.3732338Z copying torch\distributed\_tools\memory_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:23:36.3743490Z copying torch\distributed\_tools\mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:23:36.3763996Z copying torch\distributed\_tools\mod_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:23:36.3775804Z copying torch\distributed\_tools\runtime_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:23:36.3792579Z copying torch\distributed\_tools\sac_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:23:36.3814165Z copying torch\distributed\_tools\sac_ilp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:23:36.3825368Z copying torch\distributed\_tools\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-24T05:23:36.3834364Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:23:36.3837857Z copying torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:23:36.3853640Z copying torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:23:36.3864770Z copying torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:23:36.3884326Z copying torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:23:36.3895306Z copying torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:23:36.3907101Z copying torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:23:36.3918937Z copying torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:23:36.3940588Z copying torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:23:36.3951514Z copying torch\distributed\algorithms\ddp_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:23:36.3963356Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-07-24T05:23:36.3973027Z copying torch\distributed\algorithms\model_averaging\averagers.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-07-24T05:23:36.3984555Z copying torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-07-24T05:23:36.3996975Z copying torch\distributed\algorithms\model_averaging\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-07-24T05:23:36.4011273Z copying torch\distributed\algorithms\model_averaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-07-24T05:23:36.4017562Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-07-24T05:23:36.4020728Z copying torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-07-24T05:23:36.4032786Z copying torch\distributed\algorithms\_checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-07-24T05:23:36.4039539Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-07-24T05:23:36.4043107Z copying torch\distributed\algorithms\_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-07-24T05:23:36.4054007Z copying torch\distributed\algorithms\_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-07-24T05:23:36.4064995Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-07-24T05:23:36.4068805Z copying torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-07-24T05:23:36.4078848Z copying torch\distributed\algorithms\_optimizer_overlap\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-07-24T05:23:36.4085760Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-07-24T05:23:36.4089300Z copying torch\distributed\algorithms\_quantization\quantization.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-07-24T05:23:36.4099571Z copying torch\distributed\algorithms\_quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-07-24T05:23:36.4107549Z creating build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:23:36.4114993Z copying torch\distributed\checkpoint\_experimental\barriers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:23:36.4125512Z copying torch\distributed\checkpoint\_experimental\builder.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:23:36.4136738Z copying torch\distributed\checkpoint\_experimental\checkpointer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:23:36.4152928Z copying torch\distributed\checkpoint\_experimental\checkpoint_process.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:23:36.4187444Z copying torch\distributed\checkpoint\_experimental\checkpoint_reader.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:23:36.4279068Z copying torch\distributed\checkpoint\_experimental\checkpoint_writer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:23:36.4290371Z copying torch\distributed\checkpoint\_experimental\config.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:23:36.4300584Z copying torch\distributed\checkpoint\_experimental\staging.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:23:36.4312253Z copying torch\distributed\checkpoint\_experimental\types.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:23:36.4323190Z copying torch\distributed\checkpoint\_experimental\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:23:36.4332904Z copying torch\distributed\checkpoint\_experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-24T05:23:36.4345402Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-07-24T05:23:36.4348591Z copying torch\distributed\elastic\agent\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-07-24T05:23:36.4355180Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-07-24T05:23:36.4358858Z copying torch\distributed\elastic\events\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-07-24T05:23:36.4370496Z copying torch\distributed\elastic\events\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-07-24T05:23:36.4376192Z copying torch\distributed\elastic\events\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-07-24T05:23:36.4388279Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-07-24T05:23:36.4391281Z copying torch\distributed\elastic\metrics\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-07-24T05:23:36.4402694Z copying torch\distributed\elastic\metrics\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-07-24T05:23:36.4415005Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-07-24T05:23:36.4424328Z copying torch\distributed\elastic\multiprocessing\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-07-24T05:23:36.4445238Z copying torch\distributed\elastic\multiprocessing\redirects.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-07-24T05:23:36.5339537Z copying torch\distributed\elastic\multiprocessing\tail_log.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-07-24T05:23:36.5351458Z copying torch\distributed\elastic\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-07-24T05:23:36.5365850Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:23:36.5369275Z copying torch\distributed\elastic\rendezvous\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:23:36.5381387Z copying torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:23:36.5392673Z copying torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:23:36.5422028Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:23:36.5452750Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:23:36.5463394Z copying torch\distributed\elastic\rendezvous\etcd_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:23:36.5474634Z copying torch\distributed\elastic\rendezvous\etcd_store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:23:36.5485169Z copying torch\distributed\elastic\rendezvous\registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:23:36.5495367Z copying torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:23:36.5505969Z copying torch\distributed\elastic\rendezvous\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:23:36.5517129Z copying torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:23:36.5527020Z copying torch\distributed\elastic\rendezvous\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-24T05:23:36.5539649Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-24T05:23:36.5542846Z copying torch\distributed\elastic\timer\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-24T05:23:36.5553976Z copying torch\distributed\elastic\timer\debug_info_logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-24T05:23:36.5563647Z copying torch\distributed\elastic\timer\file_based_local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-24T05:23:36.5578725Z copying torch\distributed\elastic\timer\local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-24T05:23:36.5593780Z copying torch\distributed\elastic\timer\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-24T05:23:36.5605062Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-24T05:23:36.5608581Z copying torch\distributed\elastic\utils\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-24T05:23:36.5623062Z copying torch\distributed\elastic\utils\distributed.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-24T05:23:36.5634206Z copying torch\distributed\elastic\utils\logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-24T05:23:36.5645007Z copying torch\distributed\elastic\utils\log_level.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-24T05:23:36.5651517Z copying torch\distributed\elastic\utils\store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-24T05:23:36.5666788Z copying torch\distributed\elastic\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-24T05:23:36.5674397Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-07-24T05:23:36.5678383Z copying torch\distributed\elastic\agent\server\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-07-24T05:23:36.5699155Z copying torch\distributed\elastic\agent\server\health_check_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-07-24T05:23:36.5708836Z copying torch\distributed\elastic\agent\server\local_elastic_agent.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-07-24T05:23:36.5723851Z copying torch\distributed\elastic\agent\server\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-07-24T05:23:36.5734966Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:23:36.5744125Z copying torch\distributed\elastic\multiprocessing\errors\error_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:23:36.5754364Z copying torch\distributed\elastic\multiprocessing\errors\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:23:36.5761102Z copying torch\distributed\elastic\multiprocessing\errors\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:23:36.5773562Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:23:36.5776665Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:23:36.5786542Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:23:36.5795910Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:23:36.5803375Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-07-24T05:23:36.5806326Z copying torch\distributed\elastic\utils\data\cycling_iterator.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-07-24T05:23:36.5817061Z copying torch\distributed\elastic\utils\data\elastic_distributed_sampler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-07-24T05:23:36.5826769Z copying torch\distributed\elastic\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-07-24T05:23:36.5834924Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:23:36.5838451Z copying torch\distributed\fsdp\_fully_shard\_fsdp_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:23:36.5848782Z copying torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:23:36.5865602Z copying torch\distributed\fsdp\_fully_shard\_fsdp_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:23:36.5884460Z copying torch\distributed\fsdp\_fully_shard\_fsdp_init.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:23:36.5896193Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:23:36.5918015Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:23:36.5946869Z copying torch\distributed\fsdp\_fully_shard\_fsdp_state.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:23:36.5961795Z copying torch\distributed\fsdp\_fully_shard\_fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:23:36.5977700Z copying torch\distributed\fsdp\_fully_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-24T05:23:36.5984486Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-07-24T05:23:36.5987658Z copying torch\distributed\nn\api\remote_module.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-07-24T05:23:36.6003316Z copying torch\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-07-24T05:23:36.6009381Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-07-24T05:23:36.6012531Z copying torch\distributed\nn\jit\instantiator.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-07-24T05:23:36.6023168Z copying torch\distributed\nn\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-07-24T05:23:36.6029844Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-07-24T05:23:36.6033617Z copying torch\distributed\nn\jit\templates\remote_module_template.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-07-24T05:23:36.6044240Z copying torch\distributed\nn\jit\templates\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-07-24T05:23:36.6051626Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-07-24T05:23:36.6055723Z copying torch\distributed\rpc\_testing\faulty_agent_backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-07-24T05:23:36.6224688Z copying torch\distributed\rpc\_testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-07-24T05:23:36.6232258Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-07-24T05:23:36.6235377Z copying torch\distributed\tensor\debug\_comm_mode.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-07-24T05:23:36.6256217Z copying torch\distributed\tensor\debug\_op_coverage.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-07-24T05:23:36.6266683Z copying torch\distributed\tensor\debug\_visualize_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-07-24T05:23:36.6277968Z copying torch\distributed\tensor\debug\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-07-24T05:23:36.6296510Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-24T05:23:36.6299753Z copying torch\distributed\tensor\experimental\_attention.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-24T05:23:36.6324177Z copying torch\distributed\tensor\experimental\_func_map.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-24T05:23:36.6335158Z copying torch\distributed\tensor\experimental\_register_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-24T05:23:36.6351493Z copying torch\distributed\tensor\experimental\_tp_transform.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-24T05:23:36.6367781Z copying torch\distributed\tensor\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-24T05:23:36.6379430Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:23:36.6382576Z copying torch\distributed\tensor\parallel\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:23:36.6393053Z copying torch\distributed\tensor\parallel\ddp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:23:36.6403294Z copying torch\distributed\tensor\parallel\fsdp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:23:36.6414715Z copying torch\distributed\tensor\parallel\input_reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:23:36.6425538Z copying torch\distributed\tensor\parallel\loss.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:23:36.6440481Z copying torch\distributed\tensor\parallel\style.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:23:36.6548593Z copying torch\distributed\tensor\parallel\_data_parallel_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:23:36.6563327Z copying torch\distributed\tensor\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-24T05:23:36.6573037Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:23:36.6576946Z copying torch\distributed\tensor\_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:23:36.6588383Z copying torch\distributed\tensor\_ops\_common_rules.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:23:36.6599243Z copying torch\distributed\tensor\_ops\_conv_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:23:36.6609683Z copying torch\distributed\tensor\_ops\_einsum_strategy.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:23:36.6626663Z copying torch\distributed\tensor\_ops\_embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:23:36.6642015Z copying torch\distributed\tensor\_ops\_math_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:23:36.6662759Z copying torch\distributed\tensor\_ops\_matrix_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:23:36.6686919Z copying torch\distributed\tensor\_ops\_pointwise_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:23:36.6704054Z copying torch\distributed\tensor\_ops\_random_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:23:36.6714259Z copying torch\distributed\tensor\_ops\_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:23:36.6743417Z copying torch\distributed\tensor\_ops\_view_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:23:36.6760190Z copying torch\distributed\tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-24T05:23:36.6767370Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-07-24T05:23:36.6770584Z copying torch\distributed\_composable\fsdp\fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-07-24T05:23:36.6776375Z copying torch\distributed\_composable\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-07-24T05:23:36.6784580Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-07-24T05:23:36.6787662Z copying torch\distributed\_shard\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-07-24T05:23:36.6794668Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-07-24T05:23:36.6797998Z copying torch\distributed\_shard\sharded_optim\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-07-24T05:23:36.6808507Z copying torch\distributed\_shard\sharded_optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-07-24T05:23:36.6820716Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:23:36.6823810Z copying torch\distributed\_shard\sharded_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:23:36.7039731Z copying torch\distributed\_shard\sharded_tensor\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:23:36.7050507Z copying torch\distributed\_shard\sharded_tensor\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:23:36.7057192Z copying torch\distributed\_shard\sharded_tensor\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:23:36.7068698Z copying torch\distributed\_shard\sharded_tensor\reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:23:36.7087409Z copying torch\distributed\_shard\sharded_tensor\shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:23:36.7097087Z copying torch\distributed\_shard\sharded_tensor\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:23:36.7108316Z copying torch\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-24T05:23:36.7124467Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-07-24T05:23:36.7127437Z copying torch\distributed\_shard\sharding_plan\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-07-24T05:23:36.7136961Z copying torch\distributed\_shard\sharding_plan\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-07-24T05:23:36.7145094Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-07-24T05:23:36.7148397Z copying torch\distributed\_shard\sharding_spec\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-07-24T05:23:36.7160044Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-07-24T05:23:36.7171158Z copying torch\distributed\_shard\sharding_spec\_internals.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-07-24T05:23:36.7181952Z copying torch\distributed\_shard\sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-07-24T05:23:36.7196921Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:23:36.7200202Z copying torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:23:36.7210123Z copying torch\distributed\_shard\sharded_tensor\_ops\init.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:23:36.7220257Z copying torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:23:36.7226231Z copying torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:23:36.7236370Z copying torch\distributed\_shard\sharded_tensor\_ops\_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:23:36.7252882Z copying torch\distributed\_shard\sharded_tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:23:36.7260344Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:23:36.7263789Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:23:36.7274836Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding_bag.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:23:36.7289218Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:23:36.7306506Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:23:36.7312625Z creating build\lib.win-amd64-cpython-39\torch\export\experimental 2025-07-24T05:23:36.7315859Z copying torch\export\experimental\_utils.py -> build\lib.win-amd64-cpython-39\torch\export\experimental 2025-07-24T05:23:36.7326142Z copying torch\export\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\experimental 2025-07-24T05:23:36.7341775Z creating build\lib.win-amd64-cpython-39\torch\export\passes 2025-07-24T05:23:36.7344674Z copying torch\export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\passes 2025-07-24T05:23:36.7356134Z creating build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-07-24T05:23:36.7359299Z copying torch\export\pt2_archive\constants.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-07-24T05:23:36.7370035Z copying torch\export\pt2_archive\_package.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-07-24T05:23:36.7386053Z copying torch\export\pt2_archive\_package_weights.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-07-24T05:23:36.7395503Z copying torch\export\pt2_archive\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-07-24T05:23:36.7441195Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.7444530Z copying torch\fx\experimental\accelerator_partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.7465285Z copying torch\fx\experimental\const_fold.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.7476239Z copying torch\fx\experimental\debug.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.7493531Z copying torch\fx\experimental\graph_gradual_typechecker.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.7514410Z copying torch\fx\experimental\merge_matmul.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.7528127Z copying torch\fx\experimental\meta_tracer.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.7540297Z copying torch\fx\experimental\normalize.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8320945Z copying torch\fx\experimental\optimization.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8337139Z copying torch\fx\experimental\partitioner_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8348359Z copying torch\fx\experimental\proxy_tensor.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8383940Z copying torch\fx\experimental\recording.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8398973Z copying torch\fx\experimental\refinement_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8405030Z copying torch\fx\experimental\rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8415830Z copying torch\fx\experimental\schema_type_annotation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8426310Z copying torch\fx\experimental\symbolic_shapes.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8532480Z copying torch\fx\experimental\sym_node.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8562257Z copying torch\fx\experimental\unify_refinements.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8573687Z copying torch\fx\experimental\validator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8594356Z copying torch\fx\experimental\_backward_state.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8604804Z copying torch\fx\experimental\_config.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8614654Z copying torch\fx\experimental\_constant_symnode.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8631886Z copying torch\fx\experimental\_dynamism.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8642269Z copying torch\fx\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-24T05:23:36.8651581Z creating build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8654841Z copying torch\fx\passes\annotate_getitem_nodes.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8668813Z copying torch\fx\passes\fake_tensor_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8680857Z copying torch\fx\passes\graph_drawer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8695784Z copying torch\fx\passes\graph_manipulation.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8712860Z copying torch\fx\passes\graph_transform_observer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8723480Z copying torch\fx\passes\net_min_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8742804Z copying torch\fx\passes\operator_support.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8753554Z copying torch\fx\passes\param_fetch.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8763657Z copying torch\fx\passes\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8774539Z copying torch\fx\passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8795316Z copying torch\fx\passes\runtime_assert.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8811872Z copying torch\fx\passes\shape_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8825935Z copying torch\fx\passes\splitter_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8845575Z copying torch\fx\passes\split_module.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8861573Z copying torch\fx\passes\split_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8872799Z copying torch\fx\passes\tools_common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8883919Z copying torch\fx\passes\_tensorify_python_scalars.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8899970Z copying torch\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-24T05:23:36.8908492Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:23:36.8911885Z copying torch\fx\experimental\migrate_gradual_types\constraint.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:23:36.8927732Z copying torch\fx\experimental\migrate_gradual_types\constraint_generator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:23:36.8952331Z copying torch\fx\experimental\migrate_gradual_types\constraint_transformation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:23:36.8981054Z copying torch\fx\experimental\migrate_gradual_types\operation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:23:36.8987267Z copying torch\fx\experimental\migrate_gradual_types\transform_to_z3.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:23:36.9008047Z copying torch\fx\experimental\migrate_gradual_types\util.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:23:36.9018370Z copying torch\fx\experimental\migrate_gradual_types\z3_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:23:36.9028991Z copying torch\fx\experimental\migrate_gradual_types\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:23:36.9036859Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:23:36.9040836Z copying torch\fx\experimental\unification\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:23:36.9055290Z copying torch\fx\experimental\unification\dispatch.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:23:36.9061788Z copying torch\fx\experimental\unification\match.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:23:36.9073995Z copying torch\fx\experimental\unification\more.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:23:36.9083982Z copying torch\fx\experimental\unification\unification_tools.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:23:36.9102750Z copying torch\fx\experimental\unification\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:23:36.9112351Z copying torch\fx\experimental\unification\variable.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:23:36.9122500Z copying torch\fx\experimental\unification\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-24T05:23:36.9133695Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:23:36.9137122Z copying torch\fx\experimental\unification\multipledispatch\conflict.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:23:36.9149047Z copying torch\fx\experimental\unification\multipledispatch\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:23:36.9158292Z copying torch\fx\experimental\unification\multipledispatch\dispatcher.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:23:36.9169859Z copying torch\fx\experimental\unification\multipledispatch\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:23:36.9183305Z copying torch\fx\experimental\unification\multipledispatch\variadic.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:23:36.9200496Z copying torch\fx\experimental\unification\multipledispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:23:36.9207307Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-07-24T05:23:36.9210480Z copying torch\fx\passes\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-07-24T05:23:36.9219972Z copying torch\fx\passes\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-07-24T05:23:36.9225848Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-07-24T05:23:36.9347669Z copying torch\fx\passes\dialect\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-07-24T05:23:36.9354071Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-07-24T05:23:36.9357374Z copying torch\fx\passes\infra\partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-07-24T05:23:36.9372927Z copying torch\fx\passes\infra\pass_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-07-24T05:23:36.9383858Z copying torch\fx\passes\infra\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-07-24T05:23:36.9395509Z copying torch\fx\passes\infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-07-24T05:23:36.9415808Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-07-24T05:23:36.9419428Z copying torch\fx\passes\tests\test_pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-07-24T05:23:36.9429322Z copying torch\fx\passes\tests\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-07-24T05:23:36.9436567Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-24T05:23:36.9439886Z copying torch\fx\passes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-24T05:23:36.9450559Z copying torch\fx\passes\utils\fuser_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-24T05:23:36.9465333Z copying torch\fx\passes\utils\matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-24T05:23:36.9482086Z copying torch\fx\passes\utils\matcher_with_name_node_map_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-24T05:23:36.9501238Z copying torch\fx\passes\utils\source_matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-24T05:23:36.9515447Z copying torch\fx\passes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-24T05:23:36.9523394Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-07-24T05:23:36.9527526Z copying torch\fx\passes\dialect\common\cse_pass.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-07-24T05:23:36.9540112Z copying torch\fx\passes\dialect\common\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-07-24T05:23:36.9546787Z creating build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-07-24T05:23:36.9550282Z copying torch\jit\mobile\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-07-24T05:23:36.9563013Z creating build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-07-24T05:23:36.9566907Z copying torch\jit\_passes\_property_propagation.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-07-24T05:23:36.9579679Z copying torch\jit\_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-07-24T05:23:36.9587153Z creating build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:23:36.9590474Z copying torch\masked\maskedtensor\binary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:23:36.9601722Z copying torch\masked\maskedtensor\core.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:23:36.9612261Z copying torch\masked\maskedtensor\creation.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:23:36.9618084Z copying torch\masked\maskedtensor\passthrough.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:23:36.9627995Z copying torch\masked\maskedtensor\reductions.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:23:36.9646397Z copying torch\masked\maskedtensor\unary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:23:36.9657082Z copying torch\masked\maskedtensor\_ops_refs.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:23:36.9676590Z copying torch\masked\maskedtensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-24T05:23:36.9684315Z creating build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-24T05:23:36.9687530Z copying torch\nested\_internal\nested_int.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-24T05:23:36.9697582Z copying torch\nested\_internal\nested_tensor.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-24T05:23:36.9713602Z copying torch\nested\_internal\ops.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-24T05:23:36.9754982Z copying torch\nested\_internal\sdpa.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-24T05:23:36.9846696Z copying torch\nested\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-24T05:23:36.9852935Z creating build\lib.win-amd64-cpython-39\torch\nn\attention 2025-07-24T05:23:36.9856159Z copying torch\nn\attention\bias.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-07-24T05:23:36.9868251Z copying torch\nn\attention\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-07-24T05:23:36.9895572Z copying torch\nn\attention\_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-07-24T05:23:36.9905192Z copying torch\nn\attention\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-07-24T05:23:36.9916943Z creating build\lib.win-amd64-cpython-39\torch\nn\backends 2025-07-24T05:23:36.9919975Z copying torch\nn\backends\thnn.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-07-24T05:23:36.9926102Z copying torch\nn\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-07-24T05:23:36.9931780Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-07-24T05:23:36.9934822Z copying torch\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-07-24T05:23:36.9954431Z creating build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:36.9957798Z copying torch\nn\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:36.9983870Z copying torch\nn\modules\adaptive.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:36.9995541Z copying torch\nn\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0707135Z copying torch\nn\modules\channelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0725462Z copying torch\nn\modules\container.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0745590Z copying torch\nn\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0776850Z copying torch\nn\modules\distance.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0787001Z copying torch\nn\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0797835Z copying torch\nn\modules\flatten.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0808603Z copying torch\nn\modules\fold.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0820312Z copying torch\nn\modules\instancenorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0836325Z copying torch\nn\modules\lazy.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0847059Z copying torch\nn\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0858037Z copying torch\nn\modules\loss.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0894067Z copying torch\nn\modules\module.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0943574Z copying torch\nn\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0956171Z copying torch\nn\modules\padding.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0972521Z copying torch\nn\modules\pixelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.0982665Z copying torch\nn\modules\pooling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.1011814Z copying torch\nn\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.1043364Z copying torch\nn\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.1059045Z copying torch\nn\modules\transformer.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.1117713Z copying torch\nn\modules\upsampling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.1131915Z copying torch\nn\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.1141881Z copying torch\nn\modules\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.1153367Z copying torch\nn\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-24T05:23:37.1168259Z creating build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:23:37.1171659Z copying torch\nn\parallel\comm.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:23:37.1188654Z copying torch\nn\parallel\data_parallel.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:23:37.1200292Z copying torch\nn\parallel\distributed.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:23:37.1241797Z copying torch\nn\parallel\parallel_apply.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:23:37.1263820Z copying torch\nn\parallel\replicate.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:23:37.1274390Z copying torch\nn\parallel\scatter_gather.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:23:37.1284730Z copying torch\nn\parallel\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:23:37.1295750Z copying torch\nn\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-24T05:23:37.1307763Z creating build\lib.win-amd64-cpython-39\torch\nn\qat 2025-07-24T05:23:37.1310889Z copying torch\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat 2025-07-24T05:23:37.1318116Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-07-24T05:23:37.1321113Z copying torch\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-07-24T05:23:37.1328649Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-07-24T05:23:37.1331580Z copying torch\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-07-24T05:23:37.1337458Z copying torch\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-07-24T05:23:37.1354893Z creating build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1358306Z copying torch\nn\utils\clip_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1370051Z copying torch\nn\utils\convert_parameters.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1381082Z copying torch\nn\utils\fusion.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1392033Z copying torch\nn\utils\init.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1407513Z copying torch\nn\utils\memory_format.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1426951Z copying torch\nn\utils\parametrizations.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1442505Z copying torch\nn\utils\parametrize.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1465592Z copying torch\nn\utils\prune.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1489871Z copying torch\nn\utils\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1505838Z copying torch\nn\utils\spectral_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1517624Z copying torch\nn\utils\stateless.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1532435Z copying torch\nn\utils\weight_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1543206Z copying torch\nn\utils\_deprecation_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1553608Z copying torch\nn\utils\_named_member_accessor.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1565114Z copying torch\nn\utils\_per_sample_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1582203Z copying torch\nn\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-24T05:23:37.1593785Z creating build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-07-24T05:23:37.1607849Z copying torch\nn\attention\experimental\_paged_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-07-24T05:23:37.1620005Z copying torch\nn\attention\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-07-24T05:23:37.1632282Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-07-24T05:23:37.1635939Z copying torch\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-07-24T05:23:37.1642463Z copying torch\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-07-24T05:23:37.1649903Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-07-24T05:23:37.1653346Z copying torch\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-07-24T05:23:37.1661086Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-07-24T05:23:37.1664747Z copying torch\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-07-24T05:23:37.1677215Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-07-24T05:23:37.1680973Z copying torch\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-07-24T05:23:37.1691078Z copying torch\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-07-24T05:23:37.1697219Z copying torch\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-07-24T05:23:37.1703044Z copying torch\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-07-24T05:23:37.1718848Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-07-24T05:23:37.1722176Z copying torch\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-07-24T05:23:37.1729526Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-07-24T05:23:37.1732665Z copying torch\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-07-24T05:23:37.1738559Z copying torch\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-07-24T05:23:37.1752025Z copying torch\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-07-24T05:23:37.1757898Z copying torch\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-07-24T05:23:37.1764902Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:23:37.1768155Z copying torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:23:37.1773916Z copying torch\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:23:37.1784236Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-07-24T05:23:37.1787131Z copying torch\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-07-24T05:23:37.1794319Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-07-24T05:23:37.1797430Z copying torch\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-07-24T05:23:37.1803503Z copying torch\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-07-24T05:23:37.1809452Z copying torch\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-07-24T05:23:37.1819473Z copying torch\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-07-24T05:23:37.1826513Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-07-24T05:23:37.1829564Z copying torch\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-07-24T05:23:37.1835415Z copying torch\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-07-24T05:23:37.1843143Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-07-24T05:23:37.1846095Z copying torch\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-07-24T05:23:37.1855570Z copying torch\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-07-24T05:23:37.1861393Z copying torch\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-07-24T05:23:37.1888373Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-07-24T05:23:37.1891519Z copying torch\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-07-24T05:23:37.1899979Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:23:37.1903250Z copying torch\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:23:37.1917420Z copying torch\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:23:37.1926693Z copying torch\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:23:37.1932632Z copying torch\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:23:37.1939337Z copying torch\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:23:37.1957928Z copying torch\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:23:37.1963938Z copying torch\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:23:37.1970047Z copying torch\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:23:37.1980219Z copying torch\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:23:37.1986161Z copying torch\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:23:37.1992147Z copying torch\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-24T05:23:37.2003839Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-07-24T05:23:37.2016385Z copying torch\nn\quantized\_reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-07-24T05:23:37.2023836Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-07-24T05:23:37.2026957Z copying torch\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-07-24T05:23:37.2032907Z copying torch\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-07-24T05:23:37.2039003Z copying torch\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-07-24T05:23:37.2055584Z copying torch\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-07-24T05:23:37.2066789Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-24T05:23:37.2070100Z copying torch\nn\quantized\_reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-24T05:23:37.2076401Z copying torch\nn\quantized\_reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-24T05:23:37.2082156Z copying torch\nn\quantized\_reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-24T05:23:37.2092272Z copying torch\nn\quantized\_reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-24T05:23:37.2097963Z copying torch\nn\quantized\_reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-24T05:23:37.2103963Z copying torch\nn\quantized\_reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-24T05:23:37.2116347Z creating build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:23:37.2119807Z copying torch\nn\utils\_expanded_weights\conv_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:23:37.2133630Z copying torch\nn\utils\_expanded_weights\conv_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:23:37.2144327Z copying torch\nn\utils\_expanded_weights\embedding_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:23:37.2162752Z copying torch\nn\utils\_expanded_weights\expanded_weights_impl.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:23:37.2177431Z copying torch\nn\utils\_expanded_weights\expanded_weights_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:23:37.2188452Z copying torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:23:37.2198495Z copying torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:23:37.2242669Z copying torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:23:37.2256429Z copying torch\nn\utils\_expanded_weights\linear_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:23:37.2265891Z copying torch\nn\utils\_expanded_weights\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-24T05:23:37.2273473Z creating build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-07-24T05:23:37.2276712Z copying torch\onnx\ops\_dtype_mappings.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-07-24T05:23:37.2286430Z copying torch\onnx\ops\_impl.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-07-24T05:23:37.2300664Z copying torch\onnx\ops\_symbolic_impl.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-07-24T05:23:37.2311333Z copying torch\onnx\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-07-24T05:23:37.2328610Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-24T05:23:37.2331719Z copying torch\onnx\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-24T05:23:37.2343161Z copying torch\onnx\_internal\onnx_proto_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-24T05:23:37.2358971Z copying torch\onnx\_internal\registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-24T05:23:37.2373050Z copying torch\onnx\_internal\_exporter_legacy.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-24T05:23:37.2383467Z copying torch\onnx\_internal\_lazy_import.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-24T05:23:37.2393118Z copying torch\onnx\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-24T05:23:37.2402776Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2405991Z copying torch\onnx\_internal\exporter\_analysis.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2421147Z copying torch\onnx\_internal\exporter\_building.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2437626Z copying torch\onnx\_internal\exporter\_capture_strategies.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2448421Z copying torch\onnx\_internal\exporter\_compat.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2467057Z copying torch\onnx\_internal\exporter\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2472857Z copying torch\onnx\_internal\exporter\_core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2505762Z copying torch\onnx\_internal\exporter\_decomp.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2519938Z copying torch\onnx\_internal\exporter\_dispatching.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2532416Z copying torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2543380Z copying torch\onnx\_internal\exporter\_errors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2549419Z copying torch\onnx\_internal\exporter\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2555282Z copying torch\onnx\_internal\exporter\_fx_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2566885Z copying torch\onnx\_internal\exporter\_ir_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2579621Z copying torch\onnx\_internal\exporter\_isolated.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2591034Z copying torch\onnx\_internal\exporter\_onnx_program.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2610212Z copying torch\onnx\_internal\exporter\_registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2623178Z copying torch\onnx\_internal\exporter\_reporting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2634144Z copying torch\onnx\_internal\exporter\_schemas.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2650560Z copying torch\onnx\_internal\exporter\_tensors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2666760Z copying torch\onnx\_internal\exporter\_testing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2891754Z copying torch\onnx\_internal\exporter\_type_casting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2902680Z copying torch\onnx\_internal\exporter\_verification.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2913585Z copying torch\onnx\_internal\exporter\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-24T05:23:37.2920758Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-24T05:23:37.2924338Z copying torch\onnx\_internal\fx\patcher.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-24T05:23:37.2939040Z copying torch\onnx\_internal\fx\serialization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-24T05:23:37.2950335Z copying torch\onnx\_internal\fx\type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-24T05:23:37.2961322Z copying torch\onnx\_internal\fx\_pass.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-24T05:23:37.2972592Z copying torch\onnx\_internal\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-24T05:23:37.2984636Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:23:37.2992178Z copying torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:23:37.3002458Z copying torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:23:37.3012980Z copying torch\onnx\_internal\exporter\_torchlib\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:23:37.3019950Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:23:37.3027310Z copying torch\onnx\_internal\exporter\_torchlib\ops\core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:23:37.3037284Z copying torch\onnx\_internal\exporter\_torchlib\ops\hop.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:23:37.3050074Z copying torch\onnx\_internal\exporter\_torchlib\ops\nn.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:23:37.3062881Z copying torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:23:37.3074617Z copying torch\onnx\_internal\exporter\_torchlib\ops\symops.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:23:37.3085315Z copying torch\onnx\_internal\exporter\_torchlib\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:23:37.3092908Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-07-24T05:23:37.3096200Z copying torch\onnx\_internal\fx\passes\type_promotion.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-07-24T05:23:37.3125127Z copying torch\onnx\_internal\fx\passes\_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-07-24T05:23:37.3142116Z copying torch\onnx\_internal\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-07-24T05:23:37.3148909Z creating build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-07-24T05:23:37.3151968Z copying torch\optim\_multi_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-07-24T05:23:37.3163410Z creating build\lib.win-amd64-cpython-39\torch\package\analyze 2025-07-24T05:23:37.3166717Z copying torch\package\analyze\find_first_use_of_broken_modules.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-07-24T05:23:37.3176322Z copying torch\package\analyze\is_from_package.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-07-24T05:23:37.3182206Z copying torch\package\analyze\trace_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-07-24T05:23:37.3199801Z copying torch\package\analyze\__init__.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-07-24T05:23:37.3208441Z creating build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:23:37.3211546Z copying torch\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:23:37.3217332Z copying torch\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:23:37.3223467Z copying torch\quantization\fx\fusion_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:23:37.3228889Z copying torch\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:23:37.3234673Z copying torch\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:23:37.3248590Z copying torch\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:23:37.3259010Z copying torch\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:23:37.3264914Z copying torch\quantization\fx\quantization_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:23:37.3275292Z copying torch\quantization\fx\quantization_types.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:23:37.3281364Z copying torch\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:23:37.3290643Z copying torch\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:23:37.3300321Z copying torch\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-24T05:23:37.3311329Z creating build\lib.win-amd64-cpython-39\torch\signal\windows 2025-07-24T05:23:37.3314586Z copying torch\signal\windows\windows.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-07-24T05:23:37.3329749Z copying torch\signal\windows\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-07-24T05:23:37.3344034Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.3352023Z copying torch\testing\_internal\autocast_test_lists.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.4344433Z copying torch\testing\_internal\autograd_function_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.4360363Z copying torch\testing\_internal\check_kernel_launches.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.4376917Z copying torch\testing\_internal\common_cuda.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.4392820Z copying torch\testing\_internal\common_device_type.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.4425048Z copying torch\testing\_internal\common_distributed.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.4455826Z copying torch\testing\_internal\common_dist_composable.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.4466778Z copying torch\testing\_internal\common_dtype.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.4481489Z copying torch\testing\_internal\common_fsdp.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.4508576Z copying torch\testing\_internal\common_jit.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.4520557Z copying torch\testing\_internal\common_methods_invocations.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.6063713Z copying torch\testing\_internal\common_mkldnn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.6075179Z copying torch\testing\_internal\common_modules.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.6643709Z copying torch\testing\_internal\common_mps.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.6664144Z copying torch\testing\_internal\common_nn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.6831224Z copying torch\testing\_internal\common_optimizers.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.6864358Z copying torch\testing\_internal\common_pruning.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.7711850Z copying torch\testing\_internal\common_quantization.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.7770233Z copying torch\testing\_internal\common_quantized.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.7790714Z copying torch\testing\_internal\common_subclass.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.7802671Z copying torch\testing\_internal\common_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.7882508Z copying torch\testing\_internal\composite_compliance.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.7899246Z copying torch\testing\_internal\custom_op_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.7915187Z copying torch\testing\_internal\custom_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.7926634Z copying torch\testing\_internal\dist_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.7938459Z copying torch\testing\_internal\dynamo_test_failures.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8651840Z copying torch\testing\_internal\fake_config_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8665720Z copying torch\testing\_internal\fake_config_module2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8672116Z copying torch\testing\_internal\fake_config_module3.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8682720Z copying torch\testing\_internal\hop_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8693941Z copying torch\testing\_internal\hypothesis_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8705189Z copying torch\testing\_internal\inductor_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8716128Z copying torch\testing\_internal\jit_metaprogramming_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8735999Z copying torch\testing\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8757693Z copying torch\testing\_internal\logging_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8772472Z copying torch\testing\_internal\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8784229Z copying torch\testing\_internal\quantization_torch_package_models.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8793971Z copying torch\testing\_internal\static_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8803784Z copying torch\testing\_internal\subclasses.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8816686Z copying torch\testing\_internal\torchbind_impls.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8827392Z copying torch\testing\_internal\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8844779Z copying torch\testing\_internal\two_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8855485Z copying torch\testing\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-24T05:23:37.8861956Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-07-24T05:23:37.8865560Z copying torch\testing\_internal\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-07-24T05:23:37.8877057Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-07-24T05:23:37.8880149Z copying torch\testing\_internal\data\network1.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-07-24T05:23:37.8903370Z copying torch\testing\_internal\data\network2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-07-24T05:23:37.8909203Z copying torch\testing\_internal\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-07-24T05:23:37.8917893Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:23:37.8921243Z copying torch\testing\_internal\distributed\checkpoint_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:23:37.9403979Z copying torch\testing\_internal\distributed\common_state_dict.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:23:37.9414814Z copying torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:23:37.9435854Z copying torch\testing\_internal\distributed\distributed_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:23:37.9587880Z copying torch\testing\_internal\distributed\distributed_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:23:37.9600915Z copying torch\testing\_internal\distributed\fake_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:23:37.9614197Z copying torch\testing\_internal\distributed\multi_threaded_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:23:38.0140935Z copying torch\testing\_internal\distributed\rpc_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:23:38.0164165Z copying torch\testing\_internal\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-24T05:23:38.0170738Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-07-24T05:23:38.0174202Z copying torch\testing\_internal\generated\annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-07-24T05:23:38.1144767Z copying torch\testing\_internal\generated\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-07-24T05:23:38.1151560Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-07-24T05:23:38.1154814Z copying torch\testing\_internal\opinfo\core.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-07-24T05:23:38.1225236Z copying torch\testing\_internal\opinfo\refs.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-07-24T05:23:38.1236425Z copying torch\testing\_internal\opinfo\utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-07-24T05:23:38.1250414Z copying torch\testing\_internal\opinfo\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-07-24T05:23:38.1257866Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-24T05:23:38.1261065Z copying torch\testing\_internal\optests\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-24T05:23:38.1272008Z copying torch\testing\_internal\optests\autograd_registration.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-24T05:23:38.1286308Z copying torch\testing\_internal\optests\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-24T05:23:38.1295951Z copying torch\testing\_internal\optests\generate_tests.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-24T05:23:38.1315963Z copying torch\testing\_internal\optests\make_fx.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-24T05:23:38.1325522Z copying torch\testing\_internal\optests\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-24T05:23:38.1333125Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-07-24T05:23:38.1336407Z copying torch\testing\_internal\test_module\future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-07-24T05:23:38.1342746Z copying torch\testing\_internal\test_module\no_future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-07-24T05:23:38.1348181Z copying torch\testing\_internal\test_module\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-07-24T05:23:38.1354104Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-07-24T05:23:38.1357314Z copying torch\testing\_internal\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-07-24T05:23:38.1364592Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:23:38.1367922Z copying torch\testing\_internal\distributed\rpc\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:23:38.1407181Z copying torch\testing\_internal\distributed\rpc\dist_optimizer_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:23:38.1421635Z copying torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:23:38.1436607Z copying torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:23:38.1446454Z copying torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:23:38.1459218Z copying torch\testing\_internal\distributed\rpc\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:23:38.1536890Z copying torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:23:38.1546990Z copying torch\testing\_internal\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-24T05:23:38.1552872Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-07-24T05:23:38.1556118Z copying torch\testing\_internal\distributed\_shard\test_common.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-07-24T05:23:38.1565933Z copying torch\testing\_internal\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-07-24T05:23:38.1573065Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-07-24T05:23:38.1576129Z copying torch\testing\_internal\distributed\_tensor\common_dtensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-07-24T05:23:38.1593030Z copying torch\testing\_internal\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-07-24T05:23:38.1600393Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-07-24T05:23:38.1604461Z copying torch\testing\_internal\distributed\nn\api\remote_module_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-07-24T05:23:38.1622484Z copying torch\testing\_internal\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-07-24T05:23:38.1629748Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:23:38.1633936Z copying torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:23:38.1645688Z copying torch\testing\_internal\distributed\rpc\examples\reinforcement_learning_rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:23:38.1661157Z copying torch\testing\_internal\distributed\rpc\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:23:38.1667975Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:23:38.1671267Z copying torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:23:38.1682377Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:23:38.1704385Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:23:38.1715923Z copying torch\testing\_internal\distributed\rpc\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:23:38.1722336Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:23:38.1725787Z copying torch\testing\_internal\distributed\_shard\sharded_tensor\_test_ops_common.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:23:38.1740651Z copying torch\testing\_internal\distributed\_shard\sharded_tensor\_test_st_common.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:23:38.1750280Z copying torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:23:38.1761950Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:23:38.1765124Z copying torch\testing\_internal\opinfo\definitions\fft.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:23:38.1781606Z copying torch\testing\_internal\opinfo\definitions\linalg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:23:38.1818422Z copying torch\testing\_internal\opinfo\definitions\nested.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:23:38.1845519Z copying torch\testing\_internal\opinfo\definitions\signal.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:23:38.1856788Z copying torch\testing\_internal\opinfo\definitions\sparse.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:23:38.1877133Z copying torch\testing\_internal\opinfo\definitions\special.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:23:38.1899331Z copying torch\testing\_internal\opinfo\definitions\_masked.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:23:38.1922832Z copying torch\testing\_internal\opinfo\definitions\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-24T05:23:38.1929803Z creating build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-07-24T05:23:38.1933003Z copying torch\utils\backcompat\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-07-24T05:23:38.1944457Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-07-24T05:23:38.1947434Z copying torch\utils\benchmark\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-07-24T05:23:38.1954938Z creating build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-07-24T05:23:38.1957971Z copying torch\utils\bottleneck\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-07-24T05:23:38.1962847Z copying torch\utils\bottleneck\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-07-24T05:23:38.1979566Z creating build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:23:38.1982992Z copying torch\utils\data\backward_compatibility.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:23:38.1994647Z copying torch\utils\data\dataloader.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:23:38.2164293Z copying torch\utils\data\dataset.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:23:38.2180123Z copying torch\utils\data\distributed.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:23:38.2196924Z copying torch\utils\data\graph.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:23:38.2210886Z copying torch\utils\data\graph_settings.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:23:38.2221570Z copying torch\utils\data\sampler.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:23:38.2234083Z copying torch\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-24T05:23:38.2245835Z creating build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-24T05:23:38.2249382Z copying torch\utils\hipify\constants.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-24T05:23:38.2263241Z copying torch\utils\hipify\cuda_to_hip_mappings.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-24T05:23:38.2394596Z copying torch\utils\hipify\hipify_python.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-24T05:23:38.2415769Z copying torch\utils\hipify\version.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-24T05:23:38.2425482Z copying torch\utils\hipify\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-24T05:23:38.2432934Z creating build\lib.win-amd64-cpython-39\torch\utils\jit 2025-07-24T05:23:38.2436317Z copying torch\utils\jit\log_extract.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-07-24T05:23:38.2446658Z copying torch\utils\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-07-24T05:23:38.2453103Z creating build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-24T05:23:38.2456381Z copying torch\utils\model_dump\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-24T05:23:38.2470825Z copying torch\utils\model_dump\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-24T05:23:38.2478625Z creating build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-07-24T05:23:38.2481748Z copying torch\utils\serialization\config.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-07-24T05:23:38.2487498Z copying torch\utils\serialization\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-07-24T05:23:38.2495630Z creating build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:23:38.2498809Z copying torch\utils\tensorboard\summary.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:23:38.2519520Z copying torch\utils\tensorboard\writer.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:23:38.2547522Z copying torch\utils\tensorboard\_convert_np.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:23:38.2557764Z copying torch\utils\tensorboard\_embedding.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:23:38.2571461Z copying torch\utils\tensorboard\_onnx_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:23:38.2581777Z copying torch\utils\tensorboard\_proto_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:23:38.2591746Z copying torch\utils\tensorboard\_pytorch_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:23:38.2603316Z copying torch\utils\tensorboard\_utils.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:23:38.2615582Z copying torch\utils\tensorboard\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-24T05:23:38.2627352Z creating build\lib.win-amd64-cpython-39\torch\utils\viz 2025-07-24T05:23:38.2630658Z copying torch\utils\viz\_cycles.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-07-24T05:23:38.2648207Z copying torch\utils\viz\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-07-24T05:23:38.2654789Z creating build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-07-24T05:23:38.2658139Z copying torch\utils\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-07-24T05:23:38.2670370Z copying torch\utils\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-07-24T05:23:38.2677721Z creating build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:23:38.2680775Z copying torch\utils\_sympy\functions.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:23:38.2707288Z copying torch\utils\_sympy\interp.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:23:38.2723209Z copying torch\utils\_sympy\numbers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:23:38.2733921Z copying torch\utils\_sympy\printers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:23:38.2766710Z copying torch\utils\_sympy\reference.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:23:38.2803975Z copying torch\utils\_sympy\singleton_int.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:23:38.2813469Z copying torch\utils\_sympy\solve.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:23:38.2824502Z copying torch\utils\_sympy\symbol.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:23:38.2833918Z copying torch\utils\_sympy\value_ranges.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:23:38.2856777Z copying torch\utils\_sympy\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-24T05:23:38.2863831Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-24T05:23:38.2866927Z copying torch\utils\benchmark\examples\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-24T05:23:38.2876675Z copying torch\utils\benchmark\examples\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-24T05:23:38.2886009Z copying torch\utils\benchmark\examples\op_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-24T05:23:38.2896482Z copying torch\utils\benchmark\examples\simple_timeit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-24T05:23:38.2906128Z copying torch\utils\benchmark\examples\spectral_ops_fuzz_test.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-24T05:23:38.2920881Z copying torch\utils\benchmark\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-24T05:23:38.2927786Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-24T05:23:38.2931255Z copying torch\utils\benchmark\op_fuzzers\binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-24T05:23:38.2943499Z copying torch\utils\benchmark\op_fuzzers\sparse_binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-24T05:23:38.2959750Z copying torch\utils\benchmark\op_fuzzers\sparse_unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-24T05:23:38.2969568Z copying torch\utils\benchmark\op_fuzzers\spectral.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-24T05:23:38.2984227Z copying torch\utils\benchmark\op_fuzzers\unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-24T05:23:38.2997797Z copying torch\utils\benchmark\op_fuzzers\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-24T05:23:38.3005112Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:23:38.3008416Z copying torch\utils\benchmark\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:23:38.3019595Z copying torch\utils\benchmark\utils\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:23:38.3031539Z copying torch\utils\benchmark\utils\compile.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:23:38.3042639Z copying torch\utils\benchmark\utils\cpp_jit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:23:38.3057289Z copying torch\utils\benchmark\utils\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:23:38.3072886Z copying torch\utils\benchmark\utils\sparse_fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:23:38.3088483Z copying torch\utils\benchmark\utils\timer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:23:38.3109227Z copying torch\utils\benchmark\utils\_stubs.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:23:38.3121043Z copying torch\utils\benchmark\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:23:38.3127840Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:23:38.3131518Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:23:38.3153690Z copying torch\utils\benchmark\utils\valgrind_wrapper\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:23:38.3160272Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:23:38.3163592Z copying torch\utils\data\datapipes\datapipe.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:23:38.3178047Z copying torch\utils\data\datapipes\gen_pyi.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:23:38.3191800Z copying torch\utils\data\datapipes\_decorator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:23:38.3202486Z copying torch\utils\data\datapipes\_hook_iterator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:23:38.3218351Z copying torch\utils\data\datapipes\_typing.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:23:38.3233149Z copying torch\utils\data\datapipes\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:23:38.3241121Z creating build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-24T05:23:38.3244390Z copying torch\utils\data\_utils\collate.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-24T05:23:38.3255604Z copying torch\utils\data\_utils\fetch.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-24T05:23:38.3265363Z copying torch\utils\data\_utils\pin_memory.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-24T05:23:38.3276697Z copying torch\utils\data\_utils\signal_handling.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-24T05:23:38.3287016Z copying torch\utils\data\_utils\worker.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-24T05:23:38.3301323Z copying torch\utils\data\_utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-24T05:23:38.3316543Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-24T05:23:38.3320121Z copying torch\utils\data\datapipes\dataframe\dataframes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-24T05:23:38.3331880Z copying torch\utils\data\datapipes\dataframe\dataframe_wrapper.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-24T05:23:38.3342047Z copying torch\utils\data\datapipes\dataframe\datapipes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-24T05:23:38.3359564Z copying torch\utils\data\datapipes\dataframe\structures.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-24T05:23:38.3370211Z copying torch\utils\data\datapipes\dataframe\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-24T05:23:38.3378851Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:23:38.3382029Z copying torch\utils\data\datapipes\iter\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:23:38.3393266Z copying torch\utils\data\datapipes\iter\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:23:38.3407588Z copying torch\utils\data\datapipes\iter\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:23:38.3424616Z copying torch\utils\data\datapipes\iter\filelister.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:23:38.3439696Z copying torch\utils\data\datapipes\iter\fileopener.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:23:38.3457847Z copying torch\utils\data\datapipes\iter\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:23:38.3469442Z copying torch\utils\data\datapipes\iter\routeddecoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:23:38.3479562Z copying torch\utils\data\datapipes\iter\selecting.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:23:38.3489602Z copying torch\utils\data\datapipes\iter\sharding.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:23:38.3502873Z copying torch\utils\data\datapipes\iter\streamreader.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:23:38.3512760Z copying torch\utils\data\datapipes\iter\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:23:38.3522814Z copying torch\utils\data\datapipes\iter\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-24T05:23:38.3534722Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-24T05:23:38.3537968Z copying torch\utils\data\datapipes\map\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-24T05:23:38.3551628Z copying torch\utils\data\datapipes\map\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-24T05:23:38.3563143Z copying torch\utils\data\datapipes\map\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-24T05:23:38.3573519Z copying torch\utils\data\datapipes\map\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-24T05:23:38.3582915Z copying torch\utils\data\datapipes\map\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-24T05:23:38.3600812Z copying torch\utils\data\datapipes\map\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-24T05:23:38.3608936Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-07-24T05:23:38.3612495Z copying torch\utils\data\datapipes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-07-24T05:23:38.3624632Z copying torch\utils\data\datapipes\utils\decoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-07-24T05:23:38.3637091Z copying torch\utils\data\datapipes\utils\snapshot.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-07-24T05:23:38.3646908Z copying torch\utils\data\datapipes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-07-24T05:23:38.3654652Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:23:38.3657939Z copying torch\_dynamo\backends\common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:23:38.3670371Z copying torch\_dynamo\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:23:38.4251763Z copying torch\_dynamo\backends\debugging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:23:38.4268039Z copying torch\_dynamo\backends\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:23:38.4289060Z copying torch\_dynamo\backends\inductor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:23:38.4299097Z copying torch\_dynamo\backends\onnxrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:23:38.4321198Z copying torch\_dynamo\backends\registry.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:23:38.4333689Z copying torch\_dynamo\backends\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:23:38.4339596Z copying torch\_dynamo\backends\torchxla.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:23:38.4349021Z copying torch\_dynamo\backends\tvm.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:23:38.4366448Z copying torch\_dynamo\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-24T05:23:38.4374666Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:23:38.4378147Z copying torch\_dynamo\polyfills\builtins.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:23:38.4387871Z copying torch\_dynamo\polyfills\functools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:23:38.4397923Z copying torch\_dynamo\polyfills\fx.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:23:38.4407346Z copying torch\_dynamo\polyfills\itertools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:23:38.4427938Z copying torch\_dynamo\polyfills\loader.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:23:38.4441589Z copying torch\_dynamo\polyfills\operator.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:23:38.4451113Z copying torch\_dynamo\polyfills\os.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:23:38.4464791Z copying torch\_dynamo\polyfills\pytree.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:23:38.4476661Z copying torch\_dynamo\polyfills\struct.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:23:38.4482595Z copying torch\_dynamo\polyfills\sys.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:23:38.4492088Z copying torch\_dynamo\polyfills\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:23:38.4510075Z copying torch\_dynamo\polyfills\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-24T05:23:38.4522785Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-07-24T05:23:38.4526390Z copying torch\_dynamo\repro\after_aot.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-07-24T05:23:38.4547246Z copying torch\_dynamo\repro\after_dynamo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-07-24T05:23:38.4563725Z copying torch\_dynamo\repro\aoti.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-07-24T05:23:38.4582325Z copying torch\_dynamo\repro\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-07-24T05:23:38.4592237Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4595756Z copying torch\_dynamo\variables\base.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4612984Z copying torch\_dynamo\variables\builder.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4673496Z copying torch\_dynamo\variables\builtin.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4711679Z copying torch\_dynamo\variables\constant.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4722765Z copying torch\_dynamo\variables\ctx_manager.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4750345Z copying torch\_dynamo\variables\dicts.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4772741Z copying torch\_dynamo\variables\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4787621Z copying torch\_dynamo\variables\functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4822067Z copying torch\_dynamo\variables\higher_order_ops.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4868167Z copying torch\_dynamo\variables\iter.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4883875Z copying torch\_dynamo\variables\lazy.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4894540Z copying torch\_dynamo\variables\lists.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4914603Z copying torch\_dynamo\variables\misc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4944759Z copying torch\_dynamo\variables\nn_module.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4967995Z copying torch\_dynamo\variables\optimizer.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4982303Z copying torch\_dynamo\variables\script_object.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.4992202Z copying torch\_dynamo\variables\sdpa.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.5002498Z copying torch\_dynamo\variables\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.5032189Z copying torch\_dynamo\variables\torch.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.5068375Z copying torch\_dynamo\variables\torch_function.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.5084703Z copying torch\_dynamo\variables\user_defined.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.5114926Z copying torch\_dynamo\variables\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-24T05:23:38.5127489Z creating build\lib.win-amd64-cpython-39\torch\_export\db 2025-07-24T05:23:38.5130596Z copying torch\_export\db\case.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-07-24T05:23:38.5145687Z copying torch\_export\db\gen_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-07-24T05:23:38.5152123Z copying torch\_export\db\logging.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-07-24T05:23:38.5161841Z copying torch\_export\db\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-07-24T05:23:38.5171349Z creating build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:23:38.5175100Z copying torch\_export\passes\add_runtime_assertions_for_constraints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:23:38.5189667Z copying torch\_export\passes\collect_tracepoints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:23:38.5200706Z copying torch\_export\passes\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:23:38.5219682Z copying torch\_export\passes\functionalize_side_effectful_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:23:38.5229864Z copying torch\_export\passes\insert_custom_op_guards.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:23:38.5240000Z copying torch\_export\passes\lift_constants_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:23:38.5254452Z copying torch\_export\passes\remove_runtime_assertions.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:23:38.5264475Z copying torch\_export\passes\replace_autocast_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:23:38.5281550Z copying torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:23:38.5296940Z copying torch\_export\passes\replace_set_grad_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:23:38.5307625Z copying torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:23:38.5317602Z copying torch\_export\passes\replace_with_hop_pass_util.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:23:38.5328267Z copying torch\_export\passes\_node_metadata_hook.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:23:38.5338383Z copying torch\_export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-24T05:23:38.5357094Z creating build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-07-24T05:23:38.5360274Z copying torch\_export\pass_infra\node_metadata.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-07-24T05:23:38.5370081Z copying torch\_export\pass_infra\proxy_value.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-07-24T05:23:38.5379418Z copying torch\_export\pass_infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-07-24T05:23:38.5386495Z creating build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:23:38.5389677Z copying torch\_export\serde\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:23:38.5400579Z copying torch\_export\serde\schema.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:23:38.5412022Z copying torch\_export\serde\schema_check.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:23:38.5428909Z copying torch\_export\serde\serialize.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:23:38.5489899Z copying torch\_export\serde\union.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:23:38.5499782Z copying torch\_export\serde\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:23:38.5512176Z creating build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5515629Z copying torch\_export\db\examples\assume_constant_result.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5522022Z copying torch\_export\db\examples\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5535718Z copying torch\_export\db\examples\class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5545143Z copying torch\_export\db\examples\cond_branch_class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5555068Z copying torch\_export\db\examples\cond_branch_nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5565500Z copying torch\_export\db\examples\cond_branch_nonlocal_variables.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5575308Z copying torch\_export\db\examples\cond_closed_over_variable.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5581209Z copying torch\_export\db\examples\cond_operands.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5591585Z copying torch\_export\db\examples\cond_predicate.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5605038Z copying torch\_export\db\examples\constrain_as_size_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5615155Z copying torch\_export\db\examples\constrain_as_value_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5625032Z copying torch\_export\db\examples\decorator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5656908Z copying torch\_export\db\examples\dictionary.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5667964Z copying torch\_export\db\examples\dynamic_shape_assert.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5675052Z copying torch\_export\db\examples\dynamic_shape_constructor.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5682085Z copying torch\_export\db\examples\dynamic_shape_if_guard.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5688495Z copying torch\_export\db\examples\dynamic_shape_map.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5695114Z copying torch\_export\db\examples\dynamic_shape_round.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5706047Z copying torch\_export\db\examples\dynamic_shape_slicing.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5712529Z copying torch\_export\db\examples\dynamic_shape_view.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5718880Z copying torch\_export\db\examples\fn_with_kwargs.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5728903Z copying torch\_export\db\examples\list_contains.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5735121Z copying torch\_export\db\examples\list_unpack.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5741016Z copying torch\_export\db\examples\model_attr_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5750805Z copying torch\_export\db\examples\nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5757272Z copying torch\_export\db\examples\null_context_manager.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5767816Z copying torch\_export\db\examples\optional_input.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5773709Z copying torch\_export\db\examples\pytree_flatten.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5780147Z copying torch\_export\db\examples\scalar_output.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5790747Z copying torch\_export\db\examples\specialized_attribute.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5796637Z copying torch\_export\db\examples\static_for_loop.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5802511Z copying torch\_export\db\examples\static_if.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5808559Z copying torch\_export\db\examples\tensor_setattr.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5814879Z copying torch\_export\db\examples\type_reflection_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5821137Z copying torch\_export\db\examples\unsupported_operator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5831669Z copying torch\_export\db\examples\user_input_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5837916Z copying torch\_export\db\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-24T05:23:38.5853997Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-24T05:23:38.5857384Z copying torch\_functorch\_activation_checkpointing\ac_logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-24T05:23:38.5868767Z copying torch\_functorch\_activation_checkpointing\graph_info_provider.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-24T05:23:38.5880705Z copying torch\_functorch\_activation_checkpointing\knapsack.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-24T05:23:38.5898025Z copying torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-24T05:23:38.5908947Z copying torch\_functorch\_activation_checkpointing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-24T05:23:38.5918360Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.5921664Z copying torch\_functorch\_aot_autograd\autograd_cache.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.5948144Z copying torch\_functorch\_aot_autograd\collect_metadata_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.5972312Z copying torch\_functorch\_aot_autograd\frontend_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.5987466Z copying torch\_functorch\_aot_autograd\functional_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.6005000Z copying torch\_functorch\_aot_autograd\graph_capture.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.6017079Z copying torch\_functorch\_aot_autograd\graph_capture_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.7535898Z copying torch\_functorch\_aot_autograd\graph_compile.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.7568852Z copying torch\_functorch\_aot_autograd\input_output_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.7584579Z copying torch\_functorch\_aot_autograd\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.7599387Z copying torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.7646163Z copying torch\_functorch\_aot_autograd\schemas.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.7676464Z copying torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.7688309Z copying torch\_functorch\_aot_autograd\subclass_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.7706785Z copying torch\_functorch\_aot_autograd\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.7722857Z copying torch\_functorch\_aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-24T05:23:38.7731016Z creating build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-07-24T05:23:38.7734185Z copying torch\_inductor\analysis\device_info.py -> build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-07-24T05:23:38.7745346Z copying torch\_inductor\analysis\profile_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-07-24T05:23:38.7769452Z copying torch\_inductor\analysis\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-07-24T05:23:38.7775878Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-24T05:23:38.7779412Z copying torch\_inductor\autoheuristic\autoheuristic.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-24T05:23:38.7790670Z copying torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-24T05:23:38.7801769Z copying torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-24T05:23:38.7827076Z copying torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-24T05:23:38.7838001Z copying torch\_inductor\autoheuristic\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-24T05:23:38.7849590Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.7852972Z copying torch\_inductor\codegen\aoti_hipify_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.7863109Z copying torch\_inductor\codegen\block_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.7873795Z copying torch\_inductor\codegen\common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.7915556Z copying torch\_inductor\codegen\cpp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.8538773Z copying torch\_inductor\codegen\cpp_bmm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.8910282Z copying torch\_inductor\codegen\cpp_flex_attention_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.8931531Z copying torch\_inductor\codegen\cpp_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.8969635Z copying torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.8989281Z copying torch\_inductor\codegen\cpp_micro_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9020546Z copying torch\_inductor\codegen\cpp_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9038302Z copying torch\_inductor\codegen\cpp_template_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9058259Z copying torch\_inductor\codegen\cpp_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9075674Z copying torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9124059Z copying torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9153096Z copying torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9169309Z copying torch\_inductor\codegen\cpp_wrapper_mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9181681Z copying torch\_inductor\codegen\cpu_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9191160Z copying torch\_inductor\codegen\cuda_combined_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9202160Z copying torch\_inductor\codegen\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9217217Z copying torch\_inductor\codegen\halide.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9247161Z copying torch\_inductor\codegen\memory_planning.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9263462Z copying torch\_inductor\codegen\mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9288243Z copying torch\_inductor\codegen\mps_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9314409Z copying torch\_inductor\codegen\multi_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9329896Z copying torch\_inductor\codegen\simd.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9464250Z copying torch\_inductor\codegen\simd_kernel_features.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:38.9483440Z copying torch\_inductor\codegen\subgraph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:39.0525362Z copying torch\_inductor\codegen\triton.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:39.0605863Z copying torch\_inductor\codegen\triton_combo_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:39.0628156Z copying torch\_inductor\codegen\triton_split_scan.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:39.0642603Z copying torch\_inductor\codegen\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:39.0659280Z copying torch\_inductor\codegen\wrapper.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:39.0710136Z copying torch\_inductor\codegen\wrapper_fxir.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:39.0725742Z copying torch\_inductor\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-24T05:23:39.0732916Z creating build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-24T05:23:39.0736240Z copying torch\_inductor\compile_worker\subproc_pool.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-24T05:23:39.0748590Z copying torch\_inductor\compile_worker\tracked_process_pool.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-24T05:23:39.0759645Z copying torch\_inductor\compile_worker\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-24T05:23:39.0770441Z copying torch\_inductor\compile_worker\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-24T05:23:39.0781986Z copying torch\_inductor\compile_worker\__main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-24T05:23:39.0802966Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.0806296Z copying torch\_inductor\fx_passes\b2b_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.0825494Z copying torch\_inductor\fx_passes\binary_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.0841381Z copying torch\_inductor\fx_passes\bucketing.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.0866229Z copying torch\_inductor\fx_passes\ddp_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.0886474Z copying torch\_inductor\fx_passes\decompose_mem_bound_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.0897503Z copying torch\_inductor\fx_passes\dedupe_symint_uses.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.0907321Z copying torch\_inductor\fx_passes\efficient_conv_bn_eval.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.0918734Z copying torch\_inductor\fx_passes\freezing_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.0929909Z copying torch\_inductor\fx_passes\fsdp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.0940321Z copying torch\_inductor\fx_passes\fuse_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.1790654Z copying torch\_inductor\fx_passes\group_batch_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.1818165Z copying torch\_inductor\fx_passes\joint_graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.1838248Z copying torch\_inductor\fx_passes\micro_pipeline_tp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.2532335Z copying torch\_inductor\fx_passes\misc_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.2544082Z copying torch\_inductor\fx_passes\mkldnn_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.2574737Z copying torch\_inductor\fx_passes\numeric_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.2586352Z copying torch\_inductor\fx_passes\pad_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.2603683Z copying torch\_inductor\fx_passes\post_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.2633434Z copying torch\_inductor\fx_passes\pre_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.3166983Z copying torch\_inductor\fx_passes\quantization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.3341786Z copying torch\_inductor\fx_passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.3363254Z copying torch\_inductor\fx_passes\replace_random.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.3374079Z copying torch\_inductor\fx_passes\split_cat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.3419709Z copying torch\_inductor\fx_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-24T05:23:39.3428346Z creating build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:23:39.3431349Z copying torch\_inductor\kernel\bmm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:23:39.3442567Z copying torch\_inductor\kernel\conv.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:23:39.3459517Z copying torch\_inductor\kernel\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:23:39.3501723Z copying torch\_inductor\kernel\flex_decoding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:23:39.3522454Z copying torch\_inductor\kernel\mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:23:39.4170174Z copying torch\_inductor\kernel\mm_common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:23:39.4182771Z copying torch\_inductor\kernel\mm_grouped.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:23:39.4199575Z copying torch\_inductor\kernel\mm_plus_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:23:39.4210786Z copying torch\_inductor\kernel\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-24T05:23:39.4218405Z creating build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-07-24T05:23:39.4222104Z copying torch\_inductor\package\build_package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-07-24T05:23:39.4228030Z copying torch\_inductor\package\package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-07-24T05:23:39.4242120Z copying torch\_inductor\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-07-24T05:23:39.4251730Z creating build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:23:39.4255066Z copying torch\_inductor\runtime\autotune_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:23:39.4271608Z copying torch\_inductor\runtime\benchmarking.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:23:39.4282380Z copying torch\_inductor\runtime\cache_dir_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:23:39.4296297Z copying torch\_inductor\runtime\compile_tasks.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:23:39.4310616Z copying torch\_inductor\runtime\coordinate_descent_tuner.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:23:39.4321963Z copying torch\_inductor\runtime\halide_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:23:39.4336826Z copying torch\_inductor\runtime\hints.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:23:39.4348293Z copying torch\_inductor\runtime\runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:23:39.4359221Z copying torch\_inductor\runtime\static_cuda_launcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:23:39.4370539Z copying torch\_inductor\runtime\triton_compat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:23:39.4381966Z copying torch\_inductor\runtime\triton_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:23:39.4399036Z copying torch\_inductor\runtime\triton_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:23:39.4462275Z copying torch\_inductor\runtime\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-24T05:23:39.4469775Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:23:39.4473254Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:23:39.4515191Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:23:39.4531857Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:23:39.4552174Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:23:39.4568682Z copying torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:23:39.4579868Z copying torch\_inductor\autoheuristic\artifacts\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:23:39.4587545Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:23:39.4591119Z copying torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:23:39.4602209Z copying torch\_inductor\codegen\cuda\cuda_env.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:23:39.4613084Z copying torch\_inductor\codegen\cuda\cuda_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:23:39.4630444Z copying torch\_inductor\codegen\cuda\cuda_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:23:39.4651776Z copying torch\_inductor\codegen\cuda\cutlass_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:23:39.4663973Z copying torch\_inductor\codegen\cuda\cutlass_presets.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:23:39.4675726Z copying torch\_inductor\codegen\cuda\cutlass_python_evt.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:23:39.4692631Z copying torch\_inductor\codegen\cuda\cutlass_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:23:39.4708444Z copying torch\_inductor\codegen\cuda\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:23:39.4721249Z copying torch\_inductor\codegen\cuda\gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:23:39.4752433Z copying torch\_inductor\codegen\cuda\serialization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:23:39.4772078Z copying torch\_inductor\codegen\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-24T05:23:39.4780171Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:23:39.4783420Z copying torch\_inductor\codegen\rocm\ck_conv_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:23:39.4799521Z copying torch\_inductor\codegen\rocm\ck_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:23:39.4810191Z copying torch\_inductor\codegen\rocm\ck_tile_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:23:39.4821364Z copying torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:23:39.4859191Z copying torch\_inductor\codegen\rocm\ck_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:23:39.4880788Z copying torch\_inductor\codegen\rocm\compile_command.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:23:39.4891785Z copying torch\_inductor\codegen\rocm\rocm_benchmark_request.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:23:39.4902880Z copying torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:23:39.4913054Z copying torch\_inductor\codegen\rocm\rocm_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:23:39.4924855Z copying torch\_inductor\codegen\rocm\rocm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:23:39.4935913Z copying torch\_inductor\codegen\rocm\rocm_template_buffer.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:23:39.4961197Z copying torch\_inductor\codegen\rocm\rocm_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:23:39.4967101Z copying torch\_inductor\codegen\rocm\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-24T05:23:39.4973691Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-07-24T05:23:39.4977094Z copying torch\_inductor\codegen\xpu\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-07-24T05:23:39.4987403Z copying torch\_inductor\codegen\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-07-24T05:23:39.4993887Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:23:39.4997509Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\evt_extensions.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:23:39.5009014Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\gemm_operation_extensions.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:23:39.5027654Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:23:39.5043475Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.5046873Z copying torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.5057322Z copying torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.6084857Z copying torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.6112206Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.6124232Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.6135816Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.6150628Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.6162423Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.6174258Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.6188424Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.6211516Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7407125Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7423196Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7443694Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7455424Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7467432Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7482902Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_21.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7495070Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_22.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7509497Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_23.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7524585Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_24.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7536685Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7548584Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7563053Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7574870Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7586531Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7598363Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7731513Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7743435Z copying torch\_inductor\fx_passes\serialized_patterns\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:23:39.7749994Z creating build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-07-24T05:23:39.7753327Z copying torch\_numpy\testing\utils.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-07-24T05:23:39.7782779Z copying torch\_numpy\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-07-24T05:23:39.7789895Z creating build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-07-24T05:23:39.7792894Z copying torch\_refs\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-07-24T05:23:39.7804728Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-07-24T05:23:39.7807976Z copying torch\_refs\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-07-24T05:23:39.7814704Z creating build\lib.win-amd64-cpython-39\torch\_refs\special 2025-07-24T05:23:39.7822132Z copying torch\_refs\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\special 2025-07-24T05:23:39.7833457Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-07-24T05:23:39.7836657Z copying torch\_refs\nn\functional\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-07-24T05:23:39.7862848Z creating build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-07-24T05:23:39.7866383Z copying torch\_vendor\packaging\version.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-07-24T05:23:39.7881393Z copying torch\_vendor\packaging\_structures.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-07-24T05:23:39.7891076Z copying torch\_vendor\packaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-07-24T05:23:39.7898305Z creating build\lib.win-amd64-cpython-39\torchgen\aoti 2025-07-24T05:23:39.7901428Z copying torchgen\aoti\fallback_ops.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-07-24T05:23:39.7915804Z copying torchgen\aoti\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-07-24T05:23:39.7923700Z creating build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:23:39.7926728Z copying torchgen\api\autograd.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:23:39.7947289Z copying torchgen\api\cpp.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:23:39.7962454Z copying torchgen\api\dispatcher.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:23:39.7971990Z copying torchgen\api\functionalization.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:23:39.7985208Z copying torchgen\api\lazy.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:23:39.8004314Z copying torchgen\api\meta.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:23:39.8013488Z copying torchgen\api\native.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:23:39.8026508Z copying torchgen\api\python.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:23:39.8051928Z copying torchgen\api\structured.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:23:39.8063205Z copying torchgen\api\translate.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:23:39.8077811Z copying torchgen\api\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:23:39.8088881Z copying torchgen\api\unboxing.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:23:39.8100680Z copying torchgen\api\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-24T05:23:39.8107247Z creating build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-24T05:23:39.8110288Z copying torchgen\dest\lazy_ir.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-24T05:23:39.8127225Z copying torchgen\dest\lazy_ts_lowering.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-24T05:23:39.8137321Z copying torchgen\dest\native_functions.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-24T05:23:39.8147662Z copying torchgen\dest\register_dispatch_key.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-24T05:23:39.8172365Z copying torchgen\dest\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-24T05:23:39.8188198Z copying torchgen\dest\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-24T05:23:39.8229367Z creating build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-07-24T05:23:39.8232903Z copying torchgen\operator_versions\gen_mobile_upgraders.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-07-24T05:23:39.8245029Z copying torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-07-24T05:23:39.8250647Z copying torchgen\operator_versions\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-07-24T05:23:39.8261502Z creating build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-07-24T05:23:39.8265003Z copying torchgen\selective_build\operator.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-07-24T05:23:39.8277132Z copying torchgen\selective_build\selector.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-07-24T05:23:39.8287731Z copying torchgen\selective_build\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-07-24T05:23:39.8294115Z creating build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-07-24T05:23:39.8297290Z copying torchgen\static_runtime\config.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-07-24T05:23:39.8308497Z copying torchgen\static_runtime\generator.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-07-24T05:23:39.8324560Z copying torchgen\static_runtime\gen_static_runtime_ops.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-07-24T05:23:39.8341421Z copying torchgen\static_runtime\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-07-24T05:23:39.8347703Z creating build\lib.win-amd64-cpython-39\torchgen\api\types 2025-07-24T05:23:39.8350730Z copying torchgen\api\types\signatures.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-07-24T05:23:39.8361594Z copying torchgen\api\types\types.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-07-24T05:23:39.8371785Z copying torchgen\api\types\types_base.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-07-24T05:23:39.8382391Z copying torchgen\api\types\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-07-24T05:23:40.7246034Z copying torch\return_types.pyi -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:40.7270626Z copying torch\_VF.pyi -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:40.7656752Z copying torch\py.typed -> build\lib.win-amd64-cpython-39\torch 2025-07-24T05:23:40.7661516Z creating build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:23:40.7664673Z copying torch\bin\asmjit.dll -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:23:40.7675382Z copying torch\bin\fbgemm.dll -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:23:40.7733765Z copying torch\bin\FileStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:23:40.7745759Z copying torch\bin\ProcessGroupGlooAsyncTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:23:40.7764954Z copying torch\bin\ProcessGroupGlooTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:23:40.7777425Z copying torch\bin\protoc.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:23:40.7809794Z copying torch\bin\TCPStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:23:40.7825550Z copying torch\bin\test_api.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:23:40.7915887Z copying torch\bin\test_jit.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:23:40.7969986Z copying torch\bin\test_lazy.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:23:40.7997946Z copying torch\bin\test_nativert.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:23:40.8024729Z copying torch\bin\test_tensorexpr.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:23:40.8086786Z copying torch\bin\tutorial_tensorexpr.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-24T05:23:40.8094597Z creating build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8097578Z copying torch\test\apply_utils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8107992Z copying torch\test\atest.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8128947Z copying torch\test\backend_fallback_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8139480Z copying torch\test\basic.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8155090Z copying torch\test\broadcast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8169304Z copying torch\test\c10_accumulate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8179704Z copying torch\test\c10_ArrayRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8189949Z copying torch\test\c10_bfloat16_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8200504Z copying torch\test\c10_Bitset_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8210333Z copying torch\test\c10_bit_cast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8220596Z copying torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8230806Z copying torch\test\c10_complex_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8241845Z copying torch\test\c10_complex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8252766Z copying torch\test\c10_ConstexprCrc_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8263350Z copying torch\test\c10_cow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8274935Z copying torch\test\c10_cuda_CUDAAssertionsTest_1_var_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8285777Z copying torch\test\c10_cuda_CUDAAssertionsTest_catches_stream.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8300978Z copying torch\test\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8316794Z copying torch\test\c10_cuda_CUDAAssertionsTest_from_2_processes.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8327105Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8337533Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8347802Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8357814Z copying torch\test\c10_cuda_CUDATest.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8368122Z copying torch\test\c10_DeadlockDetection_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8382681Z copying torch\test\c10_DeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8396555Z copying torch\test\c10_Device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8406799Z copying torch\test\c10_DispatchKeySet_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8417245Z copying torch\test\c10_Enumerate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8428207Z copying torch\test\c10_error_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8438297Z copying torch\test\c10_exception_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8448478Z copying torch\test\c10_flags_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8458465Z copying torch\test\c10_generic_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8468341Z copying torch\test\c10_Half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8482612Z copying torch\test\c10_InlineDeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8498942Z copying torch\test\c10_InlineStreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8509639Z copying torch\test\c10_IntrusiveList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8539518Z copying torch\test\c10_intrusive_ptr_benchmark.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8552596Z copying torch\test\c10_intrusive_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8571135Z copying torch\test\c10_irange_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8581740Z copying torch\test\c10_lazy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8592473Z copying torch\test\c10_LeftRight_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8621582Z copying torch\test\c10_logging_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8639619Z copying torch\test\c10_Metaprogramming_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8650500Z copying torch\test\c10_NetworkFlow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8661552Z copying torch\test\c10_optional_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8673696Z copying torch\test\c10_ordered_preserving_dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8685234Z copying torch\test\c10_registry_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8695211Z copying torch\test\c10_Scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8705545Z copying torch\test\c10_Semaphore_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8720884Z copying torch\test\c10_SizesAndStrides_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8737754Z copying torch\test\c10_small_vector_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8753924Z copying torch\test\c10_ssize_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8765047Z copying torch\test\c10_StreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8776250Z copying torch\test\c10_string_util_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8787247Z copying torch\test\c10_string_view_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8797408Z copying torch\test\c10_SymInt_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8807966Z copying torch\test\c10_Synchronized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8821572Z copying torch\test\c10_tempfile_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8831526Z copying torch\test\c10_ThreadLocal_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8845443Z copying torch\test\c10_typeid_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8855645Z copying torch\test\c10_TypeIndex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8865443Z copying torch\test\c10_TypeList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8875236Z copying torch\test\c10_TypeTraits_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8885030Z copying torch\test\CppSignature_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8895622Z copying torch\test\cpu_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8910144Z copying torch\test\cpu_generator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8920987Z copying torch\test\cpu_profiling_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8937708Z copying torch\test\cpu_rng_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8950892Z copying torch\test\cuda_allocatorTraceTracker_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8965352Z copying torch\test\cuda_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8975526Z copying torch\test\cuda_apply_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8985563Z copying torch\test\cuda_atomic_ops_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.8996602Z copying torch\test\cuda_caching_host_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9011423Z copying torch\test\cuda_complex_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9022472Z copying torch\test\cuda_complex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9032979Z copying torch\test\cuda_cub_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9044032Z copying torch\test\cuda_cudnn_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9054346Z copying torch\test\cuda_device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9064521Z copying torch\test\cuda_distributions_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9077674Z copying torch\test\cuda_dlconvertor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9088198Z copying torch\test\cuda_exchange_device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9103363Z copying torch\test\cuda_generator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9114267Z copying torch\test\cuda_half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9125273Z copying torch\test\cuda_integer_divider_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9139387Z copying torch\test\cuda_optional_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9150353Z copying torch\test\cuda_packedtensoraccessor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9161629Z copying torch\test\cuda_reportMemoryUsage_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9172834Z copying torch\test\cuda_stream_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9183634Z copying torch\test\cuda_vectorized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9195389Z copying torch\test\Dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9206254Z copying torch\test\Dimname_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9216871Z copying torch\test\dlconvertor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9227038Z copying torch\test\extension_backend_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9245354Z copying torch\test\half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9257017Z copying torch\test\IListRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9268911Z copying torch\test\inline_container_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9281115Z copying torch\test\ivalue_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9295439Z copying torch\test\KernelFunction_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9308248Z copying torch\test\kernel_function_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9324163Z copying torch\test\kernel_function_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9338495Z copying torch\test\kernel_lambda_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9357319Z copying torch\test\kernel_lambda_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9375918Z copying torch\test\kernel_stackbased_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9387135Z copying torch\test\lazy_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9397036Z copying torch\test\legacy_vmap_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9415436Z copying torch\test\List_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9428695Z copying torch\test\make_boxed_from_unboxed_functor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9441496Z copying torch\test\math_kernel_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9451608Z copying torch\test\MaybeOwned_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9463438Z copying torch\test\memory_format_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9474159Z copying torch\test\memory_overlapping_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9484649Z copying torch\test\mobile_memory_cleanup.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9495308Z copying torch\test\NamedTensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9510458Z copying torch\test\native_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9521468Z copying torch\test\operators_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9532051Z copying torch\test\operator_name_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9542098Z copying torch\test\op_allowlist_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9552279Z copying torch\test\op_registration_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9582871Z copying torch\test\packedtensoraccessor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9593943Z copying torch\test\pow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9606547Z copying torch\test\quantized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9618460Z copying torch\test\reduce_ops_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9630270Z copying torch\test\reportMemoryUsage_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9640970Z copying torch\test\scalar_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9652536Z copying torch\test\scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9668014Z copying torch\test\StorageUtils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9679211Z copying torch\test\stride_properties_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9690181Z copying torch\test\tensor_iterator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9702937Z copying torch\test\test_parallel.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9713706Z copying torch\test\thread_init_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9721929Z copying torch\test\type_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9732266Z copying torch\test\type_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9743338Z copying torch\test\undefined_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9754742Z copying torch\test\verify_api_visibility.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9766268Z copying torch\test\weakref_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9777285Z copying torch\test\wrapdim_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9793998Z copying torch\test\xla_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-24T05:23:40.9808668Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:23:40.9820256Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:23:40.9832116Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:23:40.9849141Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:23:40.9860828Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-07-24T05:23:40.9867723Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:23:40.9879153Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:23:40.9899163Z creating build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:40.9902385Z copying torch\_C\_aoti.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:40.9918274Z copying torch\_C\_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:40.9929444Z copying torch\_C\_cpu.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:40.9935925Z copying torch\_C\_cudnn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:40.9942461Z copying torch\_C\_cusparselt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:40.9956640Z copying torch\_C\_distributed_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:40.9967184Z copying torch\_C\_distributed_c10d.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:40.9983965Z copying torch\_C\_distributed_rpc.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:40.9998624Z copying torch\_C\_distributed_rpc_testing.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0018677Z copying torch\_C\_functions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0029432Z copying torch\_C\_functorch.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0041145Z copying torch\_C\_instruction_counter.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0047826Z copying torch\_C\_itt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0055142Z copying torch\_C\_jit_tree_views.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0066891Z copying torch\_C\_lazy.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0079413Z copying torch\_C\_lazy_ts_backend.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0086281Z copying torch\_C\_monitor.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0096887Z copying torch\_C\_nn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0108650Z copying torch\_C\_nvtx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0115239Z copying torch\_C\_onnx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0125947Z copying torch\_C\_profiler.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0137393Z copying torch\_C\_VariableFunctions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0509791Z copying torch\_C\_verbose.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0525418Z copying torch\_C\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-24T05:23:41.0655117Z creating build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-07-24T05:23:41.0658380Z copying torch\_C\_dynamo\compiled_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-07-24T05:23:41.0665468Z copying torch\_C\_dynamo\eval_frame.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-07-24T05:23:41.0676432Z copying torch\_C\_dynamo\guards.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-07-24T05:23:41.0692151Z copying torch\_C\_dynamo\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-07-24T05:23:41.0698208Z creating build\lib.win-amd64-cpython-39\torch\_C\_export 2025-07-24T05:23:41.0701160Z copying torch\_C\_export\pt2_archive_constants.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_export 2025-07-24T05:23:41.0711978Z copying torch\_C\_export\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_export 2025-07-24T05:23:41.0717597Z creating build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-07-24T05:23:41.0724989Z copying torch\_C_flatbuffer\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-07-24T05:23:41.0736529Z creating build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:41.0739548Z copying torch\lib\shm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:41.0746174Z copying torch\lib\shm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:41.0752829Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-07-24T05:23:41.0755278Z copying torch\lib\libshm\alloc_info.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-07-24T05:23:41.0761975Z copying torch\lib\libshm\err.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-07-24T05:23:41.0773650Z copying torch\lib\libshm\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-07-24T05:23:41.0785163Z copying torch\lib\libshm\socket.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-07-24T05:23:41.0797550Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-07-24T05:23:41.0801141Z copying torch\lib\libshm_windows\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-07-24T05:23:41.0807472Z creating build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0810989Z copying torch\include\advisor-annotate.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0823239Z copying torch\include\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0831059Z copying torch\include\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0838066Z copying torch\include\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0844606Z copying torch\include\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0859569Z copying torch\include\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0865907Z copying torch\include\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0872632Z copying torch\include\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0879529Z copying torch\include\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0886203Z copying torch\include\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0892837Z copying torch\include\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0899872Z copying torch\include\experiments-config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0906054Z copying torch\include\fp16.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0912146Z copying torch\include\fxdiv.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0919615Z copying torch\include\ittnotify-zca.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0926008Z copying torch\include\ittnotify.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0939057Z copying torch\include\jitprofiling.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0946196Z copying torch\include\libittnotify.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0952536Z copying torch\include\libshm.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0959193Z copying torch\include\psimd.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0970912Z copying torch\include\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0979251Z copying torch\include\sleef.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0988812Z copying torch\include\xnnpack.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:41.0997195Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:23:41.1004877Z copying torch\include\asmjit\a64.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:23:41.1015214Z copying torch\include\asmjit\arm.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:23:41.1021899Z copying torch\include\asmjit\asmjit-scope-begin.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:23:41.1028461Z copying torch\include\asmjit\asmjit-scope-end.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:23:41.1035064Z copying torch\include\asmjit\asmjit.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:23:41.1046755Z copying torch\include\asmjit\core.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:23:41.1055052Z copying torch\include\asmjit\x86.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-24T05:23:41.1060717Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:23:41.1063750Z copying torch\include\asmjit\arm\a64assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:23:41.1074332Z copying torch\include\asmjit\arm\a64builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:23:41.1081269Z copying torch\include\asmjit\arm\a64compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:23:41.1088067Z copying torch\include\asmjit\arm\a64emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:23:41.1107420Z copying torch\include\asmjit\arm\a64globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:23:41.1116074Z copying torch\include\asmjit\arm\a64instdb.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:23:41.1122874Z copying torch\include\asmjit\arm\a64operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:23:41.1130264Z copying torch\include\asmjit\arm\armglobals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:23:41.1137170Z copying torch\include\asmjit\arm\armoperand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:23:41.1144481Z copying torch\include\asmjit\arm\armutils.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-24T05:23:41.1150321Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1153453Z copying torch\include\asmjit\core\api-config.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1161017Z copying torch\include\asmjit\core\archcommons.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1172764Z copying torch\include\asmjit\core\archtraits.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1179586Z copying torch\include\asmjit\core\assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1192529Z copying torch\include\asmjit\core\builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1204340Z copying torch\include\asmjit\core\codebuffer.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1211480Z copying torch\include\asmjit\core\codeholder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1219036Z copying torch\include\asmjit\core\compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1226254Z copying torch\include\asmjit\core\compilerdefs.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1237483Z copying torch\include\asmjit\core\constpool.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1244436Z copying torch\include\asmjit\core\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1252738Z copying torch\include\asmjit\core\emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1260164Z copying torch\include\asmjit\core\environment.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1271719Z copying torch\include\asmjit\core\errorhandler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1279374Z copying torch\include\asmjit\core\formatter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1286158Z copying torch\include\asmjit\core\func.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1294586Z copying torch\include\asmjit\core\globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1302428Z copying torch\include\asmjit\core\inst.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1309387Z copying torch\include\asmjit\core\jitallocator.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1316965Z copying torch\include\asmjit\core\jitruntime.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1323650Z copying torch\include\asmjit\core\logger.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1338773Z copying torch\include\asmjit\core\operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1346570Z copying torch\include\asmjit\core\osutils.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1353049Z copying torch\include\asmjit\core\string.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1359749Z copying torch\include\asmjit\core\support.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1378743Z copying torch\include\asmjit\core\target.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1389514Z copying torch\include\asmjit\core\type.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1396889Z copying torch\include\asmjit\core\virtmem.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1403404Z copying torch\include\asmjit\core\zone.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1414453Z copying torch\include\asmjit\core\zonehash.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1421216Z copying torch\include\asmjit\core\zonelist.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1427914Z copying torch\include\asmjit\core\zonestack.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1434947Z copying torch\include\asmjit\core\zonestring.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1449087Z copying torch\include\asmjit\core\zonetree.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1455609Z copying torch\include\asmjit\core\zonevector.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-24T05:23:41.1462202Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:23:41.1465220Z copying torch\include\asmjit\x86\x86assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:23:41.1473027Z copying torch\include\asmjit\x86\x86builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:23:41.1484391Z copying torch\include\asmjit\x86\x86compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:23:41.1491502Z copying torch\include\asmjit\x86\x86emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:23:41.1506985Z copying torch\include\asmjit\x86\x86globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:23:41.1520733Z copying torch\include\asmjit\x86\x86instdb.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:23:41.1528094Z copying torch\include\asmjit\x86\x86operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-24T05:23:41.1535146Z creating build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1538432Z copying torch\include\ATen\AccumulateType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1544961Z copying torch\include\ATen\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1555098Z copying torch\include\ATen\ATen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1561817Z copying torch\include\ATen\autocast_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1569461Z copying torch\include\ATen\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1584508Z copying torch\include\ATen\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1591005Z copying torch\include\ATen\BlasBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1598013Z copying torch\include\ATen\CachedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1605086Z copying torch\include\ATen\ceil_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1616453Z copying torch\include\ATen\code_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1623284Z copying torch\include\ATen\CollapseDims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1630314Z copying torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1637662Z copying torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1645479Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1652597Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1660664Z copying torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1667610Z copying torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1679742Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1687022Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1697379Z copying torch\include\ATen\Config.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1722008Z copying torch\include\ATen\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1733630Z copying torch\include\ATen\cpp_custom_type_hack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1740624Z copying torch\include\ATen\CPUApplyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1747499Z copying torch\include\ATen\CPUFixedAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1754212Z copying torch\include\ATen\CPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1765081Z copying torch\include\ATen\CPUFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1772613Z copying torch\include\ATen\CPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1779330Z copying torch\include\ATen\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1786038Z copying torch\include\ATen\CUDAFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1797287Z copying torch\include\ATen\Device.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1804234Z copying torch\include\ATen\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1810543Z copying torch\include\ATen\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1817109Z copying torch\include\ATen\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1827374Z copying torch\include\ATen\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1833969Z copying torch\include\ATen\Dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1841493Z copying torch\include\ATen\Dispatch_v2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1849028Z copying torch\include\ATen\div_rtn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1855369Z copying torch\include\ATen\DLConvertor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1862700Z copying torch\include\ATen\dlpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1870196Z copying torch\include\ATen\DynamicLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1877774Z copying torch\include\ATen\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1898084Z copying torch\include\ATen\ExpandBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1905828Z copying torch\include\ATen\ExpandUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1914155Z copying torch\include\ATen\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1921172Z copying torch\include\ATen\FunctionalStorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1936101Z copying torch\include\ATen\FunctionalTensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1943632Z copying torch\include\ATen\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1951323Z copying torch\include\ATen\FuncTorchTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1958073Z copying torch\include\ATen\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1968887Z copying torch\include\ATen\InferSize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1975455Z copying torch\include\ATen\InitialTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1985961Z copying torch\include\ATen\jiterator_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.1993004Z copying torch\include\ATen\jit_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2003598Z copying torch\include\ATen\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2009983Z copying torch\include\ATen\LegacyBatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2016717Z copying torch\include\ATen\LegacyBatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2023525Z copying torch\include\ATen\LegacyVmapMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2034722Z copying torch\include\ATen\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2041645Z copying torch\include\ATen\LinalgBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2048689Z copying torch\include\ATen\MapAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2055682Z copying torch\include\ATen\MatrixRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2074523Z copying torch\include\ATen\MemoryOverlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2081873Z copying torch\include\ATen\MetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2088675Z copying torch\include\ATen\MetaFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2095584Z copying torch\include\ATen\MethodOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2102545Z copying torch\include\ATen\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2109284Z copying torch\include\ATen\NamedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2116331Z copying torch\include\ATen\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2124622Z copying torch\include\ATen\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2137064Z copying torch\include\ATen\NestedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2148846Z copying torch\include\ATen\NumericUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2155928Z copying torch\include\ATen\OpaqueTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2162812Z copying torch\include\ATen\Operators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2174580Z copying torch\include\ATen\OpMathType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2181401Z copying torch\include\ATen\PadNd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2188296Z copying torch\include\ATen\Parallel-inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2195109Z copying torch\include\ATen\Parallel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2205943Z copying torch\include\ATen\ParallelFuture.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2212932Z copying torch\include\ATen\ParallelNative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2219531Z copying torch\include\ATen\ParallelOpenMP.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2232450Z copying torch\include\ATen\PTThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2243516Z copying torch\include\ATen\PythonTorchFunctionTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2250435Z copying torch\include\ATen\record_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2258163Z copying torch\include\ATen\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2320454Z copying torch\include\ATen\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2336081Z copying torch\include\ATen\ROCmFABackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2343245Z copying torch\include\ATen\SavedTensorHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2349925Z copying torch\include\ATen\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2356312Z copying torch\include\ATen\ScalarOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2367894Z copying torch\include\ATen\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2374342Z copying torch\include\ATen\SDPBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2381122Z copying torch\include\ATen\SequenceNumber.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2387203Z copying torch\include\ATen\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2393674Z copying torch\include\ATen\SparseCsrTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2400554Z copying torch\include\ATen\SparseCsrTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2412297Z copying torch\include\ATen\SparseTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2419162Z copying torch\include\ATen\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2429873Z copying torch\include\ATen\StorageUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2436925Z copying torch\include\ATen\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2443563Z copying torch\include\ATen\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2454678Z copying torch\include\ATen\TensorGeometry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2468910Z copying torch\include\ATen\TensorIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2476608Z copying torch\include\ATen\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2484487Z copying torch\include\ATen\TensorIteratorInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2491770Z copying torch\include\ATen\TensorMeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2498760Z copying torch\include\ATen\TensorNames.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2505807Z copying torch\include\ATen\TensorOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2513131Z copying torch\include\ATen\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2520018Z copying torch\include\ATen\TensorSubclassLikeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2527170Z copying torch\include\ATen\TensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2534414Z copying torch\include\ATen\ThreadLocalPythonObjects.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2541302Z copying torch\include\ATen\ThreadLocalState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2548457Z copying torch\include\ATen\TracerMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2563077Z copying torch\include\ATen\TypeDefault.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2569556Z copying torch\include\ATen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2575991Z copying torch\include\ATen\Version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2582552Z copying torch\include\ATen\VmapGeneratedPlumbing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2609687Z copying torch\include\ATen\WrapDimUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2616750Z copying torch\include\ATen\WrapDimUtilsMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-24T05:23:41.2622882Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2625974Z copying torch\include\ATen\core\alias_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2633274Z copying torch\include\ATen\core\Array.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2640163Z copying torch\include\ATen\core\ATenGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2646708Z copying torch\include\ATen\core\ATenOpList.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2658182Z copying torch\include\ATen\core\ATen_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2671451Z copying torch\include\ATen\core\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2679697Z copying torch\include\ATen\core\ATen_pch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2686352Z copying torch\include\ATen\core\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2692856Z copying torch\include\ATen\core\blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2699742Z copying torch\include\ATen\core\builtin_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2706791Z copying torch\include\ATen\core\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2714442Z copying torch\include\ATen\core\CheckMemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2721436Z copying torch\include\ATen\core\class_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2728351Z copying torch\include\ATen\core\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2735413Z copying torch\include\ATen\core\DeprecatedTypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2742470Z copying torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2749172Z copying torch\include\ATen\core\Dict.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2760427Z copying torch\include\ATen\core\Dict_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2767264Z copying torch\include\ATen\core\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2774052Z copying torch\include\ATen\core\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2781432Z copying torch\include\ATen\core\DistributionsHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2787875Z copying torch\include\ATen\core\dynamic_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2799740Z copying torch\include\ATen\core\enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2806114Z copying torch\include\ATen\core\enum_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2812720Z copying torch\include\ATen\core\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2826694Z copying torch\include\ATen\core\function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2833148Z copying torch\include\ATen\core\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2839948Z copying torch\include\ATen\core\function_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2847562Z copying torch\include\ATen\core\function_schema_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2858658Z copying torch\include\ATen\core\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2865607Z copying torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2872201Z copying torch\include\ATen\core\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2878734Z copying torch\include\ATen\core\IListRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2890423Z copying torch\include\ATen\core\IListRef_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2897206Z copying torch\include\ATen\core\interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2904088Z copying torch\include\ATen\core\interned_strings_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2910725Z copying torch\include\ATen\core\ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2923008Z copying torch\include\ATen\core\ivalue_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2931119Z copying torch\include\ATen\core\ivalue_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2938039Z copying torch\include\ATen\core\jit_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2946290Z copying torch\include\ATen\core\jit_type_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2953676Z copying torch\include\ATen\core\LegacyTypeDispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2960527Z copying torch\include\ATen\core\List.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2967638Z copying torch\include\ATen\core\List_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2974354Z copying torch\include\ATen\core\MT19937RNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2986363Z copying torch\include\ATen\core\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.2993323Z copying torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3000170Z copying torch\include\ATen\core\operator_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3006852Z copying torch\include\ATen\core\PhiloxRNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3013592Z copying torch\include\ATen\core\PythonFallbackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3020481Z copying torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3027229Z copying torch\include\ATen\core\qualified_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3033887Z copying torch\include\ATen\core\QuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3040695Z copying torch\include\ATen\core\Range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3047272Z copying torch\include\ATen\core\Reduction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3058044Z copying torch\include\ATen\core\rref_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3064500Z copying torch\include\ATen\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3081468Z copying torch\include\ATen\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3085827Z copying torch\include\ATen\core\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3092950Z copying torch\include\ATen\core\symbol.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3099216Z copying torch\include\ATen\core\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3110843Z copying torch\include\ATen\core\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3117969Z copying torch\include\ATen\core\TensorBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3125413Z copying torch\include\ATen\core\TensorBody.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3135555Z copying torch\include\ATen\core\TorchDispatchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3142118Z copying torch\include\ATen\core\TransformationHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3156041Z copying torch\include\ATen\core\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3162343Z copying torch\include\ATen\core\type_factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3169014Z copying torch\include\ATen\core\type_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3179101Z copying torch\include\ATen\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3185531Z copying torch\include\ATen\core\UnsafeFromTH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3192580Z copying torch\include\ATen\core\VariableHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3199655Z copying torch\include\ATen\core\Variadic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3206317Z copying torch\include\ATen\core\Vitals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-24T05:23:41.3212310Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-24T05:23:41.3215558Z copying torch\include\ATen\core\boxing\BoxedKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-24T05:23:41.3222495Z copying torch\include\ATen\core\boxing\BoxedKernel_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-24T05:23:41.3229224Z copying torch\include\ATen\core\boxing\KernelFunction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-24T05:23:41.3236212Z copying torch\include\ATen\core\boxing\KernelFunction_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-24T05:23:41.3246970Z copying torch\include\ATen\core\boxing\OperatorKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-24T05:23:41.3253442Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-24T05:23:41.3256611Z copying torch\include\ATen\core\boxing\impl\boxing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-24T05:23:41.3268232Z copying torch\include\ATen\core\boxing\impl\make_boxed_from_unboxed_functor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-24T05:23:41.3275763Z copying torch\include\ATen\core\boxing\impl\test_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-24T05:23:41.3283094Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-24T05:23:41.3299170Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-24T05:23:41.3305431Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:23:41.3308908Z copying torch\include\ATen\core\dispatch\CppSignature.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:23:41.3315865Z copying torch\include\ATen\core\dispatch\Dispatcher.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:23:41.3324041Z copying torch\include\ATen\core\dispatch\DispatchKeyExtractor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:23:41.3335579Z copying torch\include\ATen\core\dispatch\ObservedOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:23:41.3346320Z copying torch\include\ATen\core\dispatch\OperatorEntry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:23:41.3353133Z copying torch\include\ATen\core\dispatch\OperatorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:23:41.3364274Z copying torch\include\ATen\core\dispatch\RegistrationHandleRAII.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-24T05:23:41.3370082Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-07-24T05:23:41.3373496Z copying torch\include\ATen\core\op_registration\adaption.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-07-24T05:23:41.3380101Z copying torch\include\ATen\core\op_registration\infer_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-07-24T05:23:41.3386634Z copying torch\include\ATen\core\op_registration\op_allowlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-07-24T05:23:41.3398193Z copying torch\include\ATen\core\op_registration\op_registration.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-07-24T05:23:41.3409491Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-07-24T05:23:41.3412830Z copying torch\include\ATen\cpu\FlushDenormal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-07-24T05:23:41.3419111Z copying torch\include\ATen\cpu\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-07-24T05:23:41.3425656Z copying torch\include\ATen\cpu\vml.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-07-24T05:23:41.3431343Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:23:41.3434552Z copying torch\include\ATen\cpu\vec\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:23:41.3441051Z copying torch\include\ATen\cpu\vec\functional_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:23:41.3447715Z copying torch\include\ATen\cpu\vec\functional_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:23:41.3462373Z copying torch\include\ATen\cpu\vec\intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:23:41.3472644Z copying torch\include\ATen\cpu\vec\vec.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:23:41.3478989Z copying torch\include\ATen\cpu\vec\vec_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:23:41.3486459Z copying torch\include\ATen\cpu\vec\vec_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:23:41.3493178Z copying torch\include\ATen\cpu\vec\vec_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:23:41.3521077Z copying torch\include\ATen\cpu\vec\vec_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:23:41.3527761Z copying torch\include\ATen\cpu\vec\vec_n.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:23:41.3541365Z copying torch\include\ATen\cpu\vec\vec_quant.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-24T05:23:41.3547314Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:23:41.3550378Z copying torch\include\ATen\cpu\vec\sve\sve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:23:41.3557144Z copying torch\include\ATen\cpu\vec\sve\vec_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:23:41.3564347Z copying torch\include\ATen\cpu\vec\sve\vec_common_sve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:23:41.3571029Z copying torch\include\ATen\cpu\vec\sve\vec_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:23:41.3582664Z copying torch\include\ATen\cpu\vec\sve\vec_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:23:41.3589945Z copying torch\include\ATen\cpu\vec\sve\vec_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:23:41.3597268Z copying torch\include\ATen\cpu\vec\sve\vec_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-24T05:23:41.3603976Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:23:41.3607027Z copying torch\include\ATen\cpu\vec\vec128\vec128.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:23:41.3613441Z copying torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:23:41.3620660Z copying torch\include\ATen\cpu\vec\vec128\vec128_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:23:41.3631720Z copying torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:23:41.3643171Z copying torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:23:41.3650655Z copying torch\include\ATen\cpu\vec\vec128\vec128_reduced_precision_common_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:23:41.3664315Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:23:41.3667417Z copying torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:23:41.3674286Z copying torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:23:41.3680739Z copying torch\include\ATen\cpu\vec\vec256\vec256.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:23:41.3687380Z copying torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:23:41.3699348Z copying torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:23:41.3706376Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:23:41.3713664Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:23:41.3721364Z copying torch\include\ATen\cpu\vec\vec256\vec256_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:23:41.3728505Z copying torch\include\ATen\cpu\vec\vec256\vec256_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:23:41.3735380Z copying torch\include\ATen\cpu\vec\vec256\vec256_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:23:41.3742735Z copying torch\include\ATen\cpu\vec\vec256\vec256_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:23:41.3753244Z copying torch\include\ATen\cpu\vec\vec256\vec256_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:23:41.3761394Z copying torch\include\ATen\cpu\vec\vec256\vec256_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:23:41.3768596Z copying torch\include\ATen\cpu\vec\vec256\vec256_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:23:41.3775498Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:23:41.3778685Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_bfloat16_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:23:41.3789473Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_common_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:23:41.3796762Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_double_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:23:41.3808620Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_float_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:23:41.3816056Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_double_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:23:41.3823332Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_float_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:23:41.3830688Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_int16_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:23:41.3837677Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_int32_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:23:41.3844615Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_int64_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:23:41.3851551Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint32_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:23:41.3872583Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint8_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:23:41.3880085Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_quint8_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:23:41.3891418Z copying torch\include\ATen\cpu\vec\vec256\vsx\vsx_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:23:41.3898056Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\zarch 2025-07-24T05:23:41.3901218Z copying torch\include\ATen\cpu\vec\vec256\zarch\vec256_zarch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\zarch 2025-07-24T05:23:41.3908436Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:23:41.3911450Z copying torch\include\ATen\cpu\vec\vec512\vec512.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:23:41.3918584Z copying torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:23:41.3930156Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:23:41.3937607Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:23:41.3949860Z copying torch\include\ATen\cpu\vec\vec512\vec512_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:23:41.3956932Z copying torch\include\ATen\cpu\vec\vec512\vec512_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:23:41.3964138Z copying torch\include\ATen\cpu\vec\vec512\vec512_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:23:41.3971680Z copying torch\include\ATen\cpu\vec\vec512\vec512_float8.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:23:41.3979045Z copying torch\include\ATen\cpu\vec\vec512\vec512_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:23:41.3993102Z copying torch\include\ATen\cpu\vec\vec512\vec512_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:23:41.4000452Z copying torch\include\ATen\cpu\vec\vec512\vec512_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:23:41.4007575Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4010752Z copying torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4017786Z copying torch\include\ATen\cuda\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4028188Z copying torch\include\ATen\cuda\cub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4034822Z copying torch\include\ATen\cuda\CUDABlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4042091Z copying torch\include\ATen\cuda\CUDAConfig.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4056978Z copying torch\include\ATen\cuda\CUDAContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4063421Z copying torch\include\ATen\cuda\CUDAContextLight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4070404Z copying torch\include\ATen\cuda\CUDADataType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4077213Z copying torch\include\ATen\cuda\CUDADevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4089575Z copying torch\include\ATen\cuda\CUDAEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4096931Z copying torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4103849Z copying torch\include\ATen\cuda\CUDAGraph.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4110688Z copying torch\include\ATen\cuda\CUDASparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4117714Z copying torch\include\ATen\cuda\CUDASparseBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4125171Z copying torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4131603Z copying torch\include\ATen\cuda\CUDAUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4139125Z copying torch\include\ATen\cuda\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4145993Z copying torch\include\ATen\cuda\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4152905Z copying torch\include\ATen\cuda\jiterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4159963Z copying torch\include\ATen\cuda\jiterator_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4172276Z copying torch\include\ATen\cuda\llvm_jit_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4183575Z copying torch\include\ATen\cuda\PeerToPeerAccess.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4190114Z copying torch\include\ATen\cuda\PhiloxCudaState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4198014Z copying torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4204488Z copying torch\include\ATen\cuda\Sleep.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4215671Z copying torch\include\ATen\cuda\ThrustAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:41.4221660Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:23:41.4224868Z copying torch\include\ATen\cuda\detail\CUDAHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:23:41.4232034Z copying torch\include\ATen\cuda\detail\DeviceThreadHandles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:23:41.4239046Z copying torch\include\ATen\cuda\detail\KernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:23:41.4249904Z copying torch\include\ATen\cuda\detail\LazyNVRTC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:23:41.4259698Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:23:41.4262760Z copying torch\include\ATen\cuda\tunable\GemmCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:23:41.4270286Z copying torch\include\ATen\cuda\tunable\GemmHipblaslt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:23:41.4277725Z copying torch\include\ATen\cuda\tunable\GemmRocblas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:23:41.4285133Z copying torch\include\ATen\cuda\tunable\StreamTimer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:23:41.4296788Z copying torch\include\ATen\cuda\tunable\Tunable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:23:41.4303633Z copying torch\include\ATen\cuda\tunable\TunableGemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:23:41.4310875Z copying torch\include\ATen\cuda\tunable\TunableOp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-24T05:23:41.4316982Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-24T05:23:41.4320013Z copying torch\include\ATen\cudnn\cudnn-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-24T05:23:41.4326512Z copying torch\include\ATen\cudnn\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-24T05:23:41.4337085Z copying torch\include\ATen\cudnn\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-24T05:23:41.4343451Z copying torch\include\ATen\cudnn\Handles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-24T05:23:41.4349617Z copying torch\include\ATen\cudnn\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-24T05:23:41.4360553Z copying torch\include\ATen\cudnn\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-24T05:23:41.4387621Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:23:41.4390782Z copying torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:23:41.4397749Z copying torch\include\ATen\detail\CUDAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:23:41.4404284Z copying torch\include\ATen\detail\FunctionTraits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:23:41.4418446Z copying torch\include\ATen\detail\HIPHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:23:41.4425115Z copying torch\include\ATen\detail\HPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:23:41.4431819Z copying torch\include\ATen\detail\IPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:23:41.4442608Z copying torch\include\ATen\detail\MAIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:23:41.4449342Z copying torch\include\ATen\detail\MPSHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:23:41.4456009Z copying torch\include\ATen\detail\MTIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:23:41.4462962Z copying torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:23:41.4469632Z copying torch\include\ATen\detail\XPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-24T05:23:41.4475547Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:23:41.4478750Z copying torch\include\ATen\functorch\ADInterpreters.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:23:41.4485370Z copying torch\include\ATen\functorch\BatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:23:41.4492814Z copying torch\include\ATen\functorch\BatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:23:41.4504248Z copying torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:23:41.4510893Z copying torch\include\ATen\functorch\BatchRulesHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:23:41.4518352Z copying torch\include\ATen\functorch\DynamicLayer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:23:41.4528875Z copying torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:23:41.4535493Z copying torch\include\ATen\functorch\Interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:23:41.4542326Z copying torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:23:41.4549031Z copying torch\include\ATen\functorch\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:23:41.4559518Z copying torch\include\ATen\functorch\PlumbingHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:23:41.4566276Z copying torch\include\ATen\functorch\TensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:23:41.4572939Z copying torch\include\ATen\functorch\VmapInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-24T05:23:41.4578865Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-07-24T05:23:41.4583526Z copying torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-07-24T05:23:41.4593987Z copying torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-07-24T05:23:41.4600625Z copying torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-07-24T05:23:41.4611553Z copying torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-07-24T05:23:41.4624113Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-07-24T05:23:41.4627055Z copying torch\include\ATen\metal\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-07-24T05:23:41.4632517Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-24T05:23:41.4635614Z copying torch\include\ATen\miopen\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-24T05:23:41.4642395Z copying torch\include\ATen\miopen\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-24T05:23:41.4648969Z copying torch\include\ATen\miopen\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-24T05:23:41.4659168Z copying torch\include\ATen\miopen\miopen-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-24T05:23:41.4669257Z copying torch\include\ATen\miopen\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-24T05:23:41.4675504Z copying torch\include\ATen\miopen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-24T05:23:41.4684350Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:23:41.4687293Z copying torch\include\ATen\mps\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:23:41.4693905Z copying torch\include\ATen\mps\IndexKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:23:41.4700661Z copying torch\include\ATen\mps\MPSAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:23:41.4707938Z copying torch\include\ATen\mps\MPSAllocatorInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:23:41.4722454Z copying torch\include\ATen\mps\MPSDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:23:41.4729493Z copying torch\include\ATen\mps\MPSEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:23:41.4736217Z copying torch\include\ATen\mps\MPSGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:23:41.4743190Z copying torch\include\ATen\mps\MPSGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:23:41.4750072Z copying torch\include\ATen\mps\MPSHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:23:41.4756880Z copying torch\include\ATen\mps\MPSProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:23:41.4764124Z copying torch\include\ATen\mps\MPSStream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-24T05:23:41.4770144Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4773351Z copying torch\include\ATen\native\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4780172Z copying torch\include\ATen\native\AdaptivePooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4787247Z copying torch\include\ATen\native\AmpKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4795052Z copying torch\include\ATen\native\BatchLinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4812264Z copying torch\include\ATen\native\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4819727Z copying torch\include\ATen\native\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4827118Z copying torch\include\ATen\native\BucketizationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4838267Z copying torch\include\ATen\native\CanUse32BitIndexMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4844912Z copying torch\include\ATen\native\ComplexHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4851656Z copying torch\include\ATen\native\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4858574Z copying torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4865485Z copying torch\include\ATen\native\ConvolutionMM3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4872176Z copying torch\include\ATen\native\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4879582Z copying torch\include\ATen\native\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4885734Z copying torch\include\ATen\native\CPUBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4896587Z copying torch\include\ATen\native\CPUFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4903435Z copying torch\include\ATen\native\Cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4909945Z copying torch\include\ATen\native\DilatedConvolutionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4916754Z copying torch\include\ATen\native\DispatchStub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4929122Z copying torch\include\ATen\native\Distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4935903Z copying torch\include\ATen\native\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4947070Z copying torch\include\ATen\native\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4954374Z copying torch\include\ATen\native\EmbeddingBag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4965072Z copying torch\include\ATen\native\Fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4971446Z copying torch\include\ATen\native\ForeachUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4979843Z copying torch\include\ATen\native\FractionalMaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4986586Z copying torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.4999153Z copying torch\include\ATen\native\FusedAdagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5005970Z copying torch\include\ATen\native\FusedAdam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5012674Z copying torch\include\ATen\native\FusedSGD.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5018875Z copying torch\include\ATen\native\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5025500Z copying torch\include\ATen\native\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5037457Z copying torch\include\ATen\native\GridSamplerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5044064Z copying torch\include\ATen\native\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5050705Z copying torch\include\ATen\native\Histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5065288Z copying torch\include\ATen\native\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5071888Z copying torch\include\ATen\native\im2col_shape_check.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5078787Z copying torch\include\ATen\native\IndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5085647Z copying torch\include\ATen\native\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5092367Z copying torch\include\ATen\native\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5099078Z copying torch\include\ATen\native\Lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5105749Z copying torch\include\ATen\native\LinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5112311Z copying torch\include\ATen\native\LinearAlgebraUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5132953Z copying torch\include\ATen\native\LossMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5139610Z copying torch\include\ATen\native\Math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5148193Z copying torch\include\ATen\native\MathBitFallThroughLists.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5154846Z copying torch\include\ATen\native\MathBitsFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5162096Z copying torch\include\ATen\native\MaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5168875Z copying torch\include\ATen\native\NonEmptyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5175371Z copying torch\include\ATen\native\NonSymbolicBC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5182218Z copying torch\include\ATen\native\Normalization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5188620Z copying torch\include\ATen\native\Padding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5195284Z copying torch\include\ATen\native\PixelShuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5206254Z copying torch\include\ATen\native\PointwiseOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5212860Z copying torch\include\ATen\native\Pool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5219644Z copying torch\include\ATen\native\Pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5226414Z copying torch\include\ATen\native\RangeFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5232853Z copying torch\include\ATen\native\RangeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5239615Z copying torch\include\ATen\native\ReduceAllOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5249970Z copying torch\include\ATen\native\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5256771Z copying torch\include\ATen\native\ReduceOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5263998Z copying torch\include\ATen\native\ReductionType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5270632Z copying torch\include\ATen\native\Repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5277484Z copying torch\include\ATen\native\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5284236Z copying torch\include\ATen\native\ResizeCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5301883Z copying torch\include\ATen\native\RNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5309138Z copying torch\include\ATen\native\ScatterGatherChecks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5316600Z copying torch\include\ATen\native\SegmentReduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5324048Z copying torch\include\ATen\native\SharedReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5332040Z copying torch\include\ATen\native\SobolEngineOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5338888Z copying torch\include\ATen\native\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5345387Z copying torch\include\ATen\native\SortingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5352422Z copying torch\include\ATen\native\SparseTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5359460Z copying torch\include\ATen\native\SpectralOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5366627Z copying torch\include\ATen\native\StridedRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5377799Z copying torch\include\ATen\native\TensorAdvancedIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5384977Z copying torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5391667Z copying torch\include\ATen\native\TensorCompare.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5398610Z copying torch\include\ATen\native\TensorConversions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5409534Z copying torch\include\ATen\native\TensorDimApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5460833Z copying torch\include\ATen\native\TensorFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5467513Z copying torch\include\ATen\native\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5474764Z copying torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5486452Z copying torch\include\ATen\native\TensorProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5497205Z copying torch\include\ATen\native\TensorShape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5504348Z copying torch\include\ATen\native\TensorTransformations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5511180Z copying torch\include\ATen\native\TopKImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5525628Z copying torch\include\ATen\native\TransposeType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5532244Z copying torch\include\ATen\native\TriangularOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5539151Z copying torch\include\ATen\native\TypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5546376Z copying torch\include\ATen\native\UnaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5553122Z copying torch\include\ATen\native\Unfold2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5560172Z copying torch\include\ATen\native\Unfold3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5566996Z copying torch\include\ATen\native\UnfoldBackward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5574103Z copying torch\include\ATen\native\UpSample.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5581697Z copying torch\include\ATen\native\verbose_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5590723Z copying torch\include\ATen\native\vol2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-24T05:23:41.5594772Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:23:41.5600524Z copying torch\include\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:23:41.5607763Z copying torch\include\ATen\native\ao_sparse\quantized\cpu\packed_params.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:23:41.5618502Z copying torch\include\ATen\native\ao_sparse\quantized\cpu\qnnpack_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:23:41.5624256Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5627524Z copying torch\include\ATen\native\cpu\AtomicAddFloat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5634354Z copying torch\include\ATen\native\cpu\avx_mathfun.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5641660Z copying torch\include\ATen\native\cpu\CatKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5648626Z copying torch\include\ATen\native\cpu\ChannelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5661810Z copying torch\include\ATen\native\cpu\CopyKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5668536Z copying torch\include\ATen\native\cpu\DepthwiseConvKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5680165Z copying torch\include\ATen\native\cpu\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5687430Z copying torch\include\ATen\native\cpu\Elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5939014Z copying torch\include\ATen\native\cpu\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5940158Z copying torch\include\ATen\native\cpu\GridSamplerKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5941213Z copying torch\include\ATen\native\cpu\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5942156Z copying torch\include\ATen\native\cpu\Intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5943002Z copying torch\include\ATen\native\cpu\int_mm_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5943857Z copying torch\include\ATen\native\cpu\IsContiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5944707Z copying torch\include\ATen\native\cpu\LogAddExp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5945645Z copying torch\include\ATen\native\cpu\LogSoftmaxKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5946508Z copying torch\include\ATen\native\cpu\Loops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5947410Z copying torch\include\ATen\native\cpu\MaxUnpoolKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5948381Z copying torch\include\ATen\native\cpu\mixed_data_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5949239Z copying torch\include\ATen\native\cpu\moments_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5950133Z copying torch\include\ATen\native\cpu\PixelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5950996Z copying torch\include\ATen\native\cpu\Reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5951997Z copying torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5953006Z copying torch\include\ATen\native\cpu\ReduceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5954006Z copying torch\include\ATen\native\cpu\SampledAddmmKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5954920Z copying torch\include\ATen\native\cpu\SerialStackImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5955941Z copying torch\include\ATen\native\cpu\SoftmaxKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5956836Z copying torch\include\ATen\native\cpu\SpmmReduceKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5957720Z copying torch\include\ATen\native\cpu\StackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5958706Z copying torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5959618Z copying torch\include\ATen\native\cpu\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5960469Z copying torch\include\ATen\native\cpu\WeightNormKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5961337Z copying torch\include\ATen\native\cpu\zmath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-24T05:23:41.5981744Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.5984699Z copying torch\include\ATen\native\cuda\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.5991342Z copying torch\include\ATen\native\cuda\BinaryInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.5999519Z copying torch\include\ATen\native\cuda\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6005446Z copying torch\include\ATen\native\cuda\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6016048Z copying torch\include\ATen\native\cuda\CuFFTPlanCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6023292Z copying torch\include\ATen\native\cuda\CuFFTUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6030259Z copying torch\include\ATen\native\cuda\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6040493Z copying torch\include\ATen\native\cuda\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6047741Z copying torch\include\ATen\native\cuda\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6054678Z copying torch\include\ATen\native\cuda\GroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6060948Z copying torch\include\ATen\native\cuda\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6067517Z copying torch\include\ATen\native\cuda\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6074089Z copying torch\include\ATen\native\cuda\jit_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6081028Z copying torch\include\ATen\native\cuda\LaunchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6087348Z copying torch\include\ATen\native\cuda\MiscUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6097835Z copying torch\include\ATen\native\cuda\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6104279Z copying torch\include\ATen\native\cuda\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6110759Z copying torch\include\ATen\native\cuda\RowwiseScaledMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6117442Z copying torch\include\ATen\native\cuda\ScaledGroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6127357Z copying torch\include\ATen\native\cuda\ScanKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6137575Z copying torch\include\ATen\native\cuda\Sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6143858Z copying torch\include\ATen\native\cuda\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6150747Z copying torch\include\ATen\native\cuda\SortStable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6157904Z copying torch\include\ATen\native\cuda\TensorModeKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6164851Z copying torch\include\ATen\native\cuda\TensorTopK.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6171443Z copying torch\include\ATen\native\cuda\thread_constants.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:41.6177412Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-07-24T05:23:41.6180468Z copying torch\include\ATen\native\hip\ck_bgemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-07-24T05:23:41.6186936Z copying torch\include\ATen\native\hip\ck_gemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-07-24T05:23:41.6193619Z copying torch\include\ATen\native\hip\ck_gemm_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-07-24T05:23:41.6200993Z copying torch\include\ATen\native\hip\ck_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-07-24T05:23:41.6206557Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels 2025-07-24T05:23:41.6214176Z copying torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_collection.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels 2025-07-24T05:23:41.6221112Z copying torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels 2025-07-24T05:23:41.6227195Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-07-24T05:23:41.6230486Z copying torch\include\ATen\native\kleidiai\kai_kernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-07-24T05:23:41.6237461Z copying torch\include\ATen\native\kleidiai\kai_pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-07-24T05:23:41.6248199Z copying torch\include\ATen\native\kleidiai\kai_ukernel_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-07-24T05:23:41.6254292Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-07-24T05:23:41.6258538Z copying torch\include\ATen\native\mkldnn\xpu\Conv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-07-24T05:23:41.6265646Z copying torch\include\ATen\native\mkldnn\xpu\FusionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-07-24T05:23:41.6271307Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:23:41.6274315Z copying torch\include\ATen\native\mkldnn\xpu\detail\Attr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:23:41.6285635Z copying torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:23:41.6292912Z copying torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:23:41.6300647Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:23:41.6308053Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:23:41.6319868Z copying torch\include\ATen\native\mkldnn\xpu\detail\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:23:41.6330137Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:23:41.6333610Z copying torch\include\ATen\native\mps\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:23:41.6341062Z copying torch\include\ATen\native\mps\MetalShaderLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:23:41.6352019Z copying torch\include\ATen\native\mps\MPSGraphSequoiaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:23:41.6359121Z copying torch\include\ATen\native\mps\MPSGraphSonomaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:23:41.6370151Z copying torch\include\ATen\native\mps\MPSGraphVenturaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:23:41.6381129Z copying torch\include\ATen\native\mps\OperationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:23:41.6388664Z copying torch\include\ATen\native\mps\TensorFactory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-24T05:23:41.6394493Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-07-24T05:23:41.6397690Z copying torch\include\ATen\native\mps\kernels\Pooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-07-24T05:23:41.6404317Z copying torch\include\ATen\native\mps\kernels\UpSample.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-07-24T05:23:41.6413502Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-24T05:23:41.6416654Z copying torch\include\ATen\native\mps\operations\BinaryKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-24T05:23:41.6424976Z copying torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-24T05:23:41.6431613Z copying torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-24T05:23:41.6443757Z copying torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-24T05:23:41.6450922Z copying torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-24T05:23:41.6457625Z copying torch\include\ATen\native\mps\operations\MultiTensorApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-24T05:23:41.6463846Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mtia 2025-07-24T05:23:41.6466871Z copying torch\include\ATen\native\mtia\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mtia 2025-07-24T05:23:41.6472650Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-24T05:23:41.6475787Z copying torch\include\ATen\native\nested\NestedTensorBinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-24T05:23:41.6482361Z copying torch\include\ATen\native\nested\NestedTensorMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-24T05:23:41.6489177Z copying torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-24T05:23:41.6504568Z copying torch\include\ATen\native\nested\NestedTensorTransformerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-24T05:23:41.6511632Z copying torch\include\ATen\native\nested\NestedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-24T05:23:41.6517731Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:23:41.6520991Z copying torch\include\ATen\native\quantized\AffineQuantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:23:41.6527779Z copying torch\include\ATen\native\quantized\AffineQuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:23:41.6534362Z copying torch\include\ATen\native\quantized\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:23:41.6545462Z copying torch\include\ATen\native\quantized\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:23:41.6551710Z copying torch\include\ATen\native\quantized\FakeQuantAffine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:23:41.6558606Z copying torch\include\ATen\native\quantized\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:23:41.6565541Z copying torch\include\ATen\native\quantized\library.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:23:41.6581026Z copying torch\include\ATen\native\quantized\PackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-24T05:23:41.6586801Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6589890Z copying torch\include\ATen\native\quantized\cpu\ACLUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6603723Z copying torch\include\ATen\native\quantized\cpu\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6610338Z copying torch\include\ATen\native\quantized\cpu\conv_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6617421Z copying torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6627798Z copying torch\include\ATen\native\quantized\cpu\fbgemm_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6634532Z copying torch\include\ATen\native\quantized\cpu\init_qnnpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6641150Z copying torch\include\ATen\native\quantized\cpu\OnednnUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6647700Z copying torch\include\ATen\native\quantized\cpu\qconv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6654478Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6661465Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6667782Z copying torch\include\ATen\native\quantized\cpu\qlinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6674351Z copying torch\include\ATen\native\quantized\cpu\QnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6689410Z copying torch\include\ATen\native\quantized\cpu\QuantizedOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6696295Z copying torch\include\ATen\native\quantized\cpu\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6703083Z copying torch\include\ATen\native\quantized\cpu\RuyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6709415Z copying torch\include\ATen\native\quantized\cpu\XnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-24T05:23:41.6719663Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-07-24T05:23:41.6722628Z copying torch\include\ATen\native\quantized\cudnn\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-07-24T05:23:41.6728616Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-07-24T05:23:41.6731844Z copying torch\include\ATen\native\transformers\attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-07-24T05:23:41.6738361Z copying torch\include\ATen\native\transformers\sdp_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-07-24T05:23:41.6745026Z copying torch\include\ATen\native\transformers\sdp_utils_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-07-24T05:23:41.6756646Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-07-24T05:23:41.6759695Z copying torch\include\ATen\native\transformers\cuda\sdp_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-07-24T05:23:41.6765628Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn 2025-07-24T05:23:41.6768702Z copying torch\include\ATen\native\transformers\cuda\flash_attn\flash_api.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn 2025-07-24T05:23:41.6775903Z copying torch\include\ATen\native\transformers\cuda\flash_attn\static_switch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn 2025-07-24T05:23:41.6785396Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:23:41.6788598Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\debug_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:23:41.6795675Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm_kernel_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:23:41.6802756Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:23:41.6815235Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:23:41.6823873Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\pytorch_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:23:41.6830537Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:23:41.6834399Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_pipelined.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:23:41.6842849Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_rescale_output.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:23:41.6855428Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_thread_apply_logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:23:41.6866887Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:23:41.6870260Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:23:41.6877724Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:23:41.6884791Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_multistage.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:23:41.6892241Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_pipelined.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:23:41.6903447Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\find_default_mma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:23:41.6914733Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_accum_lambda_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:23:41.6921836Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_from_smem.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:23:41.6929006Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:23:41.6932632Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\default_warp_iterator_from_smem.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:23:41.6939672Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\epilogue_predicated_tile_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:23:41.6947187Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\make_residual_last.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:23:41.6959186Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_access_iterator_residual_last.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:23:41.6967306Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_iterator_residual_last.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:23:41.6979238Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\transpose_warp_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:23:41.6986103Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\warp_iterator_from_smem.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:23:41.6991883Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-07-24T05:23:41.6995516Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-07-24T05:23:41.7003648Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-07-24T05:23:41.7009843Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-07-24T05:23:41.7013263Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform\tile_smem_loader.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-07-24T05:23:41.7018782Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-07-24T05:23:41.7021845Z copying torch\include\ATen\native\transformers\hip\aotriton_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-07-24T05:23:41.7027970Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn 2025-07-24T05:23:41.7031055Z copying torch\include\ATen\native\transformers\hip\flash_attn\flash_api.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn 2025-07-24T05:23:41.7037429Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-07-24T05:23:41.7040640Z copying torch\include\ATen\native\transformers\hip\flash_attn\ck\me_ck_api.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-07-24T05:23:41.7046136Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-07-24T05:23:41.7049145Z copying torch\include\ATen\native\utils\Factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-07-24T05:23:41.7055304Z copying torch\include\ATen\native\utils\ParamsHash.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-07-24T05:23:41.7062251Z copying torch\include\ATen\native\utils\ParamUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-07-24T05:23:41.7069132Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7072028Z copying torch\include\ATen\ops\abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7078486Z copying torch\include\ATen\ops\absolute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7085113Z copying torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7091401Z copying torch\include\ATen\ops\absolute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7103002Z copying torch\include\ATen\ops\absolute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7109542Z copying torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7116053Z copying torch\include\ATen\ops\abs_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7122879Z copying torch\include\ATen\ops\abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7132693Z copying torch\include\ATen\ops\abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7139189Z copying torch\include\ATen\ops\abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7145558Z copying torch\include\ATen\ops\acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7151800Z copying torch\include\ATen\ops\acosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7158753Z copying torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7165040Z copying torch\include\ATen\ops\acosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7171679Z copying torch\include\ATen\ops\acosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7178568Z copying torch\include\ATen\ops\acosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7189192Z copying torch\include\ATen\ops\acosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7195945Z copying torch\include\ATen\ops\acosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7202781Z copying torch\include\ATen\ops\acosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7209748Z copying torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7224706Z copying torch\include\ATen\ops\acos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7231462Z copying torch\include\ATen\ops\acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7238449Z copying torch\include\ATen\ops\acos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7244949Z copying torch\include\ATen\ops\acos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7251571Z copying torch\include\ATen\ops\acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7258245Z copying torch\include\ATen\ops\acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7264920Z copying torch\include\ATen\ops\adaptive_avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7271856Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7283613Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7358814Z copying torch\include\ATen\ops\adaptive_avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7365518Z copying torch\include\ATen\ops\adaptive_avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7372300Z copying torch\include\ATen\ops\adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7379549Z copying torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7386511Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7393490Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7400632Z copying torch\include\ATen\ops\adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7414339Z copying torch\include\ATen\ops\adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7482074Z copying torch\include\ATen\ops\adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7489113Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7496171Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7503495Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7510668Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7518088Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7525407Z copying torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7536839Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7544208Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7551415Z copying torch\include\ATen\ops\adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7558549Z copying torch\include\ATen\ops\adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7679306Z copying torch\include\ATen\ops\adaptive_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7686668Z copying torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7693772Z copying torch\include\ATen\ops\adaptive_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7701780Z copying torch\include\ATen\ops\adaptive_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7712490Z copying torch\include\ATen\ops\adaptive_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7719851Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7728292Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7736033Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7743767Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7751098Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7758627Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7811016Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7818002Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7825524Z copying torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7832683Z copying torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7839633Z copying torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7850170Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7857509Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7874581Z copying torch\include\ATen\ops\adaptive_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7881870Z copying torch\include\ATen\ops\adaptive_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7893071Z copying torch\include\ATen\ops\adaptive_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7900372Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.7908957Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8041950Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8051636Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8058590Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8065635Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8072555Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8084012Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8091640Z copying torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8098782Z copying torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8105800Z copying torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8120230Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8127338Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8134697Z copying torch\include\ATen\ops\adaptive_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8141573Z copying torch\include\ATen\ops\adaptive_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8148524Z copying torch\include\ATen\ops\add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8155223Z copying torch\include\ATen\ops\addbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8161991Z copying torch\include\ATen\ops\addbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8168737Z copying torch\include\ATen\ops\addbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8175585Z copying torch\include\ATen\ops\addbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8183079Z copying torch\include\ATen\ops\addbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8189684Z copying torch\include\ATen\ops\addbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8197041Z copying torch\include\ATen\ops\addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8208260Z copying torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8215163Z copying torch\include\ATen\ops\addcdiv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8222168Z copying torch\include\ATen\ops\addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8233136Z copying torch\include\ATen\ops\addcdiv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8243805Z copying torch\include\ATen\ops\addcdiv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8250823Z copying torch\include\ATen\ops\addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8258288Z copying torch\include\ATen\ops\addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8265665Z copying torch\include\ATen\ops\addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8276164Z copying torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8420622Z copying torch\include\ATen\ops\addcmul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8427981Z copying torch\include\ATen\ops\addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8435320Z copying torch\include\ATen\ops\addcmul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8446127Z copying torch\include\ATen\ops\addcmul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8453076Z copying torch\include\ATen\ops\addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8460396Z copying torch\include\ATen\ops\addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8467378Z copying torch\include\ATen\ops\addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8474451Z copying torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8481368Z copying torch\include\ATen\ops\addmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8488316Z copying torch\include\ATen\ops\addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8494985Z copying torch\include\ATen\ops\addmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8501922Z copying torch\include\ATen\ops\addmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8509059Z copying torch\include\ATen\ops\addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8516091Z copying torch\include\ATen\ops\addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8522882Z copying torch\include\ATen\ops\addmv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8529976Z copying torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8604798Z copying torch\include\ATen\ops\addmv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8612307Z copying torch\include\ATen\ops\addmv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8619865Z copying torch\include\ATen\ops\addmv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8627640Z copying torch\include\ATen\ops\addmv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8635202Z copying torch\include\ATen\ops\addmv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8642759Z copying torch\include\ATen\ops\addmv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8650598Z copying torch\include\ATen\ops\addr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8662030Z copying torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8668627Z copying torch\include\ATen\ops\addr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8675805Z copying torch\include\ATen\ops\addr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8682751Z copying torch\include\ATen\ops\addr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8693548Z copying torch\include\ATen\ops\addr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8700885Z copying torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8708152Z copying torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8715453Z copying torch\include\ATen\ops\add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8725980Z copying torch\include\ATen\ops\add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8733020Z copying torch\include\ATen\ops\add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8739842Z copying torch\include\ATen\ops\add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8746705Z copying torch\include\ATen\ops\add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8753754Z copying torch\include\ATen\ops\add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8760969Z copying torch\include\ATen\ops\adjoint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8767789Z copying torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8775207Z copying torch\include\ATen\ops\adjoint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8785530Z copying torch\include\ATen\ops\adjoint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8792378Z copying torch\include\ATen\ops\affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8799618Z copying torch\include\ATen\ops\affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8806961Z copying torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8818989Z copying torch\include\ATen\ops\affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8826776Z copying torch\include\ATen\ops\affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8834707Z copying torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8926836Z copying torch\include\ATen\ops\affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8937361Z copying torch\include\ATen\ops\affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8944183Z copying torch\include\ATen\ops\alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8951201Z copying torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8957974Z copying torch\include\ATen\ops\alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8992529Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.8999319Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9006274Z copying torch\include\ATen\ops\alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9012979Z copying torch\include\ATen\ops\alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9024486Z copying torch\include\ATen\ops\alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9031042Z copying torch\include\ATen\ops\alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9038320Z copying torch\include\ATen\ops\align_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9044917Z copying torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9052465Z copying torch\include\ATen\ops\align_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9059156Z copying torch\include\ATen\ops\align_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9066746Z copying torch\include\ATen\ops\align_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9074087Z copying torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9085295Z copying torch\include\ATen\ops\align_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9092207Z copying torch\include\ATen\ops\align_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9099259Z copying torch\include\ATen\ops\align_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9106191Z copying torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9113149Z copying torch\include\ATen\ops\align_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9120455Z copying torch\include\ATen\ops\align_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9127174Z copying torch\include\ATen\ops\all.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9133932Z copying torch\include\ATen\ops\allclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9141469Z copying torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9148451Z copying torch\include\ATen\ops\allclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9155401Z copying torch\include\ATen\ops\allclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9162838Z copying torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9169897Z copying torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9177422Z copying torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9184539Z copying torch\include\ATen\ops\all_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9191592Z copying torch\include\ATen\ops\all_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9204208Z copying torch\include\ATen\ops\all_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9211147Z copying torch\include\ATen\ops\all_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9218093Z copying torch\include\ATen\ops\all_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9225584Z copying torch\include\ATen\ops\all_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9232722Z copying torch\include\ATen\ops\alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9240260Z copying torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9247459Z copying torch\include\ATen\ops\alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9328919Z copying torch\include\ATen\ops\alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9336788Z copying torch\include\ATen\ops\amax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9344796Z copying torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9352526Z copying torch\include\ATen\ops\amax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9360430Z copying torch\include\ATen\ops\amax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9367513Z copying torch\include\ATen\ops\amax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9374815Z copying torch\include\ATen\ops\amax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9382015Z copying torch\include\ATen\ops\amax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9389354Z copying torch\include\ATen\ops\amax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9396371Z copying torch\include\ATen\ops\amin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9403031Z copying torch\include\ATen\ops\aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9410196Z copying torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9417170Z copying torch\include\ATen\ops\aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9424337Z copying torch\include\ATen\ops\aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9431251Z copying torch\include\ATen\ops\aminmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9438672Z copying torch\include\ATen\ops\aminmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9446058Z copying torch\include\ATen\ops\aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9452986Z copying torch\include\ATen\ops\aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9460368Z copying torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9467278Z copying torch\include\ATen\ops\amin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9474242Z copying torch\include\ATen\ops\amin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9481593Z copying torch\include\ATen\ops\amin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9488721Z copying torch\include\ATen\ops\amin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9495542Z copying torch\include\ATen\ops\amin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9502285Z copying torch\include\ATen\ops\amin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9509181Z copying torch\include\ATen\ops\and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9515869Z copying torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9522617Z copying torch\include\ATen\ops\and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9529371Z copying torch\include\ATen\ops\and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9535987Z copying torch\include\ATen\ops\angle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9542564Z copying torch\include\ATen\ops\angle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9550109Z copying torch\include\ATen\ops\angle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9556807Z copying torch\include\ATen\ops\angle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9563652Z copying torch\include\ATen\ops\angle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9570477Z copying torch\include\ATen\ops\any.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9577686Z copying torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9584665Z copying torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9596071Z copying torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9603283Z copying torch\include\ATen\ops\any_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9610186Z copying torch\include\ATen\ops\any_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9802007Z copying torch\include\ATen\ops\any_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9808852Z copying torch\include\ATen\ops\any_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9815924Z copying torch\include\ATen\ops\any_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9823236Z copying torch\include\ATen\ops\any_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9830676Z copying torch\include\ATen\ops\arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9838624Z copying torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9847106Z copying torch\include\ATen\ops\arange_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9854088Z copying torch\include\ATen\ops\arange_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9861263Z copying torch\include\ATen\ops\arange_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9868487Z copying torch\include\ATen\ops\arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9875574Z copying torch\include\ATen\ops\arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9883002Z copying torch\include\ATen\ops\arccos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9889902Z copying torch\include\ATen\ops\arccosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9896938Z copying torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9904311Z copying torch\include\ATen\ops\arccosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9911030Z copying torch\include\ATen\ops\arccosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9918363Z copying torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9925454Z copying torch\include\ATen\ops\arccos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9932327Z copying torch\include\ATen\ops\arccos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9939200Z copying torch\include\ATen\ops\arcsin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9945750Z copying torch\include\ATen\ops\arcsinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9952767Z copying torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9960052Z copying torch\include\ATen\ops\arcsinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9966928Z copying torch\include\ATen\ops\arcsinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9974288Z copying torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9984314Z copying torch\include\ATen\ops\arcsin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9991256Z copying torch\include\ATen\ops\arcsin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:41.9998429Z copying torch\include\ATen\ops\arctan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0005140Z copying torch\include\ATen\ops\arctan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0012045Z copying torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0019082Z copying torch\include\ATen\ops\arctan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0025962Z copying torch\include\ATen\ops\arctan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0033004Z copying torch\include\ATen\ops\arctanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0040113Z copying torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0046984Z copying torch\include\ATen\ops\arctanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0053922Z copying torch\include\ATen\ops\arctanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0061047Z copying torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0068165Z copying torch\include\ATen\ops\arctan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0075207Z copying torch\include\ATen\ops\arctan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0082329Z copying torch\include\ATen\ops\argmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0089898Z copying torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0100328Z copying torch\include\ATen\ops\argmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0107477Z copying torch\include\ATen\ops\argmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0114647Z copying torch\include\ATen\ops\argmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0122227Z copying torch\include\ATen\ops\argmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0129442Z copying torch\include\ATen\ops\argmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0137387Z copying torch\include\ATen\ops\argmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0145181Z copying torch\include\ATen\ops\argmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0152316Z copying torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0159119Z copying torch\include\ATen\ops\argmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0167242Z copying torch\include\ATen\ops\argmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0174289Z copying torch\include\ATen\ops\argmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0181815Z copying torch\include\ATen\ops\argmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0189444Z copying torch\include\ATen\ops\argmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0196807Z copying torch\include\ATen\ops\argmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0203932Z copying torch\include\ATen\ops\argsort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0211916Z copying torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0227983Z copying torch\include\ATen\ops\argsort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0235374Z copying torch\include\ATen\ops\argsort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0242559Z copying torch\include\ATen\ops\argwhere.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0249419Z copying torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0261622Z copying torch\include\ATen\ops\argwhere_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0268759Z copying torch\include\ATen\ops\argwhere_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0276508Z copying torch\include\ATen\ops\asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0283375Z copying torch\include\ATen\ops\asinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0295800Z copying torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0303543Z copying torch\include\ATen\ops\asinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0310931Z copying torch\include\ATen\ops\asinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0318464Z copying torch\include\ATen\ops\asinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0331942Z copying torch\include\ATen\ops\asinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0339668Z copying torch\include\ATen\ops\asinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0347798Z copying torch\include\ATen\ops\asinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0355429Z copying torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0366636Z copying torch\include\ATen\ops\asin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0374011Z copying torch\include\ATen\ops\asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0380913Z copying torch\include\ATen\ops\asin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0389916Z copying torch\include\ATen\ops\asin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0397113Z copying torch\include\ATen\ops\asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0403977Z copying torch\include\ATen\ops\asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0410667Z copying torch\include\ATen\ops\as_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0419031Z copying torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0430728Z copying torch\include\ATen\ops\as_strided_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0438968Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0446319Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.0453697Z copying torch\include\ATen\ops\as_strided_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1826021Z copying torch\include\ATen\ops\as_strided_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1834806Z copying torch\include\ATen\ops\as_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1843565Z copying torch\include\ATen\ops\as_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1852745Z copying torch\include\ATen\ops\as_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1862356Z copying torch\include\ATen\ops\as_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1870822Z copying torch\include\ATen\ops\as_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1878541Z copying torch\include\ATen\ops\as_strided_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1886322Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1893738Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1901207Z copying torch\include\ATen\ops\as_strided_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1908420Z copying torch\include\ATen\ops\as_strided_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1915407Z copying torch\include\ATen\ops\atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1922639Z copying torch\include\ATen\ops\atan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1929726Z copying torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1936479Z copying torch\include\ATen\ops\atan2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1943657Z copying torch\include\ATen\ops\atan2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1950336Z copying torch\include\ATen\ops\atan2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1957585Z copying torch\include\ATen\ops\atan2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1964712Z copying torch\include\ATen\ops\atan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1971687Z copying torch\include\ATen\ops\atan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1978545Z copying torch\include\ATen\ops\atanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1985663Z copying torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1992641Z copying torch\include\ATen\ops\atanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.1999861Z copying torch\include\ATen\ops\atanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2006708Z copying torch\include\ATen\ops\atanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2013433Z copying torch\include\ATen\ops\atanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2020628Z copying torch\include\ATen\ops\atanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2027436Z copying torch\include\ATen\ops\atanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2034826Z copying torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2041766Z copying torch\include\ATen\ops\atan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2048864Z copying torch\include\ATen\ops\atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2055632Z copying torch\include\ATen\ops\atan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2062283Z copying torch\include\ATen\ops\atan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2069303Z copying torch\include\ATen\ops\atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2094220Z copying torch\include\ATen\ops\atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2100830Z copying torch\include\ATen\ops\atleast_1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2108090Z copying torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2114924Z copying torch\include\ATen\ops\atleast_1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2121775Z copying torch\include\ATen\ops\atleast_1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2128603Z copying torch\include\ATen\ops\atleast_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2136108Z copying torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2143283Z copying torch\include\ATen\ops\atleast_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2150285Z copying torch\include\ATen\ops\atleast_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2157265Z copying torch\include\ATen\ops\atleast_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2164815Z copying torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2211640Z copying torch\include\ATen\ops\atleast_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2218989Z copying torch\include\ATen\ops\atleast_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2226245Z copying torch\include\ATen\ops\avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2233958Z copying torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2241310Z copying torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2248370Z copying torch\include\ATen\ops\avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2255524Z copying torch\include\ATen\ops\avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2262638Z copying torch\include\ATen\ops\avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2270040Z copying torch\include\ATen\ops\avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2277725Z copying torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2285044Z copying torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2292436Z copying torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2299639Z copying torch\include\ATen\ops\avg_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2307019Z copying torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2314048Z copying torch\include\ATen\ops\avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2321354Z copying torch\include\ATen\ops\avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2329350Z copying torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2336465Z copying torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2344382Z copying torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2400389Z copying torch\include\ATen\ops\avg_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2401225Z copying torch\include\ATen\ops\avg_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2402042Z copying torch\include\ATen\ops\avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2402812Z copying torch\include\ATen\ops\avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2403538Z copying torch\include\ATen\ops\avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2404303Z copying torch\include\ATen\ops\avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2405347Z copying torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2406569Z copying torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2411904Z copying torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2418799Z copying torch\include\ATen\ops\avg_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2426320Z copying torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2433502Z copying torch\include\ATen\ops\avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2450698Z copying torch\include\ATen\ops\avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2458141Z copying torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2465111Z copying torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2472124Z copying torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2479254Z copying torch\include\ATen\ops\avg_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2486718Z copying torch\include\ATen\ops\avg_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2493747Z copying torch\include\ATen\ops\avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2500940Z copying torch\include\ATen\ops\avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2507989Z copying torch\include\ATen\ops\baddbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2515364Z copying torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2523631Z copying torch\include\ATen\ops\baddbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2530714Z copying torch\include\ATen\ops\baddbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2538445Z copying torch\include\ATen\ops\baddbmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2545492Z copying torch\include\ATen\ops\baddbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2553822Z copying torch\include\ATen\ops\baddbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2560823Z copying torch\include\ATen\ops\baddbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2567901Z copying torch\include\ATen\ops\bartlett_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2575219Z copying torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2582146Z copying torch\include\ATen\ops\bartlett_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2589123Z copying torch\include\ATen\ops\bartlett_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2596661Z copying torch\include\ATen\ops\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2603840Z copying torch\include\ATen\ops\batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2610890Z copying torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2618166Z copying torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2626042Z copying torch\include\ATen\ops\batch_norm_backward_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2634308Z copying torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2642131Z copying torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2649484Z copying torch\include\ATen\ops\batch_norm_backward_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2657051Z copying torch\include\ATen\ops\batch_norm_backward_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2663866Z copying torch\include\ATen\ops\batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2671038Z copying torch\include\ATen\ops\batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2678232Z copying torch\include\ATen\ops\batch_norm_backward_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2686547Z copying torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2693780Z copying torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2701207Z copying torch\include\ATen\ops\batch_norm_backward_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2708068Z copying torch\include\ATen\ops\batch_norm_backward_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2716451Z copying torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2723627Z copying torch\include\ATen\ops\batch_norm_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2731333Z copying torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2738391Z copying torch\include\ATen\ops\batch_norm_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2745649Z copying torch\include\ATen\ops\batch_norm_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2752943Z copying torch\include\ATen\ops\batch_norm_gather_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2761332Z copying torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2768555Z copying torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2776203Z copying torch\include\ATen\ops\batch_norm_gather_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2783942Z copying torch\include\ATen\ops\batch_norm_gather_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2791433Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2799072Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2806668Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2814550Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2822155Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2829553Z copying torch\include\ATen\ops\batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2836699Z copying torch\include\ATen\ops\batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2844195Z copying torch\include\ATen\ops\batch_norm_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2852187Z copying torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2859810Z copying torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2867889Z copying torch\include\ATen\ops\batch_norm_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2875841Z copying torch\include\ATen\ops\batch_norm_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2883654Z copying torch\include\ATen\ops\batch_norm_update_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2891880Z copying torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2899214Z copying torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2906568Z copying torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2914040Z copying torch\include\ATen\ops\batch_norm_update_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2921700Z copying torch\include\ATen\ops\batch_norm_update_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2928769Z copying torch\include\ATen\ops\bernoulli.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2936064Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2943344Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2950250Z copying torch\include\ATen\ops\bernoulli_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2958448Z copying torch\include\ATen\ops\bernoulli_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2982867Z copying torch\include\ATen\ops\bernoulli_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2989906Z copying torch\include\ATen\ops\bernoulli_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.2996964Z copying torch\include\ATen\ops\bernoulli_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3003995Z copying torch\include\ATen\ops\bilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3011214Z copying torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3017614Z copying torch\include\ATen\ops\bilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3024868Z copying torch\include\ATen\ops\bilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3031700Z copying torch\include\ATen\ops\binary_cross_entropy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3039088Z copying torch\include\ATen\ops\binary_cross_entropy_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3060611Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3067735Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3074768Z copying torch\include\ATen\ops\binary_cross_entropy_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3082018Z copying torch\include\ATen\ops\binary_cross_entropy_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3089823Z copying torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3096933Z copying torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3104324Z copying torch\include\ATen\ops\binary_cross_entropy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3111130Z copying torch\include\ATen\ops\binary_cross_entropy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3118386Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3125786Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3132934Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3140086Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3146902Z copying torch\include\ATen\ops\bincount.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3154426Z copying torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3161581Z copying torch\include\ATen\ops\bincount_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3168603Z copying torch\include\ATen\ops\bincount_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3175677Z copying torch\include\ATen\ops\bincount_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3183100Z copying torch\include\ATen\ops\bincount_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3190505Z copying torch\include\ATen\ops\binomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3197665Z copying torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3204565Z copying torch\include\ATen\ops\binomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3211754Z copying torch\include\ATen\ops\binomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3218742Z copying torch\include\ATen\ops\binomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3225968Z copying torch\include\ATen\ops\binomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3233068Z copying torch\include\ATen\ops\bitwise_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3241606Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3248753Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3255805Z copying torch\include\ATen\ops\bitwise_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3263059Z copying torch\include\ATen\ops\bitwise_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3270576Z copying torch\include\ATen\ops\bitwise_and_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3277556Z copying torch\include\ATen\ops\bitwise_and_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3284953Z copying torch\include\ATen\ops\bitwise_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3292044Z copying torch\include\ATen\ops\bitwise_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3299165Z copying torch\include\ATen\ops\bitwise_left_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3306828Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3314141Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3321324Z copying torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3328785Z copying torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3335970Z copying torch\include\ATen\ops\bitwise_left_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3343389Z copying torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3385193Z copying torch\include\ATen\ops\bitwise_left_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3392539Z copying torch\include\ATen\ops\bitwise_left_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3400198Z copying torch\include\ATen\ops\bitwise_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3408182Z copying torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3414651Z copying torch\include\ATen\ops\bitwise_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3421741Z copying torch\include\ATen\ops\bitwise_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3428987Z copying torch\include\ATen\ops\bitwise_not_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3435943Z copying torch\include\ATen\ops\bitwise_not_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3442863Z copying torch\include\ATen\ops\bitwise_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3449824Z copying torch\include\ATen\ops\bitwise_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3457639Z copying torch\include\ATen\ops\bitwise_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3466759Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3474592Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3482041Z copying torch\include\ATen\ops\bitwise_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3489883Z copying torch\include\ATen\ops\bitwise_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3497059Z copying torch\include\ATen\ops\bitwise_or_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3504453Z copying torch\include\ATen\ops\bitwise_or_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3511602Z copying torch\include\ATen\ops\bitwise_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3519586Z copying torch\include\ATen\ops\bitwise_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3526417Z copying torch\include\ATen\ops\bitwise_right_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3533885Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3541161Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3549017Z copying torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3556443Z copying torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3563877Z copying torch\include\ATen\ops\bitwise_right_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3571252Z copying torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3578560Z copying torch\include\ATen\ops\bitwise_right_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3585914Z copying torch\include\ATen\ops\bitwise_right_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3593204Z copying torch\include\ATen\ops\bitwise_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3601013Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3608861Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3615795Z copying torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3623524Z copying torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3630436Z copying torch\include\ATen\ops\bitwise_xor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3637737Z copying torch\include\ATen\ops\bitwise_xor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3644989Z copying torch\include\ATen\ops\bitwise_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3652195Z copying torch\include\ATen\ops\bitwise_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3660071Z copying torch\include\ATen\ops\blackman_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3667274Z copying torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3674421Z copying torch\include\ATen\ops\blackman_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3681699Z copying torch\include\ATen\ops\blackman_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3689615Z copying torch\include\ATen\ops\block_diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3696851Z copying torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3704198Z copying torch\include\ATen\ops\block_diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3710914Z copying torch\include\ATen\ops\block_diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3717994Z copying torch\include\ATen\ops\bmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3725298Z copying torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3732147Z copying torch\include\ATen\ops\bmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3739535Z copying torch\include\ATen\ops\bmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3746568Z copying torch\include\ATen\ops\bmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3753064Z copying torch\include\ATen\ops\bmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3760429Z copying torch\include\ATen\ops\bmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3767156Z copying torch\include\ATen\ops\bmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3773924Z copying torch\include\ATen\ops\broadcast_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3781182Z copying torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3788013Z copying torch\include\ATen\ops\broadcast_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3794829Z copying torch\include\ATen\ops\broadcast_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3801886Z copying torch\include\ATen\ops\broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3809208Z copying torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3816343Z copying torch\include\ATen\ops\broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3823654Z copying torch\include\ATen\ops\broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3831218Z copying torch\include\ATen\ops\bucketize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3838349Z copying torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3845779Z copying torch\include\ATen\ops\bucketize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3853683Z copying torch\include\ATen\ops\bucketize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3861433Z copying torch\include\ATen\ops\bucketize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3869607Z copying torch\include\ATen\ops\bucketize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3877643Z copying torch\include\ATen\ops\can_cast.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3884809Z copying torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3892086Z copying torch\include\ATen\ops\can_cast_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3898918Z copying torch\include\ATen\ops\can_cast_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3905792Z copying torch\include\ATen\ops\cartesian_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3913087Z copying torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3921002Z copying torch\include\ATen\ops\cartesian_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3928028Z copying torch\include\ATen\ops\cartesian_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3935488Z copying torch\include\ATen\ops\cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3942588Z copying torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3950137Z copying torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3957989Z copying torch\include\ATen\ops\cat_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3964973Z copying torch\include\ATen\ops\cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3971931Z copying torch\include\ATen\ops\cat_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3979768Z copying torch\include\ATen\ops\cat_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3986860Z copying torch\include\ATen\ops\cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.3993510Z copying torch\include\ATen\ops\cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.4001446Z copying torch\include\ATen\ops\cauchy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.4008646Z copying torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.4029452Z copying torch\include\ATen\ops\cauchy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.4037144Z copying torch\include\ATen\ops\cauchy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.4043991Z copying torch\include\ATen\ops\cauchy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7519587Z copying torch\include\ATen\ops\cauchy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7527611Z copying torch\include\ATen\ops\cauchy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7535063Z copying torch\include\ATen\ops\ccol_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7542582Z copying torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7549845Z copying torch\include\ATen\ops\ccol_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7557728Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7565421Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7573093Z copying torch\include\ATen\ops\ccol_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7581139Z copying torch\include\ATen\ops\ccol_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7588877Z copying torch\include\ATen\ops\ccol_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7596104Z copying torch\include\ATen\ops\ccol_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7603064Z copying torch\include\ATen\ops\cdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7610279Z copying torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7617517Z copying torch\include\ATen\ops\cdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7624582Z copying torch\include\ATen\ops\cdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7631586Z copying torch\include\ATen\ops\ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7638911Z copying torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.7645784Z copying torch\include\ATen\ops\ceil_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8152553Z copying torch\include\ATen\ops\ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8160063Z copying torch\include\ATen\ops\ceil_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8166814Z copying torch\include\ATen\ops\ceil_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8174272Z copying torch\include\ATen\ops\ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8181452Z copying torch\include\ATen\ops\ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8188254Z copying torch\include\ATen\ops\celu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8195410Z copying torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8202996Z copying torch\include\ATen\ops\celu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8209592Z copying torch\include\ATen\ops\celu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8216534Z copying torch\include\ATen\ops\chain_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8224037Z copying torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8231489Z copying torch\include\ATen\ops\chain_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8238503Z copying torch\include\ATen\ops\chain_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8245494Z copying torch\include\ATen\ops\chalf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8252512Z copying torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8259549Z copying torch\include\ATen\ops\chalf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8266379Z copying torch\include\ATen\ops\chalf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8273416Z copying torch\include\ATen\ops\channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8281273Z copying torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8288754Z copying torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8296111Z copying torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8303233Z copying torch\include\ATen\ops\channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8310492Z copying torch\include\ATen\ops\channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8317769Z copying torch\include\ATen\ops\cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8324867Z copying torch\include\ATen\ops\cholesky_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8332020Z copying torch\include\ATen\ops\cholesky_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8339156Z copying torch\include\ATen\ops\cholesky_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8346580Z copying torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8354457Z copying torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8361739Z copying torch\include\ATen\ops\cholesky_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8369630Z copying torch\include\ATen\ops\cholesky_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8379531Z copying torch\include\ATen\ops\cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8396744Z copying torch\include\ATen\ops\cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8397544Z copying torch\include\ATen\ops\cholesky_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8403842Z copying torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8411931Z copying torch\include\ATen\ops\cholesky_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8419860Z copying torch\include\ATen\ops\cholesky_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8427823Z copying torch\include\ATen\ops\choose_qparams_optimized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8436363Z copying torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8444525Z copying torch\include\ATen\ops\choose_qparams_optimized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8452674Z copying torch\include\ATen\ops\choose_qparams_optimized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8459798Z copying torch\include\ATen\ops\chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8467369Z copying torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8474619Z copying torch\include\ATen\ops\chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8481478Z copying torch\include\ATen\ops\chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8488575Z copying torch\include\ATen\ops\clamp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8495679Z copying torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8503093Z copying torch\include\ATen\ops\clamp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8509821Z copying torch\include\ATen\ops\clamp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8516892Z copying torch\include\ATen\ops\clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8524247Z copying torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8531347Z copying torch\include\ATen\ops\clamp_max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8539103Z copying torch\include\ATen\ops\clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8546089Z copying torch\include\ATen\ops\clamp_max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8553289Z copying torch\include\ATen\ops\clamp_max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8560230Z copying torch\include\ATen\ops\clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8567170Z copying torch\include\ATen\ops\clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8574066Z copying torch\include\ATen\ops\clamp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8581040Z copying torch\include\ATen\ops\clamp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8588172Z copying torch\include\ATen\ops\clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8595624Z copying torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8602856Z copying torch\include\ATen\ops\clamp_min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8610003Z copying torch\include\ATen\ops\clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8616960Z copying torch\include\ATen\ops\clamp_min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8624508Z copying torch\include\ATen\ops\clamp_min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8631309Z copying torch\include\ATen\ops\clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8638520Z copying torch\include\ATen\ops\clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8645666Z copying torch\include\ATen\ops\clamp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8657212Z copying torch\include\ATen\ops\clamp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8663973Z copying torch\include\ATen\ops\clip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8670824Z copying torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8677859Z copying torch\include\ATen\ops\clip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8685030Z copying torch\include\ATen\ops\clip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8691720Z copying torch\include\ATen\ops\clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8698926Z copying torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8705448Z copying torch\include\ATen\ops\clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8712248Z copying torch\include\ATen\ops\clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8719357Z copying torch\include\ATen\ops\coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8726170Z copying torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8732963Z copying torch\include\ATen\ops\coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8739708Z copying torch\include\ATen\ops\coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8746713Z copying torch\include\ATen\ops\col2im.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8753479Z copying torch\include\ATen\ops\col2im_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8760763Z copying torch\include\ATen\ops\col2im_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8767587Z copying torch\include\ATen\ops\col2im_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8774660Z copying torch\include\ATen\ops\col2im_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8782229Z copying torch\include\ATen\ops\column_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8789443Z copying torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8796640Z copying torch\include\ATen\ops\column_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8803132Z copying torch\include\ATen\ops\column_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8810130Z copying torch\include\ATen\ops\col_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8817117Z copying torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8824298Z copying torch\include\ATen\ops\col_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8831789Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8839030Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8846253Z copying torch\include\ATen\ops\col_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8853389Z copying torch\include\ATen\ops\col_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8860586Z copying torch\include\ATen\ops\col_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8867498Z copying torch\include\ATen\ops\col_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8875478Z copying torch\include\ATen\ops\combinations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8883717Z copying torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8938799Z copying torch\include\ATen\ops\combinations_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8939610Z copying torch\include\ATen\ops\combinations_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8940382Z copying torch\include\ATen\ops\complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8941248Z copying torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8942174Z copying torch\include\ATen\ops\complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8944767Z copying torch\include\ATen\ops\complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8945566Z copying torch\include\ATen\ops\complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8946315Z copying torch\include\ATen\ops\complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8953051Z copying torch\include\ATen\ops\concat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8960100Z copying torch\include\ATen\ops\concatenate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8969351Z copying torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8974900Z copying torch\include\ATen\ops\concatenate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8981931Z copying torch\include\ATen\ops\concatenate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8989466Z copying torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.8996183Z copying torch\include\ATen\ops\concat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9003117Z copying torch\include\ATen\ops\concat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9009969Z copying torch\include\ATen\ops\conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9017156Z copying torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9023618Z copying torch\include\ATen\ops\conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9030440Z copying torch\include\ATen\ops\conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9037166Z copying torch\include\ATen\ops\conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9045224Z copying torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9052125Z copying torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9058967Z copying torch\include\ATen\ops\conj_physical_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9065901Z copying torch\include\ATen\ops\conj_physical_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9073196Z copying torch\include\ATen\ops\conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9080304Z copying torch\include\ATen\ops\conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9087480Z copying torch\include\ATen\ops\constant_pad_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9094718Z copying torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9101935Z copying torch\include\ATen\ops\constant_pad_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9108931Z copying torch\include\ATen\ops\constant_pad_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9115973Z copying torch\include\ATen\ops\contiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9133213Z copying torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9140050Z copying torch\include\ATen\ops\contiguous_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9146993Z copying torch\include\ATen\ops\contiguous_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9153785Z copying torch\include\ATen\ops\conv1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9160969Z copying torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9168054Z copying torch\include\ATen\ops\conv1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9175914Z copying torch\include\ATen\ops\conv1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9182735Z copying torch\include\ATen\ops\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9190212Z copying torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9197438Z copying torch\include\ATen\ops\conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9205220Z copying torch\include\ATen\ops\conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9211920Z copying torch\include\ATen\ops\conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9219021Z copying torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9225947Z copying torch\include\ATen\ops\conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9232908Z copying torch\include\ATen\ops\conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9240101Z copying torch\include\ATen\ops\convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9247357Z copying torch\include\ATen\ops\convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9254874Z copying torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9262457Z copying torch\include\ATen\ops\convolution_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9269954Z copying torch\include\ATen\ops\convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9277414Z copying torch\include\ATen\ops\convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9284775Z copying torch\include\ATen\ops\convolution_backward_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9292355Z copying torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9299728Z copying torch\include\ATen\ops\convolution_backward_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9307178Z copying torch\include\ATen\ops\convolution_backward_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9314643Z copying torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9321956Z copying torch\include\ATen\ops\convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9329615Z copying torch\include\ATen\ops\convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9337046Z copying torch\include\ATen\ops\convolution_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9344986Z copying torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9352313Z copying torch\include\ATen\ops\convolution_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9359787Z copying torch\include\ATen\ops\convolution_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9367212Z copying torch\include\ATen\ops\conv_depthwise3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9400402Z copying torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9407852Z copying torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9415143Z copying torch\include\ATen\ops\conv_depthwise3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9422313Z copying torch\include\ATen\ops\conv_depthwise3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9429576Z copying torch\include\ATen\ops\conv_tbc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9436697Z copying torch\include\ATen\ops\conv_tbc_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9444017Z copying torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9451047Z copying torch\include\ATen\ops\conv_tbc_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9459304Z copying torch\include\ATen\ops\conv_tbc_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9466736Z copying torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9474107Z copying torch\include\ATen\ops\conv_tbc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9481118Z copying torch\include\ATen\ops\conv_tbc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9488384Z copying torch\include\ATen\ops\conv_transpose1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9495746Z copying torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9503155Z copying torch\include\ATen\ops\conv_transpose1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9510195Z copying torch\include\ATen\ops\conv_transpose1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9517619Z copying torch\include\ATen\ops\conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9524952Z copying torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9531967Z copying torch\include\ATen\ops\conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9538964Z copying torch\include\ATen\ops\conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9546063Z copying torch\include\ATen\ops\conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9553500Z copying torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9560933Z copying torch\include\ATen\ops\conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9568103Z copying torch\include\ATen\ops\conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9575027Z copying torch\include\ATen\ops\copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9581652Z copying torch\include\ATen\ops\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9588765Z copying torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9595941Z copying torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9603223Z copying torch\include\ATen\ops\copysign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9610409Z copying torch\include\ATen\ops\copysign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9617611Z copying torch\include\ATen\ops\copysign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9624522Z copying torch\include\ATen\ops\copysign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9631554Z copying torch\include\ATen\ops\copysign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9638710Z copying torch\include\ATen\ops\copysign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9646377Z copying torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9654144Z copying torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9661067Z copying torch\include\ATen\ops\copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9668098Z copying torch\include\ATen\ops\copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9675013Z copying torch\include\ATen\ops\copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9681831Z copying torch\include\ATen\ops\copy_sparse_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9690261Z copying torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9697406Z copying torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9704513Z copying torch\include\ATen\ops\copy_sparse_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9711778Z copying torch\include\ATen\ops\copy_sparse_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9720075Z copying torch\include\ATen\ops\corrcoef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9727041Z copying torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9733907Z copying torch\include\ATen\ops\corrcoef_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9740598Z copying torch\include\ATen\ops\corrcoef_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9748500Z copying torch\include\ATen\ops\cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9755700Z copying torch\include\ATen\ops\cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9800607Z copying torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9855324Z copying torch\include\ATen\ops\cosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9987535Z copying torch\include\ATen\ops\cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:42.9995129Z copying torch\include\ATen\ops\cosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0001836Z copying torch\include\ATen\ops\cosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0008627Z copying torch\include\ATen\ops\cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0015928Z copying torch\include\ATen\ops\cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0024187Z copying torch\include\ATen\ops\cosine_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0032004Z copying torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0055731Z copying torch\include\ATen\ops\cosine_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0062908Z copying torch\include\ATen\ops\cosine_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0070912Z copying torch\include\ATen\ops\cosine_similarity.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0078490Z copying torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0085643Z copying torch\include\ATen\ops\cosine_similarity_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0092529Z copying torch\include\ATen\ops\cosine_similarity_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0099900Z copying torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0106990Z copying torch\include\ATen\ops\cos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0113802Z copying torch\include\ATen\ops\cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0120994Z copying torch\include\ATen\ops\cos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0127433Z copying torch\include\ATen\ops\cos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0134288Z copying torch\include\ATen\ops\cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0141131Z copying torch\include\ATen\ops\cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0147892Z copying torch\include\ATen\ops\count_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0155243Z copying torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0163055Z copying torch\include\ATen\ops\count_nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0170019Z copying torch\include\ATen\ops\count_nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0177107Z copying torch\include\ATen\ops\count_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0184186Z copying torch\include\ATen\ops\count_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0191272Z copying torch\include\ATen\ops\cov.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0198369Z copying torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0205371Z copying torch\include\ATen\ops\cov_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0212653Z copying torch\include\ATen\ops\cov_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0219168Z copying torch\include\ATen\ops\cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0226080Z copying torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0232942Z copying torch\include\ATen\ops\cross_entropy_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0240581Z copying torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0247647Z copying torch\include\ATen\ops\cross_entropy_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0254822Z copying torch\include\ATen\ops\cross_entropy_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0261820Z copying torch\include\ATen\ops\cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0268823Z copying torch\include\ATen\ops\cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0276016Z copying torch\include\ATen\ops\crow_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0317695Z copying torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0324935Z copying torch\include\ATen\ops\crow_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0332801Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0340332Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0347617Z copying torch\include\ATen\ops\crow_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0355325Z copying torch\include\ATen\ops\crow_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0362560Z copying torch\include\ATen\ops\crow_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0369614Z copying torch\include\ATen\ops\crow_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0376802Z copying torch\include\ATen\ops\ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0384783Z copying torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0392936Z copying torch\include\ATen\ops\ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0401014Z copying torch\include\ATen\ops\ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0409564Z copying torch\include\ATen\ops\cudnn_affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0435183Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0443299Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0450488Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0458181Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0465504Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0473342Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0480625Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0488407Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0496241Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0503403Z copying torch\include\ATen\ops\cudnn_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0510350Z copying torch\include\ATen\ops\cudnn_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0530830Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0538174Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0545373Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0552863Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0560578Z copying torch\include\ATen\ops\cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0567955Z copying torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0575426Z copying torch\include\ATen\ops\cudnn_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0582850Z copying torch\include\ATen\ops\cudnn_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0590285Z copying torch\include\ATen\ops\cudnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0598545Z copying torch\include\ATen\ops\cudnn_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0606344Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0613669Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0620877Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0628201Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0635653Z copying torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0643262Z copying torch\include\ATen\ops\cudnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0650496Z copying torch\include\ATen\ops\cudnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0657826Z copying torch\include\ATen\ops\cudnn_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0665614Z copying torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0673171Z copying torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0680866Z copying torch\include\ATen\ops\cudnn_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0688193Z copying torch\include\ATen\ops\cudnn_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0695661Z copying torch\include\ATen\ops\cudnn_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0703555Z copying torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0710873Z copying torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0718511Z copying torch\include\ATen\ops\cudnn_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0725858Z copying torch\include\ATen\ops\cudnn_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0733255Z copying torch\include\ATen\ops\cudnn_grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0740649Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0748333Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0755848Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0763695Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0771190Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0779039Z copying torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0786655Z copying torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0793848Z copying torch\include\ATen\ops\cudnn_grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0801166Z copying torch\include\ATen\ops\cudnn_grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0808405Z copying torch\include\ATen\ops\cudnn_is_acceptable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0816125Z copying torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0823521Z copying torch\include\ATen\ops\cudnn_is_acceptable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0830839Z copying torch\include\ATen\ops\cudnn_is_acceptable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0838699Z copying torch\include\ATen\ops\cummax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0845668Z copying torch\include\ATen\ops\cummaxmin_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0853169Z copying torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0860267Z copying torch\include\ATen\ops\cummaxmin_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0867854Z copying torch\include\ATen\ops\cummaxmin_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0877185Z copying torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0885790Z copying torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.0893909Z copying torch\include\ATen\ops\cummax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1971247Z copying torch\include\ATen\ops\cummax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1972324Z copying torch\include\ATen\ops\cummin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1973306Z copying torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1974537Z copying torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1975549Z copying torch\include\ATen\ops\cummin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1976411Z copying torch\include\ATen\ops\cummin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1977329Z copying torch\include\ATen\ops\cumprod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1978133Z copying torch\include\ATen\ops\cumprod_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1979211Z copying torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1980278Z copying torch\include\ATen\ops\cumprod_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1981204Z copying torch\include\ATen\ops\cumprod_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1982311Z copying torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1983574Z copying torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1984675Z copying torch\include\ATen\ops\cumprod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1985601Z copying torch\include\ATen\ops\cumprod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1986492Z copying torch\include\ATen\ops\cumprod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1987331Z copying torch\include\ATen\ops\cumprod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1988234Z copying torch\include\ATen\ops\cumprod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1989106Z copying torch\include\ATen\ops\cumprod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1989860Z copying torch\include\ATen\ops\cumsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1990920Z copying torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1992175Z copying torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1993201Z copying torch\include\ATen\ops\cumsum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1994124Z copying torch\include\ATen\ops\cumsum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1995035Z copying torch\include\ATen\ops\cumsum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1995919Z copying torch\include\ATen\ops\cumsum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1996813Z copying torch\include\ATen\ops\cumsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1997597Z copying torch\include\ATen\ops\cumsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1998486Z copying torch\include\ATen\ops\cumulative_trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.1999585Z copying torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2000820Z copying torch\include\ATen\ops\cumulative_trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2002289Z copying torch\include\ATen\ops\cumulative_trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2003057Z copying torch\include\ATen\ops\data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2003904Z copying torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2004848Z copying torch\include\ATen\ops\data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2005555Z copying torch\include\ATen\ops\data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2006251Z copying torch\include\ATen\ops\deg2rad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2007249Z copying torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2008227Z copying torch\include\ATen\ops\deg2rad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2008993Z copying torch\include\ATen\ops\deg2rad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2009708Z copying torch\include\ATen\ops\dense_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2014133Z copying torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2021114Z copying torch\include\ATen\ops\dense_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2028007Z copying torch\include\ATen\ops\dense_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2035329Z copying torch\include\ATen\ops\dequantize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2042815Z copying torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2050037Z copying torch\include\ATen\ops\dequantize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2057366Z copying torch\include\ATen\ops\dequantize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2064555Z copying torch\include\ATen\ops\dequantize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2071754Z copying torch\include\ATen\ops\dequantize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2079155Z copying torch\include\ATen\ops\det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2085672Z copying torch\include\ATen\ops\detach.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2092705Z copying torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2099565Z copying torch\include\ATen\ops\detach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2107090Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2114422Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2121556Z copying torch\include\ATen\ops\detach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2128789Z copying torch\include\ATen\ops\detach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2136028Z copying torch\include\ATen\ops\detach_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2142853Z copying torch\include\ATen\ops\detach_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2150487Z copying torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2157782Z copying torch\include\ATen\ops\det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2164407Z copying torch\include\ATen\ops\det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2171206Z copying torch\include\ATen\ops\diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2177975Z copying torch\include\ATen\ops\diagflat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2184718Z copying torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2191623Z copying torch\include\ATen\ops\diagflat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2203121Z copying torch\include\ATen\ops\diagflat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2210089Z copying torch\include\ATen\ops\diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2216905Z copying torch\include\ATen\ops\diagonal_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2224492Z copying torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2231553Z copying torch\include\ATen\ops\diagonal_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2238982Z copying torch\include\ATen\ops\diagonal_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2246451Z copying torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2253853Z copying torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2261010Z copying torch\include\ATen\ops\diagonal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2268893Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2276130Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2283326Z copying torch\include\ATen\ops\diagonal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2290731Z copying torch\include\ATen\ops\diagonal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2320209Z copying torch\include\ATen\ops\diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2327351Z copying torch\include\ATen\ops\diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2334562Z copying torch\include\ATen\ops\diagonal_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2342632Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2350584Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2357982Z copying torch\include\ATen\ops\diagonal_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2365224Z copying torch\include\ATen\ops\diagonal_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2372840Z copying torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2380118Z copying torch\include\ATen\ops\diag_embed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2388235Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2395992Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2404049Z copying torch\include\ATen\ops\diag_embed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2412038Z copying torch\include\ATen\ops\diag_embed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2420781Z copying torch\include\ATen\ops\diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2428064Z copying torch\include\ATen\ops\diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2434739Z copying torch\include\ATen\ops\diff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2442437Z copying torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2449757Z copying torch\include\ATen\ops\diff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2456671Z copying torch\include\ATen\ops\diff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2463624Z copying torch\include\ATen\ops\digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2470780Z copying torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2478176Z copying torch\include\ATen\ops\digamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2485387Z copying torch\include\ATen\ops\digamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2492404Z copying torch\include\ATen\ops\digamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2499570Z copying torch\include\ATen\ops\digamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2506962Z copying torch\include\ATen\ops\digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2514198Z copying torch\include\ATen\ops\digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2521163Z copying torch\include\ATen\ops\dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2528045Z copying torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2535102Z copying torch\include\ATen\ops\dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2541900Z copying torch\include\ATen\ops\dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2548816Z copying torch\include\ATen\ops\div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2556028Z copying torch\include\ATen\ops\divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2562966Z copying torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2570027Z copying torch\include\ATen\ops\divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2576878Z copying torch\include\ATen\ops\divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2584666Z copying torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2591806Z copying torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2598929Z copying torch\include\ATen\ops\div_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2606066Z copying torch\include\ATen\ops\div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2613035Z copying torch\include\ATen\ops\div_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2620032Z copying torch\include\ATen\ops\div_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2626888Z copying torch\include\ATen\ops\div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2635022Z copying torch\include\ATen\ops\div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2642079Z copying torch\include\ATen\ops\dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2649046Z copying torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2655903Z copying torch\include\ATen\ops\dot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2662987Z copying torch\include\ATen\ops\dot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2670294Z copying torch\include\ATen\ops\dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2677343Z copying torch\include\ATen\ops\dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2684377Z copying torch\include\ATen\ops\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2691308Z copying torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2698216Z copying torch\include\ATen\ops\dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2705607Z copying torch\include\ATen\ops\dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2712907Z copying torch\include\ATen\ops\dsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2719920Z copying torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2726996Z copying torch\include\ATen\ops\dsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2733895Z copying torch\include\ATen\ops\dsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2740682Z copying torch\include\ATen\ops\dstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2747719Z copying torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2754626Z copying torch\include\ATen\ops\dstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2761572Z copying torch\include\ATen\ops\dstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2768516Z copying torch\include\ATen\ops\einsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2775333Z copying torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2782481Z copying torch\include\ATen\ops\einsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2789273Z copying torch\include\ATen\ops\einsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2796320Z copying torch\include\ATen\ops\elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2803223Z copying torch\include\ATen\ops\elu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2810623Z copying torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2817733Z copying torch\include\ATen\ops\elu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2825089Z copying torch\include\ATen\ops\elu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2832516Z copying torch\include\ATen\ops\elu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2840265Z copying torch\include\ATen\ops\elu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2847406Z copying torch\include\ATen\ops\elu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2854833Z copying torch\include\ATen\ops\elu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2862507Z copying torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2869844Z copying torch\include\ATen\ops\elu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2876987Z copying torch\include\ATen\ops\elu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2884216Z copying torch\include\ATen\ops\elu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2890985Z copying torch\include\ATen\ops\elu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2898905Z copying torch\include\ATen\ops\elu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2906729Z copying torch\include\ATen\ops\elu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2913943Z copying torch\include\ATen\ops\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2922075Z copying torch\include\ATen\ops\embedding_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2935912Z copying torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2944295Z copying torch\include\ATen\ops\embedding_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2952283Z copying torch\include\ATen\ops\embedding_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2960383Z copying torch\include\ATen\ops\embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2968126Z copying torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2975500Z copying torch\include\ATen\ops\embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2982798Z copying torch\include\ATen\ops\embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2990911Z copying torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.2998497Z copying torch\include\ATen\ops\embedding_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3006183Z copying torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3013493Z copying torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3020834Z copying torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3028502Z copying torch\include\ATen\ops\embedding_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3035694Z copying torch\include\ATen\ops\embedding_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3043357Z copying torch\include\ATen\ops\embedding_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3050580Z copying torch\include\ATen\ops\embedding_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3057726Z copying torch\include\ATen\ops\embedding_renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3065205Z copying torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3072253Z copying torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3111009Z copying torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3118679Z copying torch\include\ATen\ops\embedding_renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3125841Z copying torch\include\ATen\ops\embedding_renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3132980Z copying torch\include\ATen\ops\embedding_renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3140107Z copying torch\include\ATen\ops\embedding_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3147520Z copying torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3154689Z copying torch\include\ATen\ops\embedding_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3161947Z copying torch\include\ATen\ops\embedding_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3169208Z copying torch\include\ATen\ops\empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3176336Z copying torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3183488Z copying torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3190610Z copying torch\include\ATen\ops\empty_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3197966Z copying torch\include\ATen\ops\empty_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3205178Z copying torch\include\ATen\ops\empty_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3212482Z copying torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3219782Z copying torch\include\ATen\ops\empty_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3227118Z copying torch\include\ATen\ops\empty_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3234451Z copying torch\include\ATen\ops\empty_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3242015Z copying torch\include\ATen\ops\empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3249416Z copying torch\include\ATen\ops\empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3256981Z copying torch\include\ATen\ops\empty_permuted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3264545Z copying torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3272208Z copying torch\include\ATen\ops\empty_permuted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3279624Z copying torch\include\ATen\ops\empty_permuted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3287669Z copying torch\include\ATen\ops\empty_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3295337Z copying torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3302334Z copying torch\include\ATen\ops\empty_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3309505Z copying torch\include\ATen\ops\empty_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3348352Z copying torch\include\ATen\ops\empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3356372Z copying torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3363776Z copying torch\include\ATen\ops\empty_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3370966Z copying torch\include\ATen\ops\empty_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3378228Z copying torch\include\ATen\ops\empty_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3385567Z copying torch\include\ATen\ops\empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3393149Z copying torch\include\ATen\ops\empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3401175Z copying torch\include\ATen\ops\eq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3408966Z copying torch\include\ATen\ops\equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3416569Z copying torch\include\ATen\ops\equal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3423915Z copying torch\include\ATen\ops\equal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3431287Z copying torch\include\ATen\ops\equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3438690Z copying torch\include\ATen\ops\equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3446368Z copying torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3453370Z copying torch\include\ATen\ops\eq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3460398Z copying torch\include\ATen\ops\eq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3467581Z copying torch\include\ATen\ops\eq_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3474632Z copying torch\include\ATen\ops\eq_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3481716Z copying torch\include\ATen\ops\eq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3488699Z copying torch\include\ATen\ops\eq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3495381Z copying torch\include\ATen\ops\erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3502404Z copying torch\include\ATen\ops\erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3509614Z copying torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3531658Z copying torch\include\ATen\ops\erfc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3538900Z copying torch\include\ATen\ops\erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3545867Z copying torch\include\ATen\ops\erfc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3553078Z copying torch\include\ATen\ops\erfc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3559997Z copying torch\include\ATen\ops\erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3566743Z copying torch\include\ATen\ops\erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3573501Z copying torch\include\ATen\ops\erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3580623Z copying torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3587945Z copying torch\include\ATen\ops\erfinv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3595494Z copying torch\include\ATen\ops\erfinv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3602559Z copying torch\include\ATen\ops\erfinv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3609627Z copying torch\include\ATen\ops\erfinv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3616959Z copying torch\include\ATen\ops\erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3623850Z copying torch\include\ATen\ops\erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3631396Z copying torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3638292Z copying torch\include\ATen\ops\erf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3645413Z copying torch\include\ATen\ops\erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3652892Z copying torch\include\ATen\ops\erf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3659497Z copying torch\include\ATen\ops\erf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3666478Z copying torch\include\ATen\ops\erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3673578Z copying torch\include\ATen\ops\erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3680338Z copying torch\include\ATen\ops\exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3686970Z copying torch\include\ATen\ops\exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3694060Z copying torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3700987Z copying torch\include\ATen\ops\exp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3708502Z copying torch\include\ATen\ops\exp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3715844Z copying torch\include\ATen\ops\exp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3722858Z copying torch\include\ATen\ops\exp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3729694Z copying torch\include\ATen\ops\exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3736777Z copying torch\include\ATen\ops\exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3743718Z copying torch\include\ATen\ops\expand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3750564Z copying torch\include\ATen\ops\expand_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3758071Z copying torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3765268Z copying torch\include\ATen\ops\expand_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3772051Z copying torch\include\ATen\ops\expand_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3779681Z copying torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3786755Z copying torch\include\ATen\ops\expand_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3794552Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3802133Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3809464Z copying torch\include\ATen\ops\expand_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3816996Z copying torch\include\ATen\ops\expand_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3824652Z copying torch\include\ATen\ops\expand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3831350Z copying torch\include\ATen\ops\expand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3838611Z copying torch\include\ATen\ops\expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3845932Z copying torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3853015Z copying torch\include\ATen\ops\expm1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3860172Z copying torch\include\ATen\ops\expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3867630Z copying torch\include\ATen\ops\expm1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3874795Z copying torch\include\ATen\ops\expm1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3882287Z copying torch\include\ATen\ops\expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3889799Z copying torch\include\ATen\ops\expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3897461Z copying torch\include\ATen\ops\exponential.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3905652Z copying torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3913550Z copying torch\include\ATen\ops\exponential_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3921981Z copying torch\include\ATen\ops\exponential_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3930134Z copying torch\include\ATen\ops\exponential_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3937667Z copying torch\include\ATen\ops\exponential_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3945309Z copying torch\include\ATen\ops\exponential_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3953081Z copying torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3960131Z copying torch\include\ATen\ops\exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3967489Z copying torch\include\ATen\ops\exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3974324Z copying torch\include\ATen\ops\exp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3981132Z copying torch\include\ATen\ops\exp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3988461Z copying torch\include\ATen\ops\exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.3995466Z copying torch\include\ATen\ops\exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4002341Z copying torch\include\ATen\ops\eye.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4009555Z copying torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4016618Z copying torch\include\ATen\ops\eye_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4023806Z copying torch\include\ATen\ops\eye_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4031270Z copying torch\include\ATen\ops\eye_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4038676Z copying torch\include\ATen\ops\eye_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4045727Z copying torch\include\ATen\ops\eye_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4052757Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4060164Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4067669Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4075367Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4082975Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4090295Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4098355Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4107365Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4115521Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4123145Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4131132Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4139855Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4147200Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4155304Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4162983Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4170558Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4178339Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4186818Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4194494Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4203669Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4210974Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4217931Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4226025Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4235326Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4243442Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4252116Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4259845Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4267898Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4276436Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4284788Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4317274Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4325974Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4333712Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4341532Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4350215Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4358192Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4365757Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4374400Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4382956Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4391203Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4398963Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4418446Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4419429Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4424584Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4431697Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4439486Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4447199Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4454996Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4462453Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4470793Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4478721Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4486004Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4493467Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4501485Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4508699Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4516401Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4524056Z copying torch\include\ATen\ops\feature_alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4531721Z copying torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4538826Z copying torch\include\ATen\ops\feature_alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4546474Z copying torch\include\ATen\ops\feature_alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4554351Z copying torch\include\ATen\ops\feature_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4561873Z copying torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4569604Z copying torch\include\ATen\ops\feature_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4577396Z copying torch\include\ATen\ops\feature_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4584511Z copying torch\include\ATen\ops\fft_fft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4591668Z copying torch\include\ATen\ops\fft_fft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4599596Z copying torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4606899Z copying torch\include\ATen\ops\fft_fft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4614172Z copying torch\include\ATen\ops\fft_fft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4621974Z copying torch\include\ATen\ops\fft_fftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4629745Z copying torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4645937Z copying torch\include\ATen\ops\fft_fftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4648700Z copying torch\include\ATen\ops\fft_fftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4656516Z copying torch\include\ATen\ops\fft_fftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4664231Z copying torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4671593Z copying torch\include\ATen\ops\fft_fftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4680025Z copying torch\include\ATen\ops\fft_fftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4687900Z copying torch\include\ATen\ops\fft_fftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4695779Z copying torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4704089Z copying torch\include\ATen\ops\fft_fftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4712917Z copying torch\include\ATen\ops\fft_fftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4719931Z copying torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4731984Z copying torch\include\ATen\ops\fft_fft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4740037Z copying torch\include\ATen\ops\fft_fft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4747606Z copying torch\include\ATen\ops\fft_hfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4755617Z copying torch\include\ATen\ops\fft_hfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4763126Z copying torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4770962Z copying torch\include\ATen\ops\fft_hfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4779056Z copying torch\include\ATen\ops\fft_hfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4786418Z copying torch\include\ATen\ops\fft_hfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4794208Z copying torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4801592Z copying torch\include\ATen\ops\fft_hfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4809447Z copying torch\include\ATen\ops\fft_hfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4817214Z copying torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4825415Z copying torch\include\ATen\ops\fft_hfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4833403Z copying torch\include\ATen\ops\fft_hfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4842025Z copying torch\include\ATen\ops\fft_ifft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4849102Z copying torch\include\ATen\ops\fft_ifft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4856802Z copying torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4864859Z copying torch\include\ATen\ops\fft_ifft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4871772Z copying torch\include\ATen\ops\fft_ifft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4879144Z copying torch\include\ATen\ops\fft_ifftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4886573Z copying torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4894416Z copying torch\include\ATen\ops\fft_ifftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4902219Z copying torch\include\ATen\ops\fft_ifftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4909243Z copying torch\include\ATen\ops\fft_ifftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4916819Z copying torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4924494Z copying torch\include\ATen\ops\fft_ifftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4931626Z copying torch\include\ATen\ops\fft_ifftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4939043Z copying torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4947301Z copying torch\include\ATen\ops\fft_ifft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4954559Z copying torch\include\ATen\ops\fft_ifft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4961899Z copying torch\include\ATen\ops\fft_ihfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4968831Z copying torch\include\ATen\ops\fft_ihfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4976532Z copying torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4983635Z copying torch\include\ATen\ops\fft_ihfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4990954Z copying torch\include\ATen\ops\fft_ihfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.4998362Z copying torch\include\ATen\ops\fft_ihfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5006503Z copying torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5013802Z copying torch\include\ATen\ops\fft_ihfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5021850Z copying torch\include\ATen\ops\fft_ihfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5030060Z copying torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5037806Z copying torch\include\ATen\ops\fft_ihfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5044753Z copying torch\include\ATen\ops\fft_ihfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5051869Z copying torch\include\ATen\ops\fft_irfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5058944Z copying torch\include\ATen\ops\fft_irfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5066534Z copying torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5073430Z copying torch\include\ATen\ops\fft_irfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5081177Z copying torch\include\ATen\ops\fft_irfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5088118Z copying torch\include\ATen\ops\fft_irfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5095549Z copying torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5102553Z copying torch\include\ATen\ops\fft_irfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5110498Z copying torch\include\ATen\ops\fft_irfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5957144Z copying torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5964590Z copying torch\include\ATen\ops\fft_irfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5971829Z copying torch\include\ATen\ops\fft_irfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5978882Z copying torch\include\ATen\ops\fft_rfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5985586Z copying torch\include\ATen\ops\fft_rfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.5993239Z copying torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6000298Z copying torch\include\ATen\ops\fft_rfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6007516Z copying torch\include\ATen\ops\fft_rfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6014647Z copying torch\include\ATen\ops\fft_rfftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6021973Z copying torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6029578Z copying torch\include\ATen\ops\fft_rfftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6036712Z copying torch\include\ATen\ops\fft_rfftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6043568Z copying torch\include\ATen\ops\fft_rfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6052520Z copying torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6067557Z copying torch\include\ATen\ops\fft_rfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6068337Z copying torch\include\ATen\ops\fft_rfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6075359Z copying torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6082563Z copying torch\include\ATen\ops\fft_rfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6089864Z copying torch\include\ATen\ops\fft_rfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6097136Z copying torch\include\ATen\ops\fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6104311Z copying torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6111271Z copying torch\include\ATen\ops\fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6119066Z copying torch\include\ATen\ops\fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6126353Z copying torch\include\ATen\ops\fill_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6133823Z copying torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6140819Z copying torch\include\ATen\ops\fill_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6147585Z copying torch\include\ATen\ops\fill_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6155187Z copying torch\include\ATen\ops\fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6162228Z copying torch\include\ATen\ops\fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6169706Z copying torch\include\ATen\ops\fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6176588Z copying torch\include\ATen\ops\fix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6183622Z copying torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6190850Z copying torch\include\ATen\ops\fix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6198133Z copying torch\include\ATen\ops\fix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6205278Z copying torch\include\ATen\ops\flatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6212529Z copying torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6219568Z copying torch\include\ATen\ops\flatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6227800Z copying torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6234962Z copying torch\include\ATen\ops\flatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6242005Z copying torch\include\ATen\ops\flatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6290902Z copying torch\include\ATen\ops\flatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6298216Z copying torch\include\ATen\ops\flatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6305512Z copying torch\include\ATen\ops\flip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6313018Z copying torch\include\ATen\ops\fliplr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6319861Z copying torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6327396Z copying torch\include\ATen\ops\fliplr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6334487Z copying torch\include\ATen\ops\fliplr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6341618Z copying torch\include\ATen\ops\flipud.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6348644Z copying torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6355964Z copying torch\include\ATen\ops\flipud_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6363075Z copying torch\include\ATen\ops\flipud_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6370623Z copying torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6378091Z copying torch\include\ATen\ops\flip_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6385484Z copying torch\include\ATen\ops\flip_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6392771Z copying torch\include\ATen\ops\flip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6400953Z copying torch\include\ATen\ops\flip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6407945Z copying torch\include\ATen\ops\float_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6415545Z copying torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6422850Z copying torch\include\ATen\ops\float_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6431305Z copying torch\include\ATen\ops\float_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6439533Z copying torch\include\ATen\ops\floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6451597Z copying torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6458656Z copying torch\include\ATen\ops\floor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6466017Z copying torch\include\ATen\ops\floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6473346Z copying torch\include\ATen\ops\floor_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6481060Z copying torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6488021Z copying torch\include\ATen\ops\floor_divide_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6495544Z copying torch\include\ATen\ops\floor_divide_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6502580Z copying torch\include\ATen\ops\floor_divide_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6509817Z copying torch\include\ATen\ops\floor_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6517022Z copying torch\include\ATen\ops\floor_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6524250Z copying torch\include\ATen\ops\floor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6531119Z copying torch\include\ATen\ops\floor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6538095Z copying torch\include\ATen\ops\floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6544999Z copying torch\include\ATen\ops\floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6552294Z copying torch\include\ATen\ops\fmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6559827Z copying torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6566856Z copying torch\include\ATen\ops\fmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6573951Z copying torch\include\ATen\ops\fmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6581116Z copying torch\include\ATen\ops\fmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6587976Z copying torch\include\ATen\ops\fmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6594769Z copying torch\include\ATen\ops\fmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6602040Z copying torch\include\ATen\ops\fmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6609002Z copying torch\include\ATen\ops\fmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6616035Z copying torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6622996Z copying torch\include\ATen\ops\fmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6630033Z copying torch\include\ATen\ops\fmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6637196Z copying torch\include\ATen\ops\fmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6660248Z copying torch\include\ATen\ops\fmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6667159Z copying torch\include\ATen\ops\fmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6674344Z copying torch\include\ATen\ops\fmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6681365Z copying torch\include\ATen\ops\fmod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6688481Z copying torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6695553Z copying torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6702385Z copying torch\include\ATen\ops\fmod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6709573Z copying torch\include\ATen\ops\fmod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6716598Z copying torch\include\ATen\ops\fmod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6723427Z copying torch\include\ATen\ops\fmod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6730966Z copying torch\include\ATen\ops\fmod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6737959Z copying torch\include\ATen\ops\fmod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6744771Z copying torch\include\ATen\ops\frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6751922Z copying torch\include\ATen\ops\fractional_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6759122Z copying torch\include\ATen\ops\fractional_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6766941Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6774288Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6781808Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6789336Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6797022Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6804472Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6812446Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6820556Z copying torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6834374Z copying torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6842225Z copying torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6849735Z copying torch\include\ATen\ops\fractional_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6857732Z copying torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6864755Z copying torch\include\ATen\ops\fractional_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6872286Z copying torch\include\ATen\ops\fractional_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6880170Z copying torch\include\ATen\ops\fractional_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6887727Z copying torch\include\ATen\ops\fractional_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6895172Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6902556Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6910141Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6918224Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6927629Z copying torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6935915Z copying torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6943967Z copying torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6951485Z copying torch\include\ATen\ops\fractional_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6959579Z copying torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6966832Z copying torch\include\ATen\ops\fractional_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6974546Z copying torch\include\ATen\ops\fractional_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6982079Z copying torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6989105Z copying torch\include\ATen\ops\frac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.6996322Z copying torch\include\ATen\ops\frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7003322Z copying torch\include\ATen\ops\frac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7010493Z copying torch\include\ATen\ops\frac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7017507Z copying torch\include\ATen\ops\frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7024517Z copying torch\include\ATen\ops\frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7031322Z copying torch\include\ATen\ops\frexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7038381Z copying torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7045169Z copying torch\include\ATen\ops\frexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7052231Z copying torch\include\ATen\ops\frexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7059187Z copying torch\include\ATen\ops\frexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7066537Z copying torch\include\ATen\ops\frexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7082907Z copying torch\include\ATen\ops\frobenius_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7083994Z copying torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7143235Z copying torch\include\ATen\ops\frobenius_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7343423Z copying torch\include\ATen\ops\frobenius_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7350454Z copying torch\include\ATen\ops\from_blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7357981Z copying torch\include\ATen\ops\from_file.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7368311Z copying torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7376128Z copying torch\include\ATen\ops\from_file_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7383246Z copying torch\include\ATen\ops\from_file_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7391388Z copying torch\include\ATen\ops\from_file_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7398749Z copying torch\include\ATen\ops\full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7405934Z copying torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7414287Z copying torch\include\ATen\ops\full_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7421764Z copying torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7429636Z copying torch\include\ATen\ops\full_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7437242Z copying torch\include\ATen\ops\full_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7444554Z copying torch\include\ATen\ops\full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7451587Z copying torch\include\ATen\ops\full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7458708Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7466332Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7480095Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7487701Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7494802Z copying torch\include\ATen\ops\gather.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7501533Z copying torch\include\ATen\ops\gather_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7508843Z copying torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7516176Z copying torch\include\ATen\ops\gather_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7523217Z copying torch\include\ATen\ops\gather_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7530615Z copying torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7538044Z copying torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7545134Z copying torch\include\ATen\ops\gather_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7552156Z copying torch\include\ATen\ops\gather_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7559369Z copying torch\include\ATen\ops\gather_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7566618Z copying torch\include\ATen\ops\gather_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7573897Z copying torch\include\ATen\ops\gather_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7581315Z copying torch\include\ATen\ops\gather_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7588555Z copying torch\include\ATen\ops\gcd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7596022Z copying torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7602976Z copying torch\include\ATen\ops\gcd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7610201Z copying torch\include\ATen\ops\gcd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7617582Z copying torch\include\ATen\ops\gcd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7624312Z copying torch\include\ATen\ops\gcd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7631458Z copying torch\include\ATen\ops\gcd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7638659Z copying torch\include\ATen\ops\gcd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7645967Z copying torch\include\ATen\ops\ge.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7652761Z copying torch\include\ATen\ops\gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7659651Z copying torch\include\ATen\ops\gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7667397Z copying torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7674402Z copying torch\include\ATen\ops\gelu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7681645Z copying torch\include\ATen\ops\gelu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7688708Z copying torch\include\ATen\ops\gelu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7696414Z copying torch\include\ATen\ops\gelu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7703551Z copying torch\include\ATen\ops\gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7710744Z copying torch\include\ATen\ops\gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7718337Z copying torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7725310Z copying torch\include\ATen\ops\gelu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7732544Z copying torch\include\ATen\ops\gelu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7739641Z copying torch\include\ATen\ops\gelu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7746905Z copying torch\include\ATen\ops\gelu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7754139Z copying torch\include\ATen\ops\gelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7761354Z copying torch\include\ATen\ops\gelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7768189Z copying torch\include\ATen\ops\geometric.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7775511Z copying torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7782526Z copying torch\include\ATen\ops\geometric_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7789896Z copying torch\include\ATen\ops\geometric_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7797191Z copying torch\include\ATen\ops\geometric_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7804570Z copying torch\include\ATen\ops\geometric_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7811801Z copying torch\include\ATen\ops\geometric_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7819124Z copying torch\include\ATen\ops\geqrf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7826004Z copying torch\include\ATen\ops\geqrf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7834198Z copying torch\include\ATen\ops\geqrf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7841995Z copying torch\include\ATen\ops\geqrf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7849116Z copying torch\include\ATen\ops\geqrf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7856247Z copying torch\include\ATen\ops\ger.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7863365Z copying torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7870735Z copying torch\include\ATen\ops\ger_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7877986Z copying torch\include\ATen\ops\ger_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7893717Z copying torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7900437Z copying torch\include\ATen\ops\ge_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7907675Z copying torch\include\ATen\ops\ge_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7915570Z copying torch\include\ATen\ops\ge_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7922678Z copying torch\include\ATen\ops\ge_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7930690Z copying torch\include\ATen\ops\ge_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7938028Z copying torch\include\ATen\ops\ge_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7944805Z copying torch\include\ATen\ops\glu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7951838Z copying torch\include\ATen\ops\glu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7959482Z copying torch\include\ATen\ops\glu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7966760Z copying torch\include\ATen\ops\glu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7973733Z copying torch\include\ATen\ops\glu_backward_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7981135Z copying torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7988685Z copying torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.7995837Z copying torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8002982Z copying torch\include\ATen\ops\glu_backward_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8009871Z copying torch\include\ATen\ops\glu_backward_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8017137Z copying torch\include\ATen\ops\glu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8024298Z copying torch\include\ATen\ops\glu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8031752Z copying torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8038850Z copying torch\include\ATen\ops\glu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8045835Z copying torch\include\ATen\ops\glu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8058011Z copying torch\include\ATen\ops\glu_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8065071Z copying torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8072157Z copying torch\include\ATen\ops\glu_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8079350Z copying torch\include\ATen\ops\glu_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8086371Z copying torch\include\ATen\ops\glu_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8093629Z copying torch\include\ATen\ops\glu_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8100551Z copying torch\include\ATen\ops\glu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8107188Z copying torch\include\ATen\ops\glu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8114029Z copying torch\include\ATen\ops\glu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8121173Z copying torch\include\ATen\ops\glu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8127826Z copying torch\include\ATen\ops\gradient.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8134875Z copying torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8142297Z copying torch\include\ATen\ops\gradient_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8148911Z copying torch\include\ATen\ops\gradient_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8156191Z copying torch\include\ATen\ops\greater.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8200067Z copying torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8206886Z copying torch\include\ATen\ops\greater_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8214227Z copying torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8221107Z copying torch\include\ATen\ops\greater_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8228238Z copying torch\include\ATen\ops\greater_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8235395Z copying torch\include\ATen\ops\greater_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8243541Z copying torch\include\ATen\ops\greater_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8250602Z copying torch\include\ATen\ops\grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8257728Z copying torch\include\ATen\ops\grid_sampler_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8264933Z copying torch\include\ATen\ops\grid_sampler_2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8272562Z copying torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8279910Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8309523Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8317007Z copying torch\include\ATen\ops\grid_sampler_2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8325124Z copying torch\include\ATen\ops\grid_sampler_2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8332538Z copying torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8339967Z copying torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8347201Z copying torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8354449Z copying torch\include\ATen\ops\grid_sampler_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8362176Z copying torch\include\ATen\ops\grid_sampler_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8369555Z copying torch\include\ATen\ops\grid_sampler_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8376824Z copying torch\include\ATen\ops\grid_sampler_3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8384605Z copying torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8392068Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8399672Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8407377Z copying torch\include\ATen\ops\grid_sampler_3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8414730Z copying torch\include\ATen\ops\grid_sampler_3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8422265Z copying torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8429783Z copying torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8437925Z copying torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8446217Z copying torch\include\ATen\ops\grid_sampler_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8454367Z copying torch\include\ATen\ops\grid_sampler_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8462676Z copying torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8469997Z copying torch\include\ATen\ops\grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8477485Z copying torch\include\ATen\ops\grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8484808Z copying torch\include\ATen\ops\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8492170Z copying torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8499294Z copying torch\include\ATen\ops\group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8506581Z copying torch\include\ATen\ops\group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8513698Z copying torch\include\ATen\ops\gru.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8520582Z copying torch\include\ATen\ops\gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8527597Z copying torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8535050Z copying torch\include\ATen\ops\gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8542195Z copying torch\include\ATen\ops\gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8549315Z copying torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8556269Z copying torch\include\ATen\ops\gru_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8563205Z copying torch\include\ATen\ops\gru_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8569915Z copying torch\include\ATen\ops\gt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8576999Z copying torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8583898Z copying torch\include\ATen\ops\gt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8590882Z copying torch\include\ATen\ops\gt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8598323Z copying torch\include\ATen\ops\gt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8605169Z copying torch\include\ATen\ops\gt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8612433Z copying torch\include\ATen\ops\gt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8619101Z copying torch\include\ATen\ops\gt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8626067Z copying torch\include\ATen\ops\hamming_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8633374Z copying torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8640743Z copying torch\include\ATen\ops\hamming_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8647388Z copying torch\include\ATen\ops\hamming_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8654459Z copying torch\include\ATen\ops\hann_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8661757Z copying torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8669018Z copying torch\include\ATen\ops\hann_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8676223Z copying torch\include\ATen\ops\hann_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8683227Z copying torch\include\ATen\ops\hardshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8690261Z copying torch\include\ATen\ops\hardshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8697864Z copying torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8709179Z copying torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8716470Z copying torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8723827Z copying torch\include\ATen\ops\hardshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8731143Z copying torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8738699Z copying torch\include\ATen\ops\hardshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8746203Z copying torch\include\ATen\ops\hardshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8753826Z copying torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8761211Z copying torch\include\ATen\ops\hardshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8768362Z copying torch\include\ATen\ops\hardshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8775923Z copying torch\include\ATen\ops\hardshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8783115Z copying torch\include\ATen\ops\hardshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8790827Z copying torch\include\ATen\ops\hardshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8798297Z copying torch\include\ATen\ops\hardshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8805626Z copying torch\include\ATen\ops\hardsigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8813259Z copying torch\include\ATen\ops\hardsigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8821229Z copying torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8828694Z copying torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8836077Z copying torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8843384Z copying torch\include\ATen\ops\hardsigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8850810Z copying torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8858149Z copying torch\include\ATen\ops\hardsigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8865478Z copying torch\include\ATen\ops\hardsigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8873899Z copying torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8880897Z copying torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8888238Z copying torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8895511Z copying torch\include\ATen\ops\hardsigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8902578Z copying torch\include\ATen\ops\hardsigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8909986Z copying torch\include\ATen\ops\hardsigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8917737Z copying torch\include\ATen\ops\hardsigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8925231Z copying torch\include\ATen\ops\hardswish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8933254Z copying torch\include\ATen\ops\hardswish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8941523Z copying torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8949542Z copying torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8961417Z copying torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8968728Z copying torch\include\ATen\ops\hardswish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8976286Z copying torch\include\ATen\ops\hardswish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8983713Z copying torch\include\ATen\ops\hardswish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8990862Z copying torch\include\ATen\ops\hardswish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.8998319Z copying torch\include\ATen\ops\hardswish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9005432Z copying torch\include\ATen\ops\hardswish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9012645Z copying torch\include\ATen\ops\hardswish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9019767Z copying torch\include\ATen\ops\hardtanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9026623Z copying torch\include\ATen\ops\hardtanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9034396Z copying torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9041462Z copying torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9048844Z copying torch\include\ATen\ops\hardtanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9055584Z copying torch\include\ATen\ops\hardtanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9062697Z copying torch\include\ATen\ops\hardtanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9069752Z copying torch\include\ATen\ops\hardtanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9076995Z copying torch\include\ATen\ops\hardtanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9084800Z copying torch\include\ATen\ops\hardtanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9091958Z copying torch\include\ATen\ops\hardtanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9098915Z copying torch\include\ATen\ops\heaviside.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9106589Z copying torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9142107Z copying torch\include\ATen\ops\heaviside_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9149160Z copying torch\include\ATen\ops\heaviside_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9156320Z copying torch\include\ATen\ops\heaviside_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9163653Z copying torch\include\ATen\ops\heaviside_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9170773Z copying torch\include\ATen\ops\heaviside_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9177862Z copying torch\include\ATen\ops\heaviside_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9185019Z copying torch\include\ATen\ops\hinge_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9192631Z copying torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9199791Z copying torch\include\ATen\ops\hinge_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9229603Z copying torch\include\ATen\ops\hinge_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9236841Z copying torch\include\ATen\ops\histc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9243617Z copying torch\include\ATen\ops\histc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9250563Z copying torch\include\ATen\ops\histc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9257480Z copying torch\include\ATen\ops\histc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9264529Z copying torch\include\ATen\ops\histc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9271509Z copying torch\include\ATen\ops\histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9278613Z copying torch\include\ATen\ops\histogramdd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9285950Z copying torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9293729Z copying torch\include\ATen\ops\histogramdd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9332528Z copying torch\include\ATen\ops\histogramdd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9339789Z copying torch\include\ATen\ops\histogram_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9347093Z copying torch\include\ATen\ops\histogram_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9354510Z copying torch\include\ATen\ops\histogram_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9361565Z copying torch\include\ATen\ops\hsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9368854Z copying torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9379730Z copying torch\include\ATen\ops\hsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9386975Z copying torch\include\ATen\ops\hsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9394055Z copying torch\include\ATen\ops\hspmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9401056Z copying torch\include\ATen\ops\hspmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9408267Z copying torch\include\ATen\ops\hspmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9415520Z copying torch\include\ATen\ops\hstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9422606Z copying torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9429660Z copying torch\include\ATen\ops\hstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9437268Z copying torch\include\ATen\ops\hstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9445382Z copying torch\include\ATen\ops\huber_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9452899Z copying torch\include\ATen\ops\huber_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9474691Z copying torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9475959Z copying torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9476896Z copying torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9484505Z copying torch\include\ATen\ops\huber_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9491765Z copying torch\include\ATen\ops\huber_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9499072Z copying torch\include\ATen\ops\huber_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9506423Z copying torch\include\ATen\ops\huber_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9513392Z copying torch\include\ATen\ops\huber_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9520765Z copying torch\include\ATen\ops\huber_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9527783Z copying torch\include\ATen\ops\hypot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9534912Z copying torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9542011Z copying torch\include\ATen\ops\hypot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9549185Z copying torch\include\ATen\ops\hypot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9556680Z copying torch\include\ATen\ops\hypot_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9563653Z copying torch\include\ATen\ops\hypot_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9570573Z copying torch\include\ATen\ops\hypot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9577690Z copying torch\include\ATen\ops\hypot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9584596Z copying torch\include\ATen\ops\i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9591866Z copying torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9598692Z copying torch\include\ATen\ops\i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9605888Z copying torch\include\ATen\ops\i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9613336Z copying torch\include\ATen\ops\i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9619584Z copying torch\include\ATen\ops\i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9626682Z copying torch\include\ATen\ops\i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9633331Z copying torch\include\ATen\ops\i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9640106Z copying torch\include\ATen\ops\igamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9646738Z copying torch\include\ATen\ops\igammac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9653853Z copying torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9661088Z copying torch\include\ATen\ops\igammac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9668360Z copying torch\include\ATen\ops\igammac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9675574Z copying torch\include\ATen\ops\igammac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9682594Z copying torch\include\ATen\ops\igammac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9689710Z copying torch\include\ATen\ops\igammac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9696742Z copying torch\include\ATen\ops\igammac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9704105Z copying torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9711257Z copying torch\include\ATen\ops\igamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9719155Z copying torch\include\ATen\ops\igamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9726345Z copying torch\include\ATen\ops\igamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9733706Z copying torch\include\ATen\ops\igamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9741284Z copying torch\include\ATen\ops\igamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9748254Z copying torch\include\ATen\ops\igamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9755629Z copying torch\include\ATen\ops\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9763130Z copying torch\include\ATen\ops\im2col_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9770064Z copying torch\include\ATen\ops\im2col_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9777453Z copying torch\include\ATen\ops\im2col_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9784552Z copying torch\include\ATen\ops\im2col_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9791646Z copying torch\include\ATen\ops\imag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9798964Z copying torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9805988Z copying torch\include\ATen\ops\imag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9812929Z copying torch\include\ATen\ops\imag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9819695Z copying torch\include\ATen\ops\index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9826739Z copying torch\include\ATen\ops\index_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9834333Z copying torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9842988Z copying torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9850198Z copying torch\include\ATen\ops\index_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9857523Z copying torch\include\ATen\ops\index_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9864804Z copying torch\include\ATen\ops\index_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9872098Z copying torch\include\ATen\ops\index_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9880200Z copying torch\include\ATen\ops\index_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9887708Z copying torch\include\ATen\ops\index_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9895659Z copying torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9902895Z copying torch\include\ATen\ops\index_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9910511Z copying torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9946827Z copying torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:43.9992279Z copying torch\include\ATen\ops\index_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0010392Z copying torch\include\ATen\ops\index_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0018504Z copying torch\include\ATen\ops\index_copy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0026658Z copying torch\include\ATen\ops\index_copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0034744Z copying torch\include\ATen\ops\index_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0043063Z copying torch\include\ATen\ops\index_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0050429Z copying torch\include\ATen\ops\index_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0058073Z copying torch\include\ATen\ops\index_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0065413Z copying torch\include\ATen\ops\index_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0073147Z copying torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0081218Z copying torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0088032Z copying torch\include\ATen\ops\index_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0095271Z copying torch\include\ATen\ops\index_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0107687Z copying torch\include\ATen\ops\index_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0115044Z copying torch\include\ATen\ops\index_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0122261Z copying torch\include\ATen\ops\index_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0129872Z copying torch\include\ATen\ops\index_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0137051Z copying torch\include\ATen\ops\index_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0144097Z copying torch\include\ATen\ops\index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0152540Z copying torch\include\ATen\ops\index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0159689Z copying torch\include\ATen\ops\index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0167090Z copying torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0174057Z copying torch\include\ATen\ops\index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0181704Z copying torch\include\ATen\ops\index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0189686Z copying torch\include\ATen\ops\index_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0197024Z copying torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0204914Z copying torch\include\ATen\ops\index_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0212278Z copying torch\include\ATen\ops\index_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0219406Z copying torch\include\ATen\ops\index_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0226573Z copying torch\include\ATen\ops\index_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0233707Z copying torch\include\ATen\ops\index_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0242270Z copying torch\include\ATen\ops\index_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0249564Z copying torch\include\ATen\ops\index_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0256885Z copying torch\include\ATen\ops\index_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0264681Z copying torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0271981Z copying torch\include\ATen\ops\index_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0392524Z copying torch\include\ATen\ops\index_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0401087Z copying torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0438766Z copying torch\include\ATen\ops\index_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0446885Z copying torch\include\ATen\ops\index_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0455157Z copying torch\include\ATen\ops\index_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0468329Z copying torch\include\ATen\ops\index_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0476042Z copying torch\include\ATen\ops\indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0483478Z copying torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0490907Z copying torch\include\ATen\ops\indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0498938Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0506473Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0513562Z copying torch\include\ATen\ops\indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0521051Z copying torch\include\ATen\ops\indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0531857Z copying torch\include\ATen\ops\indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0538878Z copying torch\include\ATen\ops\indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0546023Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0553790Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0565209Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0572471Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0579414Z copying torch\include\ATen\ops\inner.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0586454Z copying torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0593755Z copying torch\include\ATen\ops\inner_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0600985Z copying torch\include\ATen\ops\inner_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0607827Z copying torch\include\ATen\ops\instance_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0614917Z copying torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0621944Z copying torch\include\ATen\ops\instance_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0629062Z copying torch\include\ATen\ops\instance_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0636267Z copying torch\include\ATen\ops\int_repr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0643426Z copying torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0650802Z copying torch\include\ATen\ops\int_repr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0657924Z copying torch\include\ATen\ops\int_repr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0665165Z copying torch\include\ATen\ops\inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0672289Z copying torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0679459Z copying torch\include\ATen\ops\inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0686393Z copying torch\include\ATen\ops\inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0693539Z copying torch\include\ATen\ops\isclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0701128Z copying torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0708352Z copying torch\include\ATen\ops\isclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0715331Z copying torch\include\ATen\ops\isclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0723274Z copying torch\include\ATen\ops\isfinite.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0729943Z copying torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0740914Z copying torch\include\ATen\ops\isfinite_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0747839Z copying torch\include\ATen\ops\isfinite_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0755054Z copying torch\include\ATen\ops\isin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0762211Z copying torch\include\ATen\ops\isinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0769313Z copying torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0776219Z copying torch\include\ATen\ops\isinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0783286Z copying torch\include\ATen\ops\isinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0790815Z copying torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0802393Z copying torch\include\ATen\ops\isin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0809647Z copying torch\include\ATen\ops\isin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0816909Z copying torch\include\ATen\ops\isin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0824439Z copying torch\include\ATen\ops\isin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0835728Z copying torch\include\ATen\ops\isin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0843092Z copying torch\include\ATen\ops\isin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0849803Z copying torch\include\ATen\ops\isnan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0856806Z copying torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0867557Z copying torch\include\ATen\ops\isnan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0874926Z copying torch\include\ATen\ops\isnan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0882216Z copying torch\include\ATen\ops\isnan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0889519Z copying torch\include\ATen\ops\isnan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0896894Z copying torch\include\ATen\ops\isneginf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0904070Z copying torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0911267Z copying torch\include\ATen\ops\isneginf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0918609Z copying torch\include\ATen\ops\isneginf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0925751Z copying torch\include\ATen\ops\isneginf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0932845Z copying torch\include\ATen\ops\isneginf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0940319Z copying torch\include\ATen\ops\isneginf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0948315Z copying torch\include\ATen\ops\isneginf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0955880Z copying torch\include\ATen\ops\isposinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.0963636Z copying torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1003477Z copying torch\include\ATen\ops\isposinf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1010749Z copying torch\include\ATen\ops\isposinf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1017927Z copying torch\include\ATen\ops\isposinf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1026706Z copying torch\include\ATen\ops\isposinf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1033976Z copying torch\include\ATen\ops\isposinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1041354Z copying torch\include\ATen\ops\isposinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1048363Z copying torch\include\ATen\ops\isreal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1055153Z copying torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1061979Z copying torch\include\ATen\ops\isreal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1068720Z copying torch\include\ATen\ops\isreal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1083643Z copying torch\include\ATen\ops\istft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1090708Z copying torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1098346Z copying torch\include\ATen\ops\istft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1105291Z copying torch\include\ATen\ops\istft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1112240Z copying torch\include\ATen\ops\is_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1119535Z copying torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1126408Z copying torch\include\ATen\ops\is_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1133184Z copying torch\include\ATen\ops\is_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1140190Z copying torch\include\ATen\ops\is_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1147659Z copying torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1154562Z copying torch\include\ATen\ops\is_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1161438Z copying torch\include\ATen\ops\is_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1172870Z copying torch\include\ATen\ops\is_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1179654Z copying torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1186495Z copying torch\include\ATen\ops\is_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1193238Z copying torch\include\ATen\ops\is_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1200835Z copying torch\include\ATen\ops\is_distributed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1207999Z copying torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1214889Z copying torch\include\ATen\ops\is_distributed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1221726Z copying torch\include\ATen\ops\is_distributed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1228786Z copying torch\include\ATen\ops\is_floating_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1236388Z copying torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1243122Z copying torch\include\ATen\ops\is_floating_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1250069Z copying torch\include\ATen\ops\is_floating_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1257147Z copying torch\include\ATen\ops\is_inference.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1264643Z copying torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1271523Z copying torch\include\ATen\ops\is_inference_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1278528Z copying torch\include\ATen\ops\is_inference_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1285578Z copying torch\include\ATen\ops\is_leaf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1292352Z copying torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1299717Z copying torch\include\ATen\ops\is_leaf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1306609Z copying torch\include\ATen\ops\is_leaf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1318525Z copying torch\include\ATen\ops\is_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1325409Z copying torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1332512Z copying torch\include\ATen\ops\is_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1339471Z copying torch\include\ATen\ops\is_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1346608Z copying torch\include\ATen\ops\is_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1354170Z copying torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1361772Z copying torch\include\ATen\ops\is_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1368787Z copying torch\include\ATen\ops\is_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1376269Z copying torch\include\ATen\ops\is_pinned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1383400Z copying torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1390486Z copying torch\include\ATen\ops\is_pinned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1397974Z copying torch\include\ATen\ops\is_pinned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1405224Z copying torch\include\ATen\ops\is_same_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1412726Z copying torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1420055Z copying torch\include\ATen\ops\is_same_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1427635Z copying torch\include\ATen\ops\is_same_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1435604Z copying torch\include\ATen\ops\is_set_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1443279Z copying torch\include\ATen\ops\is_set_to_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1507089Z copying torch\include\ATen\ops\is_set_to_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1514122Z copying torch\include\ATen\ops\is_set_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1521230Z copying torch\include\ATen\ops\is_set_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1528339Z copying torch\include\ATen\ops\is_signed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1535542Z copying torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1542471Z copying torch\include\ATen\ops\is_signed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1549460Z copying torch\include\ATen\ops\is_signed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1556811Z copying torch\include\ATen\ops\is_vulkan_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1564116Z copying torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1571072Z copying torch\include\ATen\ops\is_vulkan_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1582989Z copying torch\include\ATen\ops\is_vulkan_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1589880Z copying torch\include\ATen\ops\item.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1596775Z copying torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1604279Z copying torch\include\ATen\ops\item_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1610944Z copying torch\include\ATen\ops\item_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1617784Z copying torch\include\ATen\ops\kaiser_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1625074Z copying torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1632229Z copying torch\include\ATen\ops\kaiser_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1639582Z copying torch\include\ATen\ops\kaiser_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1647015Z copying torch\include\ATen\ops\kl_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1654357Z copying torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1661233Z copying torch\include\ATen\ops\kl_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1672459Z copying torch\include\ATen\ops\kl_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1679585Z copying torch\include\ATen\ops\kron.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1686691Z copying torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1693791Z copying torch\include\ATen\ops\kron_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1700822Z copying torch\include\ATen\ops\kron_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1707779Z copying torch\include\ATen\ops\kthvalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1714961Z copying torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1722591Z copying torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1729516Z copying torch\include\ATen\ops\kthvalue_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1736527Z copying torch\include\ATen\ops\kthvalue_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1743595Z copying torch\include\ATen\ops\kthvalue_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1750884Z copying torch\include\ATen\ops\kthvalue_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1758308Z copying torch\include\ATen\ops\l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1765467Z copying torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1772667Z copying torch\include\ATen\ops\l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1779601Z copying torch\include\ATen\ops\l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1787046Z copying torch\include\ATen\ops\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1794465Z copying torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1801837Z copying torch\include\ATen\ops\layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1809043Z copying torch\include\ATen\ops\layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1816126Z copying torch\include\ATen\ops\lcm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1823408Z copying torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1830335Z copying torch\include\ATen\ops\lcm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1837670Z copying torch\include\ATen\ops\lcm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1850211Z copying torch\include\ATen\ops\lcm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1857155Z copying torch\include\ATen\ops\lcm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1864277Z copying torch\include\ATen\ops\lcm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1871259Z copying torch\include\ATen\ops\lcm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1878174Z copying torch\include\ATen\ops\ldexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1885174Z copying torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1892150Z copying torch\include\ATen\ops\ldexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1899899Z copying torch\include\ATen\ops\ldexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1906946Z copying torch\include\ATen\ops\le.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1913752Z copying torch\include\ATen\ops\leaky_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1921004Z copying torch\include\ATen\ops\leaky_relu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1929048Z copying torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1936967Z copying torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1944279Z copying torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1951990Z copying torch\include\ATen\ops\leaky_relu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1959681Z copying torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1967753Z copying torch\include\ATen\ops\leaky_relu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1976304Z copying torch\include\ATen\ops\leaky_relu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.1984475Z copying torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2005562Z copying torch\include\ATen\ops\leaky_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2013095Z copying torch\include\ATen\ops\leaky_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2020138Z copying torch\include\ATen\ops\leaky_relu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2028021Z copying torch\include\ATen\ops\leaky_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2035883Z copying torch\include\ATen\ops\leaky_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2047279Z copying torch\include\ATen\ops\leaky_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2054412Z copying torch\include\ATen\ops\lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2061558Z copying torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2068389Z copying torch\include\ATen\ops\lerp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2075589Z copying torch\include\ATen\ops\lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2082624Z copying torch\include\ATen\ops\lerp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2089609Z copying torch\include\ATen\ops\lerp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2105178Z copying torch\include\ATen\ops\lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2105964Z copying torch\include\ATen\ops\lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2112000Z copying torch\include\ATen\ops\less.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2124781Z copying torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2131721Z copying torch\include\ATen\ops\less_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2136754Z copying torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2159426Z copying torch\include\ATen\ops\less_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2160217Z copying torch\include\ATen\ops\less_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2161092Z copying torch\include\ATen\ops\less_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2164888Z copying torch\include\ATen\ops\less_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2172011Z copying torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2178910Z copying torch\include\ATen\ops\le_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2185854Z copying torch\include\ATen\ops\le_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2192787Z copying torch\include\ATen\ops\le_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2199629Z copying torch\include\ATen\ops\le_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2206537Z copying torch\include\ATen\ops\le_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2213758Z copying torch\include\ATen\ops\le_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2224520Z copying torch\include\ATen\ops\lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2231888Z copying torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2239430Z copying torch\include\ATen\ops\lgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2247116Z copying torch\include\ATen\ops\lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2258499Z copying torch\include\ATen\ops\lgamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2265680Z copying torch\include\ATen\ops\lgamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2272861Z copying torch\include\ATen\ops\lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2280592Z copying torch\include\ATen\ops\lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2287777Z copying torch\include\ATen\ops\lift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2295135Z copying torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2302114Z copying torch\include\ATen\ops\lift_fresh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2309560Z copying torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2321803Z copying torch\include\ATen\ops\lift_fresh_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2329699Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2337245Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2344599Z copying torch\include\ATen\ops\lift_fresh_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2356013Z copying torch\include\ATen\ops\lift_fresh_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2363286Z copying torch\include\ATen\ops\lift_fresh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2370372Z copying torch\include\ATen\ops\lift_fresh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2377723Z copying torch\include\ATen\ops\lift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2384681Z copying torch\include\ATen\ops\lift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2391758Z copying torch\include\ATen\ops\linalg_cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2399871Z copying torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2406587Z copying torch\include\ATen\ops\linalg_cholesky_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2414359Z copying torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2422124Z copying torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2429428Z copying torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2437194Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2444674Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2452447Z copying torch\include\ATen\ops\linalg_cholesky_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2460406Z copying torch\include\ATen\ops\linalg_cholesky_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2502564Z copying torch\include\ATen\ops\linalg_cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2509675Z copying torch\include\ATen\ops\linalg_cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2516874Z copying torch\include\ATen\ops\linalg_cond.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2524583Z copying torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2531602Z copying torch\include\ATen\ops\linalg_cond_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2538748Z copying torch\include\ATen\ops\linalg_cond_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2545798Z copying torch\include\ATen\ops\linalg_cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2553559Z copying torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2561114Z copying torch\include\ATen\ops\linalg_cross_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2572386Z copying torch\include\ATen\ops\linalg_cross_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2579767Z copying torch\include\ATen\ops\linalg_cross_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2587040Z copying torch\include\ATen\ops\linalg_cross_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2594218Z copying torch\include\ATen\ops\linalg_cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2605975Z copying torch\include\ATen\ops\linalg_cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2613008Z copying torch\include\ATen\ops\linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2620745Z copying torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2627761Z copying torch\include\ATen\ops\linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2639466Z copying torch\include\ATen\ops\linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2646800Z copying torch\include\ATen\ops\linalg_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2654174Z copying torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2661199Z copying torch\include\ATen\ops\linalg_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2668045Z copying torch\include\ATen\ops\linalg_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2675160Z copying torch\include\ATen\ops\linalg_eig.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2682330Z copying torch\include\ATen\ops\linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2689948Z copying torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2697189Z copying torch\include\ATen\ops\linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2704299Z copying torch\include\ATen\ops\linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2711651Z copying torch\include\ATen\ops\linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2719313Z copying torch\include\ATen\ops\linalg_eigvalsh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2727081Z copying torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2734268Z copying torch\include\ATen\ops\linalg_eigvalsh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2741874Z copying torch\include\ATen\ops\linalg_eigvalsh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2749546Z copying torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2757194Z copying torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2764446Z copying torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2771725Z copying torch\include\ATen\ops\linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2778872Z copying torch\include\ATen\ops\linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2786160Z copying torch\include\ATen\ops\linalg_eig_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2793713Z copying torch\include\ATen\ops\linalg_eig_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2801254Z copying torch\include\ATen\ops\linalg_eig_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2808505Z copying torch\include\ATen\ops\linalg_eig_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2819907Z copying torch\include\ATen\ops\linalg_householder_product.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2827365Z copying torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2835367Z copying torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2843386Z copying torch\include\ATen\ops\linalg_householder_product_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2850944Z copying torch\include\ATen\ops\linalg_householder_product_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2858191Z copying torch\include\ATen\ops\linalg_inv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2865835Z copying torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2873060Z copying torch\include\ATen\ops\linalg_inv_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2884803Z copying torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2891969Z copying torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2899504Z copying torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2906732Z copying torch\include\ATen\ops\linalg_inv_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2914191Z copying torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2921896Z copying torch\include\ATen\ops\linalg_inv_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2928781Z copying torch\include\ATen\ops\linalg_inv_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2936160Z copying torch\include\ATen\ops\linalg_inv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2943168Z copying torch\include\ATen\ops\linalg_inv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2950782Z copying torch\include\ATen\ops\linalg_ldl_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2959463Z copying torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2967119Z copying torch\include\ATen\ops\linalg_ldl_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2974882Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2982110Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2989561Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.2997063Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3008222Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3015673Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3022959Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3030228Z copying torch\include\ATen\ops\linalg_ldl_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3037772Z copying torch\include\ATen\ops\linalg_ldl_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3045287Z copying torch\include\ATen\ops\linalg_ldl_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3053241Z copying torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3081048Z copying torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3087789Z copying torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3095259Z copying torch\include\ATen\ops\linalg_ldl_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3102668Z copying torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3110027Z copying torch\include\ATen\ops\linalg_ldl_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3117596Z copying torch\include\ATen\ops\linalg_ldl_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3124717Z copying torch\include\ATen\ops\linalg_lstsq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3132359Z copying torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3139444Z copying torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3146911Z copying torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3153998Z copying torch\include\ATen\ops\linalg_lstsq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3161320Z copying torch\include\ATen\ops\linalg_lstsq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3168758Z copying torch\include\ATen\ops\linalg_lu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3176261Z copying torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3183341Z copying torch\include\ATen\ops\linalg_lu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3190572Z copying torch\include\ATen\ops\linalg_lu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3197940Z copying torch\include\ATen\ops\linalg_lu_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3209820Z copying torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3216840Z copying torch\include\ATen\ops\linalg_lu_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3224876Z copying torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3231779Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3242922Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3250241Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3257526Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3265157Z copying torch\include\ATen\ops\linalg_lu_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3273101Z copying torch\include\ATen\ops\linalg_lu_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3280824Z copying torch\include\ATen\ops\linalg_lu_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3287942Z copying torch\include\ATen\ops\linalg_lu_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3295217Z copying torch\include\ATen\ops\linalg_lu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3302468Z copying torch\include\ATen\ops\linalg_lu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3309579Z copying torch\include\ATen\ops\linalg_lu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3316828Z copying torch\include\ATen\ops\linalg_lu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3324356Z copying torch\include\ATen\ops\linalg_lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3336045Z copying torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3343140Z copying torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3350349Z copying torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3357915Z copying torch\include\ATen\ops\linalg_lu_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3364849Z copying torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3372516Z copying torch\include\ATen\ops\linalg_lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3380101Z copying torch\include\ATen\ops\linalg_lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3387451Z copying torch\include\ATen\ops\linalg_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3395185Z copying torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3402508Z copying torch\include\ATen\ops\linalg_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3410129Z copying torch\include\ATen\ops\linalg_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3417481Z copying torch\include\ATen\ops\linalg_matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3432556Z copying torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3440312Z copying torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3447957Z copying torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3455108Z copying torch\include\ATen\ops\linalg_matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3468363Z copying torch\include\ATen\ops\linalg_matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3476654Z copying torch\include\ATen\ops\linalg_matrix_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3485397Z copying torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3493642Z copying torch\include\ATen\ops\linalg_matrix_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3501710Z copying torch\include\ATen\ops\linalg_matrix_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3509460Z copying torch\include\ATen\ops\linalg_matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3517144Z copying torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3524494Z copying torch\include\ATen\ops\linalg_matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3532543Z copying torch\include\ATen\ops\linalg_matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3540019Z copying torch\include\ATen\ops\linalg_matrix_rank.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3547790Z copying torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3556155Z copying torch\include\ATen\ops\linalg_matrix_rank_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3563475Z copying torch\include\ATen\ops\linalg_matrix_rank_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3570610Z copying torch\include\ATen\ops\linalg_multi_dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3578284Z copying torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3585596Z copying torch\include\ATen\ops\linalg_multi_dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3592967Z copying torch\include\ATen\ops\linalg_multi_dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3600264Z copying torch\include\ATen\ops\linalg_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3615882Z copying torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3626116Z copying torch\include\ATen\ops\linalg_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3633286Z copying torch\include\ATen\ops\linalg_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3640877Z copying torch\include\ATen\ops\linalg_pinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3648702Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3656470Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3664146Z copying torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3671510Z copying torch\include\ATen\ops\linalg_pinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3679005Z copying torch\include\ATen\ops\linalg_pinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3687177Z copying torch\include\ATen\ops\linalg_qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3694796Z copying torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3702429Z copying torch\include\ATen\ops\linalg_qr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3709802Z copying torch\include\ATen\ops\linalg_qr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3717212Z copying torch\include\ATen\ops\linalg_qr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3725224Z copying torch\include\ATen\ops\linalg_qr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3732465Z copying torch\include\ATen\ops\linalg_qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3739669Z copying torch\include\ATen\ops\linalg_qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3746972Z copying torch\include\ATen\ops\linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3755129Z copying torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3762370Z copying torch\include\ATen\ops\linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3769607Z copying torch\include\ATen\ops\linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3776950Z copying torch\include\ATen\ops\linalg_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3784687Z copying torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3792209Z copying torch\include\ATen\ops\linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3800588Z copying torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3807593Z copying torch\include\ATen\ops\linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3814909Z copying torch\include\ATen\ops\linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3822093Z copying torch\include\ATen\ops\linalg_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3829466Z copying torch\include\ATen\ops\linalg_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3837439Z copying torch\include\ATen\ops\linalg_solve_triangular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3844840Z copying torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3852608Z copying torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3860371Z copying torch\include\ATen\ops\linalg_solve_triangular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3867726Z copying torch\include\ATen\ops\linalg_solve_triangular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3875043Z copying torch\include\ATen\ops\linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3882564Z copying torch\include\ATen\ops\linalg_svdvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3890096Z copying torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3897511Z copying torch\include\ATen\ops\linalg_svdvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3909569Z copying torch\include\ATen\ops\linalg_svdvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3917361Z copying torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3924924Z copying torch\include\ATen\ops\linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3932033Z copying torch\include\ATen\ops\linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3939395Z copying torch\include\ATen\ops\linalg_tensorinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3947008Z copying torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3954481Z copying torch\include\ATen\ops\linalg_tensorinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3962840Z copying torch\include\ATen\ops\linalg_tensorinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3970359Z copying torch\include\ATen\ops\linalg_tensorsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3977937Z copying torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3985515Z copying torch\include\ATen\ops\linalg_tensorsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.3992538Z copying torch\include\ATen\ops\linalg_tensorsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4000130Z copying torch\include\ATen\ops\linalg_vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4007779Z copying torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4015653Z copying torch\include\ATen\ops\linalg_vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4022274Z copying torch\include\ATen\ops\linalg_vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4029595Z copying torch\include\ATen\ops\linalg_vecdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4076781Z copying torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4111660Z copying torch\include\ATen\ops\linalg_vecdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4118863Z copying torch\include\ATen\ops\linalg_vecdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4126294Z copying torch\include\ATen\ops\linalg_vector_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4134255Z copying torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4141073Z copying torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4148328Z copying torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4160121Z copying torch\include\ATen\ops\linalg_vector_norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4167467Z copying torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4174862Z copying torch\include\ATen\ops\linalg_vector_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4182388Z copying torch\include\ATen\ops\linalg_vector_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4189477Z copying torch\include\ATen\ops\linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4196893Z copying torch\include\ATen\ops\linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4204355Z copying torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4211604Z copying torch\include\ATen\ops\linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4219134Z copying torch\include\ATen\ops\linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4226614Z copying torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4234171Z copying torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4241521Z copying torch\include\ATen\ops\linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4252810Z copying torch\include\ATen\ops\linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4259930Z copying torch\include\ATen\ops\linspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4267323Z copying torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4274586Z copying torch\include\ATen\ops\linspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4282250Z copying torch\include\ATen\ops\linspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4289386Z copying torch\include\ATen\ops\linspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4296690Z copying torch\include\ATen\ops\linspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4304056Z copying torch\include\ATen\ops\linspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4311462Z copying torch\include\ATen\ops\log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4318455Z copying torch\include\ATen\ops\log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4325806Z copying torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4332996Z copying torch\include\ATen\ops\log10_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4340563Z copying torch\include\ATen\ops\log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4347729Z copying torch\include\ATen\ops\log10_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4354979Z copying torch\include\ATen\ops\log10_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4362617Z copying torch\include\ATen\ops\log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4374245Z copying torch\include\ATen\ops\log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4381355Z copying torch\include\ATen\ops\log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4388564Z copying torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4395953Z copying torch\include\ATen\ops\log1p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4403162Z copying torch\include\ATen\ops\log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4410402Z copying torch\include\ATen\ops\log1p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4417625Z copying torch\include\ATen\ops\log1p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4424997Z copying torch\include\ATen\ops\log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4432314Z copying torch\include\ATen\ops\log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4440249Z copying torch\include\ATen\ops\log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4447330Z copying torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4454552Z copying torch\include\ATen\ops\log2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4461849Z copying torch\include\ATen\ops\log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4469016Z copying torch\include\ATen\ops\log2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4476733Z copying torch\include\ATen\ops\log2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4484118Z copying torch\include\ATen\ops\log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4495483Z copying torch\include\ATen\ops\log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4502556Z copying torch\include\ATen\ops\logaddexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4510030Z copying torch\include\ATen\ops\logaddexp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4517711Z copying torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4524983Z copying torch\include\ATen\ops\logaddexp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4532312Z copying torch\include\ATen\ops\logaddexp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4539360Z copying torch\include\ATen\ops\logaddexp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4546549Z copying torch\include\ATen\ops\logaddexp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4553599Z copying torch\include\ATen\ops\logaddexp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4560938Z copying torch\include\ATen\ops\logaddexp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4568507Z copying torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4608014Z copying torch\include\ATen\ops\logaddexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4615185Z copying torch\include\ATen\ops\logaddexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4622275Z copying torch\include\ATen\ops\logaddexp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4629557Z copying torch\include\ATen\ops\logaddexp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4636858Z copying torch\include\ATen\ops\logaddexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4650156Z copying torch\include\ATen\ops\logaddexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4654485Z copying torch\include\ATen\ops\logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4661993Z copying torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4669324Z copying torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4676674Z copying torch\include\ATen\ops\logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4683698Z copying torch\include\ATen\ops\logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4690838Z copying torch\include\ATen\ops\logdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4697792Z copying torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4708713Z copying torch\include\ATen\ops\logdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4715835Z copying torch\include\ATen\ops\logdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4722945Z copying torch\include\ATen\ops\logical_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4730286Z copying torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4737295Z copying torch\include\ATen\ops\logical_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4744337Z copying torch\include\ATen\ops\logical_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4751397Z copying torch\include\ATen\ops\logical_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4758728Z copying torch\include\ATen\ops\logical_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4769737Z copying torch\include\ATen\ops\logical_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4777145Z copying torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4784399Z copying torch\include\ATen\ops\logical_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4791742Z copying torch\include\ATen\ops\logical_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4799030Z copying torch\include\ATen\ops\logical_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4806285Z copying torch\include\ATen\ops\logical_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4813461Z copying torch\include\ATen\ops\logical_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4821119Z copying torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4832004Z copying torch\include\ATen\ops\logical_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4839978Z copying torch\include\ATen\ops\logical_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4847134Z copying torch\include\ATen\ops\logical_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4854271Z copying torch\include\ATen\ops\logical_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4861866Z copying torch\include\ATen\ops\logical_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4869331Z copying torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4876811Z copying torch\include\ATen\ops\logical_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4884352Z copying torch\include\ATen\ops\logical_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4891409Z copying torch\include\ATen\ops\logical_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4898471Z copying torch\include\ATen\ops\logical_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4905659Z copying torch\include\ATen\ops\logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4912569Z copying torch\include\ATen\ops\logit_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4924718Z copying torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4931767Z copying torch\include\ATen\ops\logit_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4939259Z copying torch\include\ATen\ops\logit_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4945782Z copying torch\include\ATen\ops\logit_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4953003Z copying torch\include\ATen\ops\logit_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4960782Z copying torch\include\ATen\ops\logit_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4967909Z copying torch\include\ATen\ops\logit_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4975364Z copying torch\include\ATen\ops\logit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4982875Z copying torch\include\ATen\ops\logit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4990391Z copying torch\include\ATen\ops\logit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.4997676Z copying torch\include\ATen\ops\logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5004768Z copying torch\include\ATen\ops\logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5012065Z copying torch\include\ATen\ops\logspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5019158Z copying torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5026203Z copying torch\include\ATen\ops\logspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5033674Z copying torch\include\ATen\ops\logspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5041168Z copying torch\include\ATen\ops\logspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5048455Z copying torch\include\ATen\ops\logspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5055334Z copying torch\include\ATen\ops\logspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5062510Z copying torch\include\ATen\ops\logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5074892Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5082356Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5090091Z copying torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5099424Z copying torch\include\ATen\ops\logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5106153Z copying torch\include\ATen\ops\logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5114428Z copying torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5139691Z copying torch\include\ATen\ops\log_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5149800Z copying torch\include\ATen\ops\log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5160782Z copying torch\include\ATen\ops\log_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5167535Z copying torch\include\ATen\ops\log_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5175045Z copying torch\include\ATen\ops\log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5182168Z copying torch\include\ATen\ops\log_normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5193261Z copying torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5200937Z copying torch\include\ATen\ops\log_normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5208280Z copying torch\include\ATen\ops\log_normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5215482Z copying torch\include\ATen\ops\log_normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5223038Z copying torch\include\ATen\ops\log_normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5230525Z copying torch\include\ATen\ops\log_normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5238158Z copying torch\include\ATen\ops\log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5245176Z copying torch\include\ATen\ops\log_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5252181Z copying torch\include\ATen\ops\log_sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5259661Z copying torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5266771Z copying torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5274959Z copying torch\include\ATen\ops\log_sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5286087Z copying torch\include\ATen\ops\log_sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5294072Z copying torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5304637Z copying torch\include\ATen\ops\log_sigmoid_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5312600Z copying torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5326386Z copying torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5333920Z copying torch\include\ATen\ops\log_sigmoid_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5341093Z copying torch\include\ATen\ops\log_sigmoid_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5348978Z copying torch\include\ATen\ops\log_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5360098Z copying torch\include\ATen\ops\log_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5367309Z copying torch\include\ATen\ops\log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5374674Z copying torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5382117Z copying torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5396647Z copying torch\include\ATen\ops\log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5403757Z copying torch\include\ATen\ops\log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5411170Z copying torch\include\ATen\ops\lshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5418195Z copying torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5425247Z copying torch\include\ATen\ops\lshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5432279Z copying torch\include\ATen\ops\lshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5439538Z copying torch\include\ATen\ops\lshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5446528Z copying torch\include\ATen\ops\lshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5457190Z copying torch\include\ATen\ops\lshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5464484Z copying torch\include\ATen\ops\lstm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5471330Z copying torch\include\ATen\ops\lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5478691Z copying torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5485531Z copying torch\include\ATen\ops\lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5492657Z copying torch\include\ATen\ops\lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5499895Z copying torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5506840Z copying torch\include\ATen\ops\lstm_mps_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5514198Z copying torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5521587Z copying torch\include\ATen\ops\lstm_mps_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5528622Z copying torch\include\ATen\ops\lstm_mps_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5535684Z copying torch\include\ATen\ops\lstm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5546709Z copying torch\include\ATen\ops\lstm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5553263Z copying torch\include\ATen\ops\lt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5560487Z copying torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5568209Z copying torch\include\ATen\ops\lt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5576156Z copying torch\include\ATen\ops\lt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5583660Z copying torch\include\ATen\ops\lt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5591537Z copying torch\include\ATen\ops\lt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5599458Z copying torch\include\ATen\ops\lt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5607190Z copying torch\include\ATen\ops\lt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5614763Z copying torch\include\ATen\ops\lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5622672Z copying torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5630133Z copying torch\include\ATen\ops\lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5638181Z copying torch\include\ATen\ops\lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5645762Z copying torch\include\ATen\ops\lu_unpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5653433Z copying torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5660689Z copying torch\include\ATen\ops\lu_unpack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5668459Z copying torch\include\ATen\ops\lu_unpack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5675780Z copying torch\include\ATen\ops\lu_unpack_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5683083Z copying torch\include\ATen\ops\lu_unpack_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5690400Z copying torch\include\ATen\ops\lu_unpack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5697451Z copying torch\include\ATen\ops\lu_unpack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5705295Z copying torch\include\ATen\ops\margin_ranking_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5713119Z copying torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5720826Z copying torch\include\ATen\ops\margin_ranking_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5728138Z copying torch\include\ATen\ops\margin_ranking_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5735432Z copying torch\include\ATen\ops\masked_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5742761Z copying torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5750128Z copying torch\include\ATen\ops\masked_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5761590Z copying torch\include\ATen\ops\masked_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5768788Z copying torch\include\ATen\ops\masked_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5775866Z copying torch\include\ATen\ops\masked_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5783175Z copying torch\include\ATen\ops\masked_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5794538Z copying torch\include\ATen\ops\masked_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5802955Z copying torch\include\ATen\ops\masked_scatter_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5810204Z copying torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5817587Z copying torch\include\ATen\ops\masked_scatter_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5828873Z copying torch\include\ATen\ops\masked_scatter_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5836431Z copying torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5843726Z copying torch\include\ATen\ops\masked_scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5851176Z copying torch\include\ATen\ops\masked_scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5862353Z copying torch\include\ATen\ops\masked_scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5869919Z copying torch\include\ATen\ops\masked_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5877103Z copying torch\include\ATen\ops\masked_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5884279Z copying torch\include\ATen\ops\masked_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5891816Z copying torch\include\ATen\ops\masked_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5899584Z copying torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5906822Z copying torch\include\ATen\ops\masked_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5914295Z copying torch\include\ATen\ops\masked_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5922560Z copying torch\include\ATen\ops\masked_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5930185Z copying torch\include\ATen\ops\masked_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5937494Z copying torch\include\ATen\ops\masked_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5944961Z copying torch\include\ATen\ops\masked_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5952236Z copying torch\include\ATen\ops\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5959282Z copying torch\include\ATen\ops\matmul_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5967212Z copying torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5974240Z copying torch\include\ATen\ops\matmul_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5982273Z copying torch\include\ATen\ops\matmul_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5990522Z copying torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.5998422Z copying torch\include\ATen\ops\matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6005819Z copying torch\include\ATen\ops\matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6017573Z copying torch\include\ATen\ops\matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6024682Z copying torch\include\ATen\ops\matrix_exp_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6032648Z copying torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6040312Z copying torch\include\ATen\ops\matrix_exp_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6047531Z copying torch\include\ATen\ops\matrix_exp_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6054779Z copying torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6061955Z copying torch\include\ATen\ops\matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6068681Z copying torch\include\ATen\ops\matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6076749Z copying torch\include\ATen\ops\matrix_H.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6083290Z copying torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6090280Z copying torch\include\ATen\ops\matrix_H_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6097225Z copying torch\include\ATen\ops\matrix_H_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6104257Z copying torch\include\ATen\ops\matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6111788Z copying torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6118956Z copying torch\include\ATen\ops\matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6126080Z copying torch\include\ATen\ops\matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6138888Z copying torch\include\ATen\ops\max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6145838Z copying torch\include\ATen\ops\maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6153606Z copying torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6160830Z copying torch\include\ATen\ops\maximum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6172609Z copying torch\include\ATen\ops\maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6179797Z copying torch\include\ATen\ops\maximum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6187115Z copying torch\include\ATen\ops\maximum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6194655Z copying torch\include\ATen\ops\maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6206693Z copying torch\include\ATen\ops\maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6214483Z copying torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6221663Z copying torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6229012Z copying torch\include\ATen\ops\max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6240344Z copying torch\include\ATen\ops\max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6247449Z copying torch\include\ATen\ops\max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6254780Z copying torch\include\ATen\ops\max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6261933Z copying torch\include\ATen\ops\max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6274958Z copying torch\include\ATen\ops\max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6281667Z copying torch\include\ATen\ops\max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6289189Z copying torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6296368Z copying torch\include\ATen\ops\max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6304362Z copying torch\include\ATen\ops\max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6311397Z copying torch\include\ATen\ops\max_pool1d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6319087Z copying torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6326275Z copying torch\include\ATen\ops\max_pool1d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6343696Z copying torch\include\ATen\ops\max_pool1d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6350926Z copying torch\include\ATen\ops\max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6358357Z copying torch\include\ATen\ops\max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6365982Z copying torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6373643Z copying torch\include\ATen\ops\max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6381128Z copying torch\include\ATen\ops\max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6388827Z copying torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6396195Z copying torch\include\ATen\ops\max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6407861Z copying torch\include\ATen\ops\max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6415727Z copying torch\include\ATen\ops\max_pool2d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6423023Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6431361Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6438646Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6446509Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6453846Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6461314Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6469345Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6476931Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6484526Z copying torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6491932Z copying torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6499253Z copying torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6507066Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6514474Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6521922Z copying torch\include\ATen\ops\max_pool2d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6529008Z copying torch\include\ATen\ops\max_pool2d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6536357Z copying torch\include\ATen\ops\max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6543796Z copying torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6551093Z copying torch\include\ATen\ops\max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6563400Z copying torch\include\ATen\ops\max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6570613Z copying torch\include\ATen\ops\max_pool3d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6577856Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6585276Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6593053Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6600640Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6607732Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6615057Z copying torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6622379Z copying torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6629321Z copying torch\include\ATen\ops\max_pool3d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6636881Z copying torch\include\ATen\ops\max_pool3d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6673378Z copying torch\include\ATen\ops\max_unpool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6680660Z copying torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6687710Z copying torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6694818Z copying torch\include\ATen\ops\max_unpool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6701962Z copying torch\include\ATen\ops\max_unpool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6714243Z copying torch\include\ATen\ops\max_unpool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6721693Z copying torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6728878Z copying torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6736266Z copying torch\include\ATen\ops\max_unpool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6747716Z copying torch\include\ATen\ops\max_unpool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6754782Z copying torch\include\ATen\ops\mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6762409Z copying torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6769436Z copying torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6776506Z copying torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6783451Z copying torch\include\ATen\ops\mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6790846Z copying torch\include\ATen\ops\mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6798011Z copying torch\include\ATen\ops\mean_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6809815Z copying torch\include\ATen\ops\mean_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6816815Z copying torch\include\ATen\ops\mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6823875Z copying torch\include\ATen\ops\mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6830528Z copying torch\include\ATen\ops\median.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6837911Z copying torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6845140Z copying torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6859911Z copying torch\include\ATen\ops\median_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6860806Z copying torch\include\ATen\ops\median_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6870265Z copying torch\include\ATen\ops\median_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6883814Z copying torch\include\ATen\ops\median_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6884610Z copying torch\include\ATen\ops\meshgrid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6895536Z copying torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6898909Z copying torch\include\ATen\ops\meshgrid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6906273Z copying torch\include\ATen\ops\meshgrid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6913464Z copying torch\include\ATen\ops\mH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6920502Z copying torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6927449Z copying torch\include\ATen\ops\mH_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6934294Z copying torch\include\ATen\ops\mH_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6941106Z copying torch\include\ATen\ops\min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6948045Z copying torch\include\ATen\ops\minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6955588Z copying torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6962913Z copying torch\include\ATen\ops\minimum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6970157Z copying torch\include\ATen\ops\minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6977423Z copying torch\include\ATen\ops\minimum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6985581Z copying torch\include\ATen\ops\minimum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.6993805Z copying torch\include\ATen\ops\minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7001879Z copying torch\include\ATen\ops\minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7010255Z copying torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7023707Z copying torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7031334Z copying torch\include\ATen\ops\min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7038750Z copying torch\include\ATen\ops\min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7046314Z copying torch\include\ATen\ops\min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7053723Z copying torch\include\ATen\ops\min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7060653Z copying torch\include\ATen\ops\min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7067875Z copying torch\include\ATen\ops\min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7075095Z copying torch\include\ATen\ops\miopen_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7087072Z copying torch\include\ATen\ops\miopen_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7094519Z copying torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7101714Z copying torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7109041Z copying torch\include\ATen\ops\miopen_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7116682Z copying torch\include\ATen\ops\miopen_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7124268Z copying torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7131627Z copying torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7138698Z copying torch\include\ATen\ops\miopen_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7149936Z copying torch\include\ATen\ops\miopen_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7157173Z copying torch\include\ATen\ops\miopen_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7164386Z copying torch\include\ATen\ops\miopen_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7171824Z copying torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7179564Z copying torch\include\ATen\ops\miopen_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7186553Z copying torch\include\ATen\ops\miopen_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7194001Z copying torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7201549Z copying torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7208702Z copying torch\include\ATen\ops\miopen_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7215939Z copying torch\include\ATen\ops\miopen_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7223431Z copying torch\include\ATen\ops\miopen_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7230875Z copying torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7242252Z copying torch\include\ATen\ops\miopen_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7249480Z copying torch\include\ATen\ops\miopen_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7256764Z copying torch\include\ATen\ops\miopen_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7264188Z copying torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7281203Z copying torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7288824Z copying torch\include\ATen\ops\miopen_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7296297Z copying torch\include\ATen\ops\miopen_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7303948Z copying torch\include\ATen\ops\miopen_depthwise_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7311980Z copying torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7319541Z copying torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7327337Z copying torch\include\ATen\ops\miopen_depthwise_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7334917Z copying torch\include\ATen\ops\miopen_depthwise_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7342632Z copying torch\include\ATen\ops\miopen_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7349924Z copying torch\include\ATen\ops\miopen_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7357998Z copying torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7365133Z copying torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7372749Z copying torch\include\ATen\ops\miopen_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7380090Z copying torch\include\ATen\ops\miopen_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7387812Z copying torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7395247Z copying torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7402651Z copying torch\include\ATen\ops\miopen_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7410032Z copying torch\include\ATen\ops\miopen_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7417491Z copying torch\include\ATen\ops\mish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7424646Z copying torch\include\ATen\ops\mish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7432333Z copying torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7440135Z copying torch\include\ATen\ops\mish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7447365Z copying torch\include\ATen\ops\mish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7454614Z copying torch\include\ATen\ops\mish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7461897Z copying torch\include\ATen\ops\mish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7469920Z copying torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7477323Z copying torch\include\ATen\ops\mish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7484958Z copying torch\include\ATen\ops\mish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7492873Z copying torch\include\ATen\ops\mish_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7500559Z copying torch\include\ATen\ops\mish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7507738Z copying torch\include\ATen\ops\mish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7515032Z copying torch\include\ATen\ops\mish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7546862Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7554061Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7561869Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7568994Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7576137Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7584054Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7591751Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7599308Z copying torch\include\ATen\ops\mkldnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7606809Z copying torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7613947Z copying torch\include\ATen\ops\mkldnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7621058Z copying torch\include\ATen\ops\mkldnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7628529Z copying torch\include\ATen\ops\mkldnn_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7636624Z copying torch\include\ATen\ops\mkldnn_linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7644781Z copying torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7653078Z copying torch\include\ATen\ops\mkldnn_linear_backward_input.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7660785Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7668281Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7675675Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7683476Z copying torch\include\ATen\ops\mkldnn_linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7691411Z copying torch\include\ATen\ops\mkldnn_linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7699089Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7707051Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7715817Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7723904Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7731566Z copying torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7743824Z copying torch\include\ATen\ops\mkldnn_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7751582Z copying torch\include\ATen\ops\mkldnn_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7759463Z copying torch\include\ATen\ops\mkldnn_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7767203Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7775943Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7783311Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7790981Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7806264Z copying torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7814655Z copying torch\include\ATen\ops\mkldnn_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7822821Z copying torch\include\ATen\ops\mkldnn_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7830347Z copying torch\include\ATen\ops\mkldnn_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7842570Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7852063Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7859417Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7866977Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7875071Z copying torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7883080Z copying torch\include\ATen\ops\mkldnn_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7890529Z copying torch\include\ATen\ops\mkldnn_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7898628Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7906474Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7913901Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7921537Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7929291Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7937307Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7945045Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7953748Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7961268Z copying torch\include\ATen\ops\mkldnn_rnn_layer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7972880Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7980939Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7989573Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.7998144Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8005470Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8013452Z copying torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8020946Z copying torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8028913Z copying torch\include\ATen\ops\mkldnn_rnn_layer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8039672Z copying torch\include\ATen\ops\mkldnn_rnn_layer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8047969Z copying torch\include\ATen\ops\mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8055180Z copying torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8062269Z copying torch\include\ATen\ops\mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8069476Z copying torch\include\ATen\ops\mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8076759Z copying torch\include\ATen\ops\mm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8083471Z copying torch\include\ATen\ops\mm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8090952Z copying torch\include\ATen\ops\mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8101784Z copying torch\include\ATen\ops\mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8108582Z copying torch\include\ATen\ops\mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8115892Z copying torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8123142Z copying torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8131071Z copying torch\include\ATen\ops\mode_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8138661Z copying torch\include\ATen\ops\mode_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8145761Z copying torch\include\ATen\ops\mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8152862Z copying torch\include\ATen\ops\mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8161005Z copying torch\include\ATen\ops\moveaxis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8168671Z copying torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8176310Z copying torch\include\ATen\ops\moveaxis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8184992Z copying torch\include\ATen\ops\moveaxis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8193330Z copying torch\include\ATen\ops\movedim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8201644Z copying torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8208339Z copying torch\include\ATen\ops\movedim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8215303Z copying torch\include\ATen\ops\movedim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8222639Z copying torch\include\ATen\ops\mps_convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8230277Z copying torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8237438Z copying torch\include\ATen\ops\mps_convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8244708Z copying torch\include\ATen\ops\mps_convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8256109Z copying torch\include\ATen\ops\mps_convolution_transpose_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8263789Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8271187Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8278859Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8285738Z copying torch\include\ATen\ops\mse_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8292427Z copying torch\include\ATen\ops\mse_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8299671Z copying torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8307337Z copying torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8314509Z copying torch\include\ATen\ops\mse_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8321718Z copying torch\include\ATen\ops\mse_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8329689Z copying torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8336946Z copying torch\include\ATen\ops\mse_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8348786Z copying torch\include\ATen\ops\mse_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8356365Z copying torch\include\ATen\ops\mse_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8363722Z copying torch\include\ATen\ops\mse_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8371292Z copying torch\include\ATen\ops\mse_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8378527Z copying torch\include\ATen\ops\mse_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8385755Z copying torch\include\ATen\ops\msort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8392777Z copying torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8399740Z copying torch\include\ATen\ops\msort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8406795Z copying torch\include\ATen\ops\msort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8414255Z copying torch\include\ATen\ops\mT.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8421011Z copying torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8428225Z copying torch\include\ATen\ops\mT_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8434997Z copying torch\include\ATen\ops\mT_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8441783Z copying torch\include\ATen\ops\mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8449062Z copying torch\include\ATen\ops\multilabel_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8456429Z copying torch\include\ATen\ops\multilabel_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8467589Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8475084Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8482484Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8489747Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8502803Z copying torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8511208Z copying torch\include\ATen\ops\multilabel_margin_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8519230Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8526775Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8538070Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8545202Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8552641Z copying torch\include\ATen\ops\multilabel_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8559955Z copying torch\include\ATen\ops\multilabel_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8567188Z copying torch\include\ATen\ops\multinomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8574249Z copying torch\include\ATen\ops\multinomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8581691Z copying torch\include\ATen\ops\multinomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8588771Z copying torch\include\ATen\ops\multinomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8595889Z copying torch\include\ATen\ops\multinomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8603026Z copying torch\include\ATen\ops\multiply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8610123Z copying torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8617060Z copying torch\include\ATen\ops\multiply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8623725Z copying torch\include\ATen\ops\multiply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8630998Z copying torch\include\ATen\ops\multi_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8657600Z copying torch\include\ATen\ops\multi_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8664886Z copying torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8671787Z copying torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8678950Z copying torch\include\ATen\ops\multi_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8686075Z copying torch\include\ATen\ops\multi_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8693382Z copying torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8704472Z copying torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8711975Z copying torch\include\ATen\ops\multi_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8719315Z copying torch\include\ATen\ops\multi_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8759466Z copying torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8770593Z copying torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8777574Z copying torch\include\ATen\ops\mul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8784811Z copying torch\include\ATen\ops\mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8791855Z copying torch\include\ATen\ops\mul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8798848Z copying torch\include\ATen\ops\mul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8805675Z copying torch\include\ATen\ops\mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8841246Z copying torch\include\ATen\ops\mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8848110Z copying torch\include\ATen\ops\mv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8855036Z copying torch\include\ATen\ops\mvlgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8862382Z copying torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8869784Z copying torch\include\ATen\ops\mvlgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8877187Z copying torch\include\ATen\ops\mvlgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8888199Z copying torch\include\ATen\ops\mvlgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8895452Z copying torch\include\ATen\ops\mvlgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8903159Z copying torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8910236Z copying torch\include\ATen\ops\mv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8921796Z copying torch\include\ATen\ops\mv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8928519Z copying torch\include\ATen\ops\nanmean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8935768Z copying torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8942853Z copying torch\include\ATen\ops\nanmean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8950118Z copying torch\include\ATen\ops\nanmean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8957750Z copying torch\include\ATen\ops\nanmedian.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8964943Z copying torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8972203Z copying torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8979915Z copying torch\include\ATen\ops\nanmedian_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8987339Z copying torch\include\ATen\ops\nanmedian_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.8995655Z copying torch\include\ATen\ops\nanmedian_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9003726Z copying torch\include\ATen\ops\nanmedian_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9012000Z copying torch\include\ATen\ops\nanquantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9019476Z copying torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9026841Z copying torch\include\ATen\ops\nanquantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9034215Z copying torch\include\ATen\ops\nanquantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9046634Z copying torch\include\ATen\ops\nansum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9053748Z copying torch\include\ATen\ops\nansum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9061059Z copying torch\include\ATen\ops\nansum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9068808Z copying torch\include\ATen\ops\nansum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9081469Z copying torch\include\ATen\ops\nansum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9088366Z copying torch\include\ATen\ops\nan_to_num.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9095797Z copying torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9102882Z copying torch\include\ATen\ops\nan_to_num_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9109988Z copying torch\include\ATen\ops\nan_to_num_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9117414Z copying torch\include\ATen\ops\nan_to_num_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9124616Z copying torch\include\ATen\ops\nan_to_num_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9131702Z copying torch\include\ATen\ops\narrow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9138867Z copying torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9145910Z copying torch\include\ATen\ops\narrow_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9153797Z copying torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9161985Z copying torch\include\ATen\ops\narrow_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9169518Z copying torch\include\ATen\ops\narrow_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9176872Z copying torch\include\ATen\ops\narrow_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9184229Z copying torch\include\ATen\ops\narrow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9191563Z copying torch\include\ATen\ops\narrow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9202963Z copying torch\include\ATen\ops\native_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9210279Z copying torch\include\ATen\ops\native_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9217938Z copying torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9225611Z copying torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9232992Z copying torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9240466Z copying torch\include\ATen\ops\native_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9247844Z copying torch\include\ATen\ops\native_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9255200Z copying torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9266074Z copying torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9273948Z copying torch\include\ATen\ops\native_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9281387Z copying torch\include\ATen\ops\native_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9288792Z copying torch\include\ATen\ops\native_channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9299999Z copying torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9307494Z copying torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9314984Z copying torch\include\ATen\ops\native_channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9322544Z copying torch\include\ATen\ops\native_channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9330199Z copying torch\include\ATen\ops\native_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9337437Z copying torch\include\ATen\ops\native_dropout_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9345625Z copying torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9353155Z copying torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9364872Z copying torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9372729Z copying torch\include\ATen\ops\native_dropout_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9380150Z copying torch\include\ATen\ops\native_dropout_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9387772Z copying torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9399457Z copying torch\include\ATen\ops\native_dropout_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9406751Z copying torch\include\ATen\ops\native_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9414263Z copying torch\include\ATen\ops\native_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9421599Z copying torch\include\ATen\ops\native_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9429161Z copying torch\include\ATen\ops\native_group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9437513Z copying torch\include\ATen\ops\native_group_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9445433Z copying torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9452801Z copying torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9464929Z copying torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9472485Z copying torch\include\ATen\ops\native_group_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9480170Z copying torch\include\ATen\ops\native_group_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9487860Z copying torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9495220Z copying torch\include\ATen\ops\native_group_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9502765Z copying torch\include\ATen\ops\native_group_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9509949Z copying torch\include\ATen\ops\native_group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9517653Z copying torch\include\ATen\ops\native_group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9529094Z copying torch\include\ATen\ops\native_layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9536669Z copying torch\include\ATen\ops\native_layer_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9544414Z copying torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9551799Z copying torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9559811Z copying torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9567112Z copying torch\include\ATen\ops\native_layer_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9574586Z copying torch\include\ATen\ops\native_layer_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9582019Z copying torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9589195Z copying torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9596559Z copying torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9603658Z copying torch\include\ATen\ops\native_layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9610966Z copying torch\include\ATen\ops\native_layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9618646Z copying torch\include\ATen\ops\native_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9626600Z copying torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9635703Z copying torch\include\ATen\ops\native_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9644170Z copying torch\include\ATen\ops\native_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9651590Z copying torch\include\ATen\ops\ne.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9658820Z copying torch\include\ATen\ops\neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9666371Z copying torch\include\ATen\ops\negative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9673739Z copying torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9681023Z copying torch\include\ATen\ops\negative_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9688192Z copying torch\include\ATen\ops\negative_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9695952Z copying torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9702997Z copying torch\include\ATen\ops\neg_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9710106Z copying torch\include\ATen\ops\neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9717458Z copying torch\include\ATen\ops\neg_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9724279Z copying torch\include\ATen\ops\neg_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9731757Z copying torch\include\ATen\ops\neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9738983Z copying torch\include\ATen\ops\neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9745963Z copying torch\include\ATen\ops\nested_to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9753513Z copying torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9760739Z copying torch\include\ATen\ops\nested_to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9768067Z copying torch\include\ATen\ops\nested_to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9775366Z copying torch\include\ATen\ops\new_empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9783130Z copying torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9790166Z copying torch\include\ATen\ops\new_empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9797575Z copying torch\include\ATen\ops\new_empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9805009Z copying torch\include\ATen\ops\new_empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9814476Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9820524Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9827976Z copying torch\include\ATen\ops\new_empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9835286Z copying torch\include\ATen\ops\new_empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9842403Z copying torch\include\ATen\ops\new_full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9849833Z copying torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9856944Z copying torch\include\ATen\ops\new_full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9863956Z copying torch\include\ATen\ops\new_full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9871136Z copying torch\include\ATen\ops\new_ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9878369Z copying torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9885751Z copying torch\include\ATen\ops\new_ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9892730Z copying torch\include\ATen\ops\new_ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9899698Z copying torch\include\ATen\ops\new_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9907015Z copying torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9914459Z copying torch\include\ATen\ops\new_zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9921563Z copying torch\include\ATen\ops\new_zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9928648Z copying torch\include\ATen\ops\nextafter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9936102Z copying torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9943210Z copying torch\include\ATen\ops\nextafter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9950435Z copying torch\include\ATen\ops\nextafter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9957595Z copying torch\include\ATen\ops\nextafter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9964652Z copying torch\include\ATen\ops\nextafter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9976592Z copying torch\include\ATen\ops\nextafter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9983909Z copying torch\include\ATen\ops\nextafter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9991484Z copying torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:44.9999111Z copying torch\include\ATen\ops\ne_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0007042Z copying torch\include\ATen\ops\ne_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0014956Z copying torch\include\ATen\ops\ne_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0022671Z copying torch\include\ATen\ops\ne_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0030775Z copying torch\include\ATen\ops\ne_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0038839Z copying torch\include\ATen\ops\ne_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0046504Z copying torch\include\ATen\ops\nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0053817Z copying torch\include\ATen\ops\nll_loss2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0061208Z copying torch\include\ATen\ops\nll_loss2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0068782Z copying torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0076082Z copying torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0083453Z copying torch\include\ATen\ops\nll_loss2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0090647Z copying torch\include\ATen\ops\nll_loss2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0098374Z copying torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0105500Z copying torch\include\ATen\ops\nll_loss2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0113165Z copying torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0120661Z copying torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0127881Z copying torch\include\ATen\ops\nll_loss2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0135018Z copying torch\include\ATen\ops\nll_loss2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0142127Z copying torch\include\ATen\ops\nll_loss2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0155386Z copying torch\include\ATen\ops\nll_loss2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0160413Z copying torch\include\ATen\ops\nll_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0168496Z copying torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0175590Z copying torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0182995Z copying torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0194424Z copying torch\include\ATen\ops\nll_loss_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0202306Z copying torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0209132Z copying torch\include\ATen\ops\nll_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0229373Z copying torch\include\ATen\ops\nll_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0236911Z copying torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0243901Z copying torch\include\ATen\ops\nll_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0251624Z copying torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0259080Z copying torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0266280Z copying torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0273552Z copying torch\include\ATen\ops\nll_loss_forward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0281209Z copying torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0288717Z copying torch\include\ATen\ops\nll_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0296566Z copying torch\include\ATen\ops\nll_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0303803Z copying torch\include\ATen\ops\nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0311064Z copying torch\include\ATen\ops\nll_loss_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0318960Z copying torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0326337Z copying torch\include\ATen\ops\nll_loss_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0333849Z copying torch\include\ATen\ops\nll_loss_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0341460Z copying torch\include\ATen\ops\nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0348892Z copying torch\include\ATen\ops\nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0355998Z copying torch\include\ATen\ops\nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0362940Z copying torch\include\ATen\ops\nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0370699Z copying torch\include\ATen\ops\nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0377711Z copying torch\include\ATen\ops\nonzero_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0390280Z copying torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0397513Z copying torch\include\ATen\ops\nonzero_numpy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0404571Z copying torch\include\ATen\ops\nonzero_numpy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0411875Z copying torch\include\ATen\ops\nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0419164Z copying torch\include\ATen\ops\nonzero_static.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0426626Z copying torch\include\ATen\ops\nonzero_static_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0434151Z copying torch\include\ATen\ops\nonzero_static_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0442043Z copying torch\include\ATen\ops\nonzero_static_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0449406Z copying torch\include\ATen\ops\nonzero_static_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0456758Z copying torch\include\ATen\ops\norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0463664Z copying torch\include\ATen\ops\normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0471243Z copying torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0479127Z copying torch\include\ATen\ops\normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0486345Z copying torch\include\ATen\ops\normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0494084Z copying torch\include\ATen\ops\normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0501855Z copying torch\include\ATen\ops\normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0509977Z copying torch\include\ATen\ops\normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0519179Z copying torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0526975Z copying torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0535319Z copying torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0543531Z copying torch\include\ATen\ops\norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0551619Z copying torch\include\ATen\ops\norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0559575Z copying torch\include\ATen\ops\norm_except_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0567252Z copying torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0574666Z copying torch\include\ATen\ops\norm_except_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0581542Z copying torch\include\ATen\ops\norm_except_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0588710Z copying torch\include\ATen\ops\norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0596026Z copying torch\include\ATen\ops\norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0603376Z copying torch\include\ATen\ops\norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0610606Z copying torch\include\ATen\ops\norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0617055Z copying torch\include\ATen\ops\not_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0624363Z copying torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0631272Z copying torch\include\ATen\ops\not_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0638574Z copying torch\include\ATen\ops\not_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0646196Z copying torch\include\ATen\ops\nuclear_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0653300Z copying torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0665090Z copying torch\include\ATen\ops\nuclear_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0672095Z copying torch\include\ATen\ops\nuclear_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0679749Z copying torch\include\ATen\ops\numpy_T.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0686309Z copying torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0693417Z copying torch\include\ATen\ops\numpy_T_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0700297Z copying torch\include\ATen\ops\numpy_T_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0707204Z copying torch\include\ATen\ops\ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0714260Z copying torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0721413Z copying torch\include\ATen\ops\ones_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0728906Z copying torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0735839Z copying torch\include\ATen\ops\ones_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0742730Z copying torch\include\ATen\ops\ones_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0750081Z copying torch\include\ATen\ops\ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0757165Z copying torch\include\ATen\ops\ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0763685Z copying torch\include\ATen\ops\one_hot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0800869Z copying torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0808761Z copying torch\include\ATen\ops\one_hot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0815879Z copying torch\include\ATen\ops\one_hot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0822804Z copying torch\include\ATen\ops\or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0829679Z copying torch\include\ATen\ops\orgqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0837020Z copying torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0844479Z copying torch\include\ATen\ops\orgqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0851588Z copying torch\include\ATen\ops\orgqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0859195Z copying torch\include\ATen\ops\ormqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0866159Z copying torch\include\ATen\ops\ormqr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0873315Z copying torch\include\ATen\ops\ormqr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0880417Z copying torch\include\ATen\ops\ormqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0887635Z copying torch\include\ATen\ops\ormqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0895188Z copying torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0902032Z copying torch\include\ATen\ops\or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0909084Z copying torch\include\ATen\ops\or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0916156Z copying torch\include\ATen\ops\outer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0923253Z copying torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0930611Z copying torch\include\ATen\ops\outer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0937816Z copying torch\include\ATen\ops\outer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0944856Z copying torch\include\ATen\ops\output_nr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0952103Z copying torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0959311Z copying torch\include\ATen\ops\output_nr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0966288Z copying torch\include\ATen\ops\output_nr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0973386Z copying torch\include\ATen\ops\pad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0980495Z copying torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0987783Z copying torch\include\ATen\ops\pad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.0994738Z copying torch\include\ATen\ops\pad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1001957Z copying torch\include\ATen\ops\pad_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1009907Z copying torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1017643Z copying torch\include\ATen\ops\pad_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1025772Z copying torch\include\ATen\ops\pad_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1033488Z copying torch\include\ATen\ops\pairwise_distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1042094Z copying torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1049172Z copying torch\include\ATen\ops\pairwise_distance_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1056221Z copying torch\include\ATen\ops\pairwise_distance_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1063259Z copying torch\include\ATen\ops\pdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1076581Z copying torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1083671Z copying torch\include\ATen\ops\pdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1090830Z copying torch\include\ATen\ops\pdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1097782Z copying torch\include\ATen\ops\permute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1104996Z copying torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1111918Z copying torch\include\ATen\ops\permute_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1119437Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1126580Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1133598Z copying torch\include\ATen\ops\permute_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1140943Z copying torch\include\ATen\ops\permute_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1148293Z copying torch\include\ATen\ops\permute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1155480Z copying torch\include\ATen\ops\permute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1162659Z copying torch\include\ATen\ops\pinverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1169673Z copying torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1176519Z copying torch\include\ATen\ops\pinverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1203846Z copying torch\include\ATen\ops\pinverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1210819Z copying torch\include\ATen\ops\pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1218489Z copying torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1225542Z copying torch\include\ATen\ops\pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1232918Z copying torch\include\ATen\ops\pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1240290Z copying torch\include\ATen\ops\pixel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1248051Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1255305Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1262900Z copying torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1270078Z copying torch\include\ATen\ops\pixel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1277531Z copying torch\include\ATen\ops\pixel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1284932Z copying torch\include\ATen\ops\pixel_unshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1292691Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1300363Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1307878Z copying torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1315297Z copying torch\include\ATen\ops\pixel_unshuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1322708Z copying torch\include\ATen\ops\pixel_unshuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1329839Z copying torch\include\ATen\ops\poisson.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1337272Z copying torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1344234Z copying torch\include\ATen\ops\poisson_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1351768Z copying torch\include\ATen\ops\poisson_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1359167Z copying torch\include\ATen\ops\poisson_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1366513Z copying torch\include\ATen\ops\poisson_nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1374707Z copying torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1382582Z copying torch\include\ATen\ops\poisson_nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1389727Z copying torch\include\ATen\ops\poisson_nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1397007Z copying torch\include\ATen\ops\poisson_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1404024Z copying torch\include\ATen\ops\polar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1411165Z copying torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1418689Z copying torch\include\ATen\ops\polar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1425943Z copying torch\include\ATen\ops\polar_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1433156Z copying torch\include\ATen\ops\polar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1440395Z copying torch\include\ATen\ops\polar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1447943Z copying torch\include\ATen\ops\polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1455473Z copying torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1462761Z copying torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1470045Z copying torch\include\ATen\ops\polygamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1477675Z copying torch\include\ATen\ops\polygamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1484789Z copying torch\include\ATen\ops\polygamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1492148Z copying torch\include\ATen\ops\polygamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1499634Z copying torch\include\ATen\ops\polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1506526Z copying torch\include\ATen\ops\polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1513692Z copying torch\include\ATen\ops\positive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1520791Z copying torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1527861Z copying torch\include\ATen\ops\positive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1535088Z copying torch\include\ATen\ops\positive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1546465Z copying torch\include\ATen\ops\pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1549347Z copying torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1556278Z copying torch\include\ATen\ops\pow_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1563319Z copying torch\include\ATen\ops\pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1570309Z copying torch\include\ATen\ops\pow_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1577005Z copying torch\include\ATen\ops\pow_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1583833Z copying torch\include\ATen\ops\pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1590966Z copying torch\include\ATen\ops\pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1597756Z copying torch\include\ATen\ops\prelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1604485Z copying torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1614962Z copying torch\include\ATen\ops\prelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1621737Z copying torch\include\ATen\ops\prelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1628643Z copying torch\include\ATen\ops\prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1635795Z copying torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1642857Z copying torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1656721Z copying torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1663818Z copying torch\include\ATen\ops\prod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1671414Z copying torch\include\ATen\ops\prod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1678455Z copying torch\include\ATen\ops\prod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1685448Z copying torch\include\ATen\ops\prod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1692401Z copying torch\include\ATen\ops\prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1699260Z copying torch\include\ATen\ops\prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1706275Z copying torch\include\ATen\ops\promote_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1713609Z copying torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1721102Z copying torch\include\ATen\ops\promote_types_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1727789Z copying torch\include\ATen\ops\promote_types_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1734832Z copying torch\include\ATen\ops\put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1741870Z copying torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1748873Z copying torch\include\ATen\ops\put_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1756246Z copying torch\include\ATen\ops\put_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1767548Z copying torch\include\ATen\ops\put_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1774425Z copying torch\include\ATen\ops\put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1781644Z copying torch\include\ATen\ops\put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1788180Z copying torch\include\ATen\ops\qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1795262Z copying torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1806376Z copying torch\include\ATen\ops\qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1813198Z copying torch\include\ATen\ops\qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1820036Z copying torch\include\ATen\ops\qscheme.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1826799Z copying torch\include\ATen\ops\qscheme_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1833757Z copying torch\include\ATen\ops\qscheme_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1845497Z copying torch\include\ATen\ops\quantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1853501Z copying torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1860544Z copying torch\include\ATen\ops\quantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1867534Z copying torch\include\ATen\ops\quantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1874715Z copying torch\include\ATen\ops\quantized_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1882340Z copying torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1889588Z copying torch\include\ATen\ops\quantized_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1896847Z copying torch\include\ATen\ops\quantized_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1904263Z copying torch\include\ATen\ops\quantized_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1911803Z copying torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1919222Z copying torch\include\ATen\ops\quantized_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1926321Z copying torch\include\ATen\ops\quantized_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1933672Z copying torch\include\ATen\ops\quantized_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1941141Z copying torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1948188Z copying torch\include\ATen\ops\quantized_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1966478Z copying torch\include\ATen\ops\quantized_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1973647Z copying torch\include\ATen\ops\quantized_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1981753Z copying torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1989107Z copying torch\include\ATen\ops\quantized_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.1996560Z copying torch\include\ATen\ops\quantized_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2003792Z copying torch\include\ATen\ops\quantized_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2011312Z copying torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2018760Z copying torch\include\ATen\ops\quantized_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2026746Z copying torch\include\ATen\ops\quantized_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2034912Z copying torch\include\ATen\ops\quantized_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2053278Z copying torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2061525Z copying torch\include\ATen\ops\quantized_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2069764Z copying torch\include\ATen\ops\quantized_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2078396Z copying torch\include\ATen\ops\quantized_rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2086324Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2093895Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2101780Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2109109Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2117258Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2124932Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2135970Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2143136Z copying torch\include\ATen\ops\quantize_per_channel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2150836Z copying torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2158332Z copying torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2165653Z copying torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2172976Z copying torch\include\ATen\ops\quantize_per_channel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2179795Z copying torch\include\ATen\ops\quantize_per_channel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2187712Z copying torch\include\ATen\ops\quantize_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2195960Z copying torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2203041Z copying torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2211325Z copying torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2218974Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2226872Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2233989Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2241614Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2270148Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2277764Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2285045Z copying torch\include\ATen\ops\quantize_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2293111Z copying torch\include\ATen\ops\quantize_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2300468Z copying torch\include\ATen\ops\q_per_channel_axis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2311761Z copying torch\include\ATen\ops\q_per_channel_axis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2319203Z copying torch\include\ATen\ops\q_per_channel_axis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2326445Z copying torch\include\ATen\ops\q_per_channel_scales.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2334919Z copying torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2342290Z copying torch\include\ATen\ops\q_per_channel_scales_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2353656Z copying torch\include\ATen\ops\q_per_channel_scales_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2361180Z copying torch\include\ATen\ops\q_per_channel_zero_points.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2369725Z copying torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2376792Z copying torch\include\ATen\ops\q_per_channel_zero_points_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2384068Z copying torch\include\ATen\ops\q_per_channel_zero_points_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2395029Z copying torch\include\ATen\ops\q_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2402426Z copying torch\include\ATen\ops\q_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2409369Z copying torch\include\ATen\ops\q_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2416759Z copying torch\include\ATen\ops\q_zero_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2426124Z copying torch\include\ATen\ops\q_zero_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2432946Z copying torch\include\ATen\ops\q_zero_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2440824Z copying torch\include\ATen\ops\rad2deg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2448187Z copying torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2455405Z copying torch\include\ATen\ops\rad2deg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2462498Z copying torch\include\ATen\ops\rad2deg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2470254Z copying torch\include\ATen\ops\rand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2477641Z copying torch\include\ATen\ops\randint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2485613Z copying torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2492713Z copying torch\include\ATen\ops\randint_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2500728Z copying torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2508737Z copying torch\include\ATen\ops\randint_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2516211Z copying torch\include\ATen\ops\randint_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2524100Z copying torch\include\ATen\ops\randint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2531405Z copying torch\include\ATen\ops\randint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2539442Z copying torch\include\ATen\ops\randn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2607948Z copying torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2782719Z copying torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2789490Z copying torch\include\ATen\ops\randn_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2797575Z copying torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2805012Z copying torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2817527Z copying torch\include\ATen\ops\randn_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2824992Z copying torch\include\ATen\ops\randn_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2832087Z copying torch\include\ATen\ops\randn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2839383Z copying torch\include\ATen\ops\randn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2846946Z copying torch\include\ATen\ops\random.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2853639Z copying torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2860701Z copying torch\include\ATen\ops\random_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2867889Z copying torch\include\ATen\ops\random_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2875454Z copying torch\include\ATen\ops\random_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2882946Z copying torch\include\ATen\ops\random_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2891542Z copying torch\include\ATen\ops\random_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2899384Z copying torch\include\ATen\ops\randperm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2934445Z copying torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2941452Z copying torch\include\ATen\ops\randperm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2948796Z copying torch\include\ATen\ops\randperm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2956569Z copying torch\include\ATen\ops\randperm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2964103Z copying torch\include\ATen\ops\randperm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2971736Z copying torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2979213Z copying torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.2986430Z copying torch\include\ATen\ops\rand_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3001802Z copying torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3009005Z copying torch\include\ATen\ops\rand_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3016231Z copying torch\include\ATen\ops\rand_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3023845Z copying torch\include\ATen\ops\rand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3032577Z copying torch\include\ATen\ops\rand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3040792Z copying torch\include\ATen\ops\range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3053894Z copying torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3061205Z copying torch\include\ATen\ops\range_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3104449Z copying torch\include\ATen\ops\range_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3111675Z copying torch\include\ATen\ops\range_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3119046Z copying torch\include\ATen\ops\range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3126334Z copying torch\include\ATen\ops\range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3133717Z copying torch\include\ATen\ops\ravel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3140532Z copying torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3147341Z copying torch\include\ATen\ops\ravel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3154202Z copying torch\include\ATen\ops\ravel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3161311Z copying torch\include\ATen\ops\real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3168059Z copying torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3174874Z copying torch\include\ATen\ops\real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3181939Z copying torch\include\ATen\ops\real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3188866Z copying torch\include\ATen\ops\reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3196901Z copying torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3203446Z copying torch\include\ATen\ops\reciprocal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3210862Z copying torch\include\ATen\ops\reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3218010Z copying torch\include\ATen\ops\reciprocal_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3229377Z copying torch\include\ATen\ops\reciprocal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3236490Z copying torch\include\ATen\ops\reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3243616Z copying torch\include\ATen\ops\reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3250731Z copying torch\include\ATen\ops\record_stream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3257461Z copying torch\include\ATen\ops\record_stream_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3268545Z copying torch\include\ATen\ops\record_stream_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3275616Z copying torch\include\ATen\ops\record_stream_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3282813Z copying torch\include\ATen\ops\refine_names.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3290238Z copying torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3297628Z copying torch\include\ATen\ops\refine_names_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3304786Z copying torch\include\ATen\ops\refine_names_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3311987Z copying torch\include\ATen\ops\reflection_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3319441Z copying torch\include\ATen\ops\reflection_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3327825Z copying torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3335118Z copying torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3342796Z copying torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3350449Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3357997Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3365284Z copying torch\include\ATen\ops\reflection_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3373002Z copying torch\include\ATen\ops\reflection_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3385514Z copying torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3393043Z copying torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3400584Z copying torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3407997Z copying torch\include\ATen\ops\reflection_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3415455Z copying torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3427537Z copying torch\include\ATen\ops\reflection_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3434938Z copying torch\include\ATen\ops\reflection_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3442390Z copying torch\include\ATen\ops\reflection_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3450348Z copying torch\include\ATen\ops\reflection_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3457848Z copying torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3465426Z copying torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3472977Z copying torch\include\ATen\ops\reflection_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3480622Z copying torch\include\ATen\ops\reflection_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3487994Z copying torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3495495Z copying torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3507168Z copying torch\include\ATen\ops\reflection_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3531201Z copying torch\include\ATen\ops\reflection_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3539296Z copying torch\include\ATen\ops\reflection_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3546872Z copying torch\include\ATen\ops\reflection_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3555141Z copying torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3566677Z copying torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3574201Z copying torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3581490Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3589071Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3596930Z copying torch\include\ATen\ops\reflection_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3604121Z copying torch\include\ATen\ops\reflection_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3612075Z copying torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3619333Z copying torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3626494Z copying torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3633639Z copying torch\include\ATen\ops\reflection_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3644816Z copying torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3652188Z copying torch\include\ATen\ops\reflection_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3659397Z copying torch\include\ATen\ops\reflection_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3666459Z copying torch\include\ATen\ops\relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3673916Z copying torch\include\ATen\ops\relu6.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3685280Z copying torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3693224Z copying torch\include\ATen\ops\relu6_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3700276Z copying torch\include\ATen\ops\relu6_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3738047Z copying torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3745151Z copying torch\include\ATen\ops\relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3752753Z copying torch\include\ATen\ops\relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3760144Z copying torch\include\ATen\ops\relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3767284Z copying torch\include\ATen\ops\relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3774431Z copying torch\include\ATen\ops\relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3781356Z copying torch\include\ATen\ops\remainder.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3788933Z copying torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3796175Z copying torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3803864Z copying torch\include\ATen\ops\remainder_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3811274Z copying torch\include\ATen\ops\remainder_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3818403Z copying torch\include\ATen\ops\remainder_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3825710Z copying torch\include\ATen\ops\remainder_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3833008Z copying torch\include\ATen\ops\remainder_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3840474Z copying torch\include\ATen\ops\remainder_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3847727Z copying torch\include\ATen\ops\rename.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3854528Z copying torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3865817Z copying torch\include\ATen\ops\rename_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3872859Z copying torch\include\ATen\ops\rename_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3880108Z copying torch\include\ATen\ops\renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3887601Z copying torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3894816Z copying torch\include\ATen\ops\renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3901843Z copying torch\include\ATen\ops\renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3908977Z copying torch\include\ATen\ops\renorm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3916635Z copying torch\include\ATen\ops\renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3924176Z copying torch\include\ATen\ops\renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3931277Z copying torch\include\ATen\ops\renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3938547Z copying torch\include\ATen\ops\repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3945706Z copying torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3952830Z copying torch\include\ATen\ops\repeat_interleave.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3960545Z copying torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3968229Z copying torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3979104Z copying torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3987047Z copying torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.3994438Z copying torch\include\ATen\ops\repeat_interleave_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4002289Z copying torch\include\ATen\ops\repeat_interleave_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4009519Z copying torch\include\ATen\ops\repeat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4016871Z copying torch\include\ATen\ops\repeat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4024492Z copying torch\include\ATen\ops\replication_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4031640Z copying torch\include\ATen\ops\replication_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4039877Z copying torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4046696Z copying torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4054100Z copying torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4061266Z copying torch\include\ATen\ops\replication_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4068782Z copying torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4076504Z copying torch\include\ATen\ops\replication_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4083692Z copying torch\include\ATen\ops\replication_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4095338Z copying torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4102583Z copying torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4110503Z copying torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4117547Z copying torch\include\ATen\ops\replication_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4126112Z copying torch\include\ATen\ops\replication_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4133371Z copying torch\include\ATen\ops\replication_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4140542Z copying torch\include\ATen\ops\replication_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4147710Z copying torch\include\ATen\ops\replication_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4155104Z copying torch\include\ATen\ops\replication_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4162581Z copying torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4173670Z copying torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4180946Z copying torch\include\ATen\ops\replication_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4188160Z copying torch\include\ATen\ops\replication_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4195818Z copying torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4202979Z copying torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4214317Z copying torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4221604Z copying torch\include\ATen\ops\replication_pad2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4228948Z copying torch\include\ATen\ops\replication_pad2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4236333Z copying torch\include\ATen\ops\replication_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4243393Z copying torch\include\ATen\ops\replication_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4254870Z copying torch\include\ATen\ops\replication_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4262226Z copying torch\include\ATen\ops\replication_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4269786Z copying torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4277204Z copying torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4284880Z copying torch\include\ATen\ops\replication_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4292056Z copying torch\include\ATen\ops\replication_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4299661Z copying torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4307079Z copying torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4314355Z copying torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4321550Z copying torch\include\ATen\ops\replication_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4333716Z copying torch\include\ATen\ops\replication_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4341065Z copying torch\include\ATen\ops\replication_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4348634Z copying torch\include\ATen\ops\replication_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4356491Z copying torch\include\ATen\ops\requires_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4364239Z copying torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4371494Z copying torch\include\ATen\ops\requires_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4378421Z copying torch\include\ATen\ops\requires_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4385903Z copying torch\include\ATen\ops\reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4398741Z copying torch\include\ATen\ops\reshape_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4405948Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4413540Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4420889Z copying torch\include\ATen\ops\reshape_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4428298Z copying torch\include\ATen\ops\reshape_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4436161Z copying torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4443843Z copying torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4456712Z copying torch\include\ATen\ops\reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4464352Z copying torch\include\ATen\ops\reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4471607Z copying torch\include\ATen\ops\resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4478666Z copying torch\include\ATen\ops\resize_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4486303Z copying torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4493292Z copying torch\include\ATen\ops\resize_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4525992Z copying torch\include\ATen\ops\resize_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4534222Z copying torch\include\ATen\ops\resize_as_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4542870Z copying torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4550980Z copying torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4558911Z copying torch\include\ATen\ops\resize_as_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4566578Z copying torch\include\ATen\ops\resize_as_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4573664Z copying torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4580809Z copying torch\include\ATen\ops\resize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4587835Z copying torch\include\ATen\ops\resize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4599504Z copying torch\include\ATen\ops\resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4606832Z copying torch\include\ATen\ops\resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4614346Z copying torch\include\ATen\ops\resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4621141Z copying torch\include\ATen\ops\resolve_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4628736Z copying torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4639610Z copying torch\include\ATen\ops\resolve_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4646461Z copying torch\include\ATen\ops\resolve_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4653865Z copying torch\include\ATen\ops\resolve_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4662027Z copying torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4669173Z copying torch\include\ATen\ops\resolve_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4676183Z copying torch\include\ATen\ops\resolve_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4683208Z copying torch\include\ATen\ops\result_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4690742Z copying torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4697839Z copying torch\include\ATen\ops\result_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4705259Z copying torch\include\ATen\ops\result_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4716814Z copying torch\include\ATen\ops\retains_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4724049Z copying torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4731204Z copying torch\include\ATen\ops\retains_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4738177Z copying torch\include\ATen\ops\retains_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4745528Z copying torch\include\ATen\ops\retain_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4752840Z copying torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4760158Z copying torch\include\ATen\ops\retain_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4767180Z copying torch\include\ATen\ops\retain_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4774625Z copying torch\include\ATen\ops\rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4781726Z copying torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4788923Z copying torch\include\ATen\ops\rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4796548Z copying torch\include\ATen\ops\rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4804115Z copying torch\include\ATen\ops\rnn_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4811340Z copying torch\include\ATen\ops\rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4819439Z copying torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4827627Z copying torch\include\ATen\ops\rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4835105Z copying torch\include\ATen\ops\rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4842722Z copying torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4850120Z copying torch\include\ATen\ops\rnn_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4857095Z copying torch\include\ATen\ops\rnn_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4864384Z copying torch\include\ATen\ops\rnn_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4871167Z copying torch\include\ATen\ops\rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4879212Z copying torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4886466Z copying torch\include\ATen\ops\rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4893614Z copying torch\include\ATen\ops\rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4900939Z copying torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4908129Z copying torch\include\ATen\ops\rnn_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4915393Z copying torch\include\ATen\ops\rnn_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4922425Z copying torch\include\ATen\ops\roll.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4929271Z copying torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4940938Z copying torch\include\ATen\ops\roll_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4948196Z copying torch\include\ATen\ops\roll_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4955291Z copying torch\include\ATen\ops\roll_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4962446Z copying torch\include\ATen\ops\roll_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4969055Z copying torch\include\ATen\ops\rot90.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4980322Z copying torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4987077Z copying torch\include\ATen\ops\rot90_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.4994084Z copying torch\include\ATen\ops\rot90_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5001351Z copying torch\include\ATen\ops\round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5008553Z copying torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5019323Z copying torch\include\ATen\ops\round_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5026339Z copying torch\include\ATen\ops\round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5033347Z copying torch\include\ATen\ops\round_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5040708Z copying torch\include\ATen\ops\round_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5047731Z copying torch\include\ATen\ops\round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5054931Z copying torch\include\ATen\ops\round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5062165Z copying torch\include\ATen\ops\row_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5069251Z copying torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5076169Z copying torch\include\ATen\ops\row_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5083597Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5090861Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5098520Z copying torch\include\ATen\ops\row_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5105932Z copying torch\include\ATen\ops\row_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5113110Z copying torch\include\ATen\ops\row_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5120219Z copying torch\include\ATen\ops\row_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5131604Z copying torch\include\ATen\ops\row_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5139168Z copying torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5147862Z copying torch\include\ATen\ops\row_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5155487Z copying torch\include\ATen\ops\row_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5190595Z copying torch\include\ATen\ops\rrelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5198298Z copying torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5211071Z copying torch\include\ATen\ops\rrelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5217955Z copying torch\include\ATen\ops\rrelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5225046Z copying torch\include\ATen\ops\rrelu_with_noise.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5232815Z copying torch\include\ATen\ops\rrelu_with_noise_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5240453Z copying torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5247780Z copying torch\include\ATen\ops\rrelu_with_noise_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5255440Z copying torch\include\ATen\ops\rrelu_with_noise_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5262750Z copying torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5269894Z copying torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5277503Z copying torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5284842Z copying torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5296502Z copying torch\include\ATen\ops\rrelu_with_noise_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5304234Z copying torch\include\ATen\ops\rrelu_with_noise_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5311561Z copying torch\include\ATen\ops\rshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5318956Z copying torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5326020Z copying torch\include\ATen\ops\rshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5333301Z copying torch\include\ATen\ops\rshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5340659Z copying torch\include\ATen\ops\rshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5347856Z copying torch\include\ATen\ops\rshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5355217Z copying torch\include\ATen\ops\rshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5362912Z copying torch\include\ATen\ops\rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5370171Z copying torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5377317Z copying torch\include\ATen\ops\rsqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5384996Z copying torch\include\ATen\ops\rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5396846Z copying torch\include\ATen\ops\rsqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5403975Z copying torch\include\ATen\ops\rsqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5411288Z copying torch\include\ATen\ops\rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5418770Z copying torch\include\ATen\ops\rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5426009Z copying torch\include\ATen\ops\rsub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5433232Z copying torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5440420Z copying torch\include\ATen\ops\rsub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5447926Z copying torch\include\ATen\ops\rsub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5454761Z copying torch\include\ATen\ops\rsub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5462277Z copying torch\include\ATen\ops\rsub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5473801Z copying torch\include\ATen\ops\scalar_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5481565Z copying torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5488792Z copying torch\include\ATen\ops\scalar_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5495971Z copying torch\include\ATen\ops\scalar_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5503105Z copying torch\include\ATen\ops\scaled_dot_product_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5516271Z copying torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5523519Z copying torch\include\ATen\ops\scaled_dot_product_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5530780Z copying torch\include\ATen\ops\scaled_dot_product_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5538361Z copying torch\include\ATen\ops\scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5545239Z copying torch\include\ATen\ops\scatter_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5552817Z copying torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5560235Z copying torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5567433Z copying torch\include\ATen\ops\scatter_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5574524Z copying torch\include\ATen\ops\scatter_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5581950Z copying torch\include\ATen\ops\scatter_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5593590Z copying torch\include\ATen\ops\scatter_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5629504Z copying torch\include\ATen\ops\scatter_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5637145Z copying torch\include\ATen\ops\scatter_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5645722Z copying torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5653132Z copying torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5665800Z copying torch\include\ATen\ops\scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5674230Z copying torch\include\ATen\ops\scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5682419Z copying torch\include\ATen\ops\scatter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5689765Z copying torch\include\ATen\ops\scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5697109Z copying torch\include\ATen\ops\scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5704364Z copying torch\include\ATen\ops\scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5711607Z copying torch\include\ATen\ops\scatter_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5719562Z copying torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5726968Z copying torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5734179Z copying torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5745578Z copying torch\include\ATen\ops\scatter_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5753072Z copying torch\include\ATen\ops\scatter_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5760701Z copying torch\include\ATen\ops\scatter_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5768037Z copying torch\include\ATen\ops\scatter_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5775513Z copying torch\include\ATen\ops\searchsorted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5786586Z copying torch\include\ATen\ops\searchsorted_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5793722Z copying torch\include\ATen\ops\searchsorted_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5801052Z copying torch\include\ATen\ops\searchsorted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5808953Z copying torch\include\ATen\ops\searchsorted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5816189Z copying torch\include\ATen\ops\segment_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5831222Z copying torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5838235Z copying torch\include\ATen\ops\segment_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5845712Z copying torch\include\ATen\ops\segment_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5852749Z copying torch\include\ATen\ops\segment_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5860032Z copying torch\include\ATen\ops\segment_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5867159Z copying torch\include\ATen\ops\select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5873853Z copying torch\include\ATen\ops\select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5881517Z copying torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5888831Z copying torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5895897Z copying torch\include\ATen\ops\select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5903022Z copying torch\include\ATen\ops\select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5910351Z copying torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5917782Z copying torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5924859Z copying torch\include\ATen\ops\select_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5932410Z copying torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5939970Z copying torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5947193Z copying torch\include\ATen\ops\select_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5954111Z copying torch\include\ATen\ops\select_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5961327Z copying torch\include\ATen\ops\select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5968215Z copying torch\include\ATen\ops\select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5975257Z copying torch\include\ATen\ops\select_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5982948Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5990290Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.5997612Z copying torch\include\ATen\ops\select_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6004687Z copying torch\include\ATen\ops\select_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6011667Z copying torch\include\ATen\ops\selu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6018796Z copying torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6025679Z copying torch\include\ATen\ops\selu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6032443Z copying torch\include\ATen\ops\selu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6039579Z copying torch\include\ATen\ops\set.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6051690Z copying torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6058540Z copying torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6065534Z copying torch\include\ATen\ops\set_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6072590Z copying torch\include\ATen\ops\set_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6079754Z copying torch\include\ATen\ops\set_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6086510Z copying torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6094089Z copying torch\include\ATen\ops\set_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6100925Z copying torch\include\ATen\ops\set_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6107852Z copying torch\include\ATen\ops\set_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6115042Z copying torch\include\ATen\ops\set_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6126905Z copying torch\include\ATen\ops\set_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6133539Z copying torch\include\ATen\ops\sgn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6140749Z copying torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6147710Z copying torch\include\ATen\ops\sgn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6154896Z copying torch\include\ATen\ops\sgn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6162056Z copying torch\include\ATen\ops\sgn_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6168431Z copying torch\include\ATen\ops\sgn_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6175488Z copying torch\include\ATen\ops\sgn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6182375Z copying torch\include\ATen\ops\sgn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6189088Z copying torch\include\ATen\ops\sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6196362Z copying torch\include\ATen\ops\sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6203891Z copying torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6211052Z copying torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6218715Z copying torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6225665Z copying torch\include\ATen\ops\sigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6232897Z copying torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6240283Z copying torch\include\ATen\ops\sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6247841Z copying torch\include\ATen\ops\sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6255568Z copying torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6263050Z copying torch\include\ATen\ops\sigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6274943Z copying torch\include\ATen\ops\sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6282278Z copying torch\include\ATen\ops\sigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6289495Z copying torch\include\ATen\ops\sigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6296759Z copying torch\include\ATen\ops\sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6303883Z copying torch\include\ATen\ops\sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6318421Z copying torch\include\ATen\ops\sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6325527Z copying torch\include\ATen\ops\signbit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6332964Z copying torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6340082Z copying torch\include\ATen\ops\signbit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6347605Z copying torch\include\ATen\ops\signbit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6354820Z copying torch\include\ATen\ops\signbit_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6362210Z copying torch\include\ATen\ops\signbit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6369169Z copying torch\include\ATen\ops\signbit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6376294Z copying torch\include\ATen\ops\signbit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6384445Z copying torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6391437Z copying torch\include\ATen\ops\sign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6398762Z copying torch\include\ATen\ops\sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6407128Z copying torch\include\ATen\ops\sign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6414147Z copying torch\include\ATen\ops\sign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6421316Z copying torch\include\ATen\ops\sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6432662Z copying torch\include\ATen\ops\sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6439672Z copying torch\include\ATen\ops\silu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6446731Z copying torch\include\ATen\ops\silu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6454760Z copying torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6461747Z copying torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6473364Z copying torch\include\ATen\ops\silu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6480610Z copying torch\include\ATen\ops\silu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6487672Z copying torch\include\ATen\ops\silu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6501668Z copying torch\include\ATen\ops\silu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6513132Z copying torch\include\ATen\ops\silu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6514798Z copying torch\include\ATen\ops\silu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6518077Z copying torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6525178Z copying torch\include\ATen\ops\silu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6532093Z copying torch\include\ATen\ops\silu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6539113Z copying torch\include\ATen\ops\silu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6547894Z copying torch\include\ATen\ops\silu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6555998Z copying torch\include\ATen\ops\silu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6563939Z copying torch\include\ATen\ops\silu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6571522Z copying torch\include\ATen\ops\sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6578919Z copying torch\include\ATen\ops\sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6587752Z copying torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6595018Z copying torch\include\ATen\ops\sinc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6602466Z copying torch\include\ATen\ops\sinc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6609960Z copying torch\include\ATen\ops\sinc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6619069Z copying torch\include\ATen\ops\sinc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6659809Z copying torch\include\ATen\ops\sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6705328Z copying torch\include\ATen\ops\sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6718083Z copying torch\include\ATen\ops\sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6725774Z copying torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6732377Z copying torch\include\ATen\ops\sinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6743145Z copying torch\include\ATen\ops\sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6751049Z copying torch\include\ATen\ops\sinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6759713Z copying torch\include\ATen\ops\sinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6766601Z copying torch\include\ATen\ops\sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6773519Z copying torch\include\ATen\ops\sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6781128Z copying torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6789101Z copying torch\include\ATen\ops\sin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6797273Z copying torch\include\ATen\ops\sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6804030Z copying torch\include\ATen\ops\sin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6811985Z copying torch\include\ATen\ops\sin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6818921Z copying torch\include\ATen\ops\sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6825963Z copying torch\include\ATen\ops\sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6832504Z copying torch\include\ATen\ops\size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6840473Z copying torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6847370Z copying torch\include\ATen\ops\size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6854542Z copying torch\include\ATen\ops\size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6861302Z copying torch\include\ATen\ops\slice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6868224Z copying torch\include\ATen\ops\slice_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6876197Z copying torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6883285Z copying torch\include\ATen\ops\slice_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6894734Z copying torch\include\ATen\ops\slice_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6902324Z copying torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6910255Z copying torch\include\ATen\ops\slice_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6917802Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6925498Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6936805Z copying torch\include\ATen\ops\slice_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6944082Z copying torch\include\ATen\ops\slice_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6951657Z copying torch\include\ATen\ops\slice_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6959118Z copying torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6969988Z copying torch\include\ATen\ops\slice_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6977612Z copying torch\include\ATen\ops\slice_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6985098Z copying torch\include\ATen\ops\slice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6992294Z copying torch\include\ATen\ops\slice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.6999788Z copying torch\include\ATen\ops\slice_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7007587Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7019020Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7026430Z copying torch\include\ATen\ops\slice_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7033713Z copying torch\include\ATen\ops\slice_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7041317Z copying torch\include\ATen\ops\slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7049286Z copying torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7057476Z copying torch\include\ATen\ops\slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7065742Z copying torch\include\ATen\ops\slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7073104Z copying torch\include\ATen\ops\slow_conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7081125Z copying torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7088251Z copying torch\include\ATen\ops\slow_conv3d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7095787Z copying torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7103221Z copying torch\include\ATen\ops\slow_conv3d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7110457Z copying torch\include\ATen\ops\slow_conv3d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7117986Z copying torch\include\ATen\ops\slow_conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7139828Z copying torch\include\ATen\ops\slow_conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7147393Z copying torch\include\ATen\ops\slow_conv_dilated2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7155019Z copying torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7162459Z copying torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7169822Z copying torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7177386Z copying torch\include\ATen\ops\slow_conv_dilated2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7192156Z copying torch\include\ATen\ops\slow_conv_dilated2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7199441Z copying torch\include\ATen\ops\slow_conv_dilated3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7207297Z copying torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7214828Z copying torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7221950Z copying torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7228994Z copying torch\include\ATen\ops\slow_conv_dilated3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7236300Z copying torch\include\ATen\ops\slow_conv_dilated3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7243592Z copying torch\include\ATen\ops\slow_conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7251248Z copying torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7258746Z copying torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7266065Z copying torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7273294Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7280971Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7288139Z copying torch\include\ATen\ops\slow_conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7295108Z copying torch\include\ATen\ops\slow_conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7340975Z copying torch\include\ATen\ops\slow_conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7348791Z copying torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7356669Z copying torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7363868Z copying torch\include\ATen\ops\slow_conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7371133Z copying torch\include\ATen\ops\slow_conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7382290Z copying torch\include\ATen\ops\smm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7389307Z copying torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7397042Z copying torch\include\ATen\ops\smm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7404072Z copying torch\include\ATen\ops\smm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7410863Z copying torch\include\ATen\ops\smooth_l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7422250Z copying torch\include\ATen\ops\smooth_l1_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7430093Z copying torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7437571Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7444961Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7452363Z copying torch\include\ATen\ops\smooth_l1_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7459577Z copying torch\include\ATen\ops\smooth_l1_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7467405Z copying torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7475051Z copying torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7482510Z copying torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7489933Z copying torch\include\ATen\ops\smooth_l1_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7497708Z copying torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7504992Z copying torch\include\ATen\ops\smooth_l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7513179Z copying torch\include\ATen\ops\smooth_l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7520528Z copying torch\include\ATen\ops\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7527979Z copying torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7541532Z copying torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7548554Z copying torch\include\ATen\ops\softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7556782Z copying torch\include\ATen\ops\softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7564754Z copying torch\include\ATen\ops\softplus.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7572367Z copying torch\include\ATen\ops\softplus_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7585050Z copying torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7591819Z copying torch\include\ATen\ops\softplus_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7599065Z copying torch\include\ATen\ops\softplus_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7606299Z copying torch\include\ATen\ops\softplus_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7613638Z copying torch\include\ATen\ops\softplus_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7621221Z copying torch\include\ATen\ops\softplus_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7628383Z copying torch\include\ATen\ops\softplus_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7635897Z copying torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7642870Z copying torch\include\ATen\ops\softplus_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7650287Z copying torch\include\ATen\ops\softplus_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7665296Z copying torch\include\ATen\ops\softplus_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7672518Z copying torch\include\ATen\ops\softplus_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7679698Z copying torch\include\ATen\ops\softplus_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7686841Z copying torch\include\ATen\ops\softplus_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7693827Z copying torch\include\ATen\ops\softshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7700976Z copying torch\include\ATen\ops\softshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7708671Z copying torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7715810Z copying torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7723262Z copying torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7730842Z copying torch\include\ATen\ops\softshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7738065Z copying torch\include\ATen\ops\softshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7745408Z copying torch\include\ATen\ops\softshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7752575Z copying torch\include\ATen\ops\softshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7760263Z copying torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7767435Z copying torch\include\ATen\ops\softshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7774636Z copying torch\include\ATen\ops\softshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7781625Z copying torch\include\ATen\ops\softshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7788791Z copying torch\include\ATen\ops\softshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7796029Z copying torch\include\ATen\ops\softshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7803188Z copying torch\include\ATen\ops\softshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7815360Z copying torch\include\ATen\ops\soft_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7822828Z copying torch\include\ATen\ops\soft_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7830932Z copying torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7838376Z copying torch\include\ATen\ops\soft_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7845690Z copying torch\include\ATen\ops\soft_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7857517Z copying torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7865040Z copying torch\include\ATen\ops\soft_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7872789Z copying torch\include\ATen\ops\soft_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7880173Z copying torch\include\ATen\ops\sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7887445Z copying torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7894839Z copying torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7902241Z copying torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7909506Z copying torch\include\ATen\ops\sort_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7917164Z copying torch\include\ATen\ops\sort_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7925352Z copying torch\include\ATen\ops\sort_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7932574Z copying torch\include\ATen\ops\sort_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7939848Z copying torch\include\ATen\ops\sort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7947535Z copying torch\include\ATen\ops\sort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7954694Z copying torch\include\ATen\ops\sparse_bsc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7962237Z copying torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7969572Z copying torch\include\ATen\ops\sparse_bsc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7977115Z copying torch\include\ATen\ops\sparse_bsc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7984366Z copying torch\include\ATen\ops\sparse_bsr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7992043Z copying torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.7999436Z copying torch\include\ATen\ops\sparse_bsr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8006796Z copying torch\include\ATen\ops\sparse_bsr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8014273Z copying torch\include\ATen\ops\sparse_compressed_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8022008Z copying torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8029584Z copying torch\include\ATen\ops\sparse_compressed_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8037236Z copying torch\include\ATen\ops\sparse_compressed_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8044779Z copying torch\include\ATen\ops\sparse_coo_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8052382Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8060899Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8068499Z copying torch\include\ATen\ops\sparse_coo_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8076877Z copying torch\include\ATen\ops\sparse_coo_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8090606Z copying torch\include\ATen\ops\sparse_csc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8099252Z copying torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8107554Z copying torch\include\ATen\ops\sparse_csc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8115946Z copying torch\include\ATen\ops\sparse_csc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8123473Z copying torch\include\ATen\ops\sparse_csr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8135919Z copying torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8143317Z copying torch\include\ATen\ops\sparse_csr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8151185Z copying torch\include\ATen\ops\sparse_csr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8158383Z copying torch\include\ATen\ops\sparse_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8165654Z copying torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8172728Z copying torch\include\ATen\ops\sparse_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8179897Z copying torch\include\ATen\ops\sparse_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8187376Z copying torch\include\ATen\ops\sparse_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8194989Z copying torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8202247Z copying torch\include\ATen\ops\sparse_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8209407Z copying torch\include\ATen\ops\sparse_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8216744Z copying torch\include\ATen\ops\sparse_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8224160Z copying torch\include\ATen\ops\sparse_resize_and_clear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8231360Z copying torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8238614Z copying torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8249951Z copying torch\include\ATen\ops\sparse_resize_and_clear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8257121Z copying torch\include\ATen\ops\sparse_resize_and_clear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8264204Z copying torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8271215Z copying torch\include\ATen\ops\sparse_resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8278088Z copying torch\include\ATen\ops\sparse_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8289826Z copying torch\include\ATen\ops\sparse_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8297105Z copying torch\include\ATen\ops\sparse_sampled_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8304950Z copying torch\include\ATen\ops\sparse_sampled_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8312156Z copying torch\include\ATen\ops\sparse_sampled_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8319484Z copying torch\include\ATen\ops\special_airy_ai.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8331292Z copying torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8338598Z copying torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8346378Z copying torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8353452Z copying torch\include\ATen\ops\special_airy_ai_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8360621Z copying torch\include\ATen\ops\special_airy_ai_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8368468Z copying torch\include\ATen\ops\special_airy_ai_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8375639Z copying torch\include\ATen\ops\special_airy_ai_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8382899Z copying torch\include\ATen\ops\special_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8406242Z copying torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8407473Z copying torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8419408Z copying torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8456697Z copying torch\include\ATen\ops\special_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8464365Z copying torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8471958Z copying torch\include\ATen\ops\special_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8479215Z copying torch\include\ATen\ops\special_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8492104Z copying torch\include\ATen\ops\special_bessel_j1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8500197Z copying torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8507302Z copying torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8514896Z copying torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8522223Z copying torch\include\ATen\ops\special_bessel_j1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8529987Z copying torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8537614Z copying torch\include\ATen\ops\special_bessel_j1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8544739Z copying torch\include\ATen\ops\special_bessel_j1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8552059Z copying torch\include\ATen\ops\special_bessel_y0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8560076Z copying torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8567626Z copying torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8574819Z copying torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8582622Z copying torch\include\ATen\ops\special_bessel_y0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8590129Z copying torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8597473Z copying torch\include\ATen\ops\special_bessel_y0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8604701Z copying torch\include\ATen\ops\special_bessel_y0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8612100Z copying torch\include\ATen\ops\special_bessel_y1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8620286Z copying torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8627836Z copying torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8635111Z copying torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8642570Z copying torch\include\ATen\ops\special_bessel_y1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8650002Z copying torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8657223Z copying torch\include\ATen\ops\special_bessel_y1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8664300Z copying torch\include\ATen\ops\special_bessel_y1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8671673Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8680939Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8689349Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8697577Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8705700Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8713486Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8725782Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8733467Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8741212Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8749233Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8757800Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8766017Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8773581Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8781498Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8789083Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8796839Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8809085Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8816823Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8824798Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8832654Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8840376Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8848388Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8856175Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8864380Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8872635Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8879849Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8893110Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8900713Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8908675Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8916919Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8924854Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8932476Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8940175Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8947587Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8955141Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8962445Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8970197Z copying torch\include\ATen\ops\special_digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8978044Z copying torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8985317Z copying torch\include\ATen\ops\special_digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.8992691Z copying torch\include\ATen\ops\special_digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9000272Z copying torch\include\ATen\ops\special_entr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9008152Z copying torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9015916Z copying torch\include\ATen\ops\special_entr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9023408Z copying torch\include\ATen\ops\special_entr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9030672Z copying torch\include\ATen\ops\special_entr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9038451Z copying torch\include\ATen\ops\special_entr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9046160Z copying torch\include\ATen\ops\special_entr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9053665Z copying torch\include\ATen\ops\special_entr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9061535Z copying torch\include\ATen\ops\special_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9070051Z copying torch\include\ATen\ops\special_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9078000Z copying torch\include\ATen\ops\special_erfcx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9093736Z copying torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9101692Z copying torch\include\ATen\ops\special_erfcx_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9125676Z copying torch\include\ATen\ops\special_erfcx_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9133336Z copying torch\include\ATen\ops\special_erfcx_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9141201Z copying torch\include\ATen\ops\special_erfcx_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9148762Z copying torch\include\ATen\ops\special_erfcx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9157172Z copying torch\include\ATen\ops\special_erfcx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9165025Z copying torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9173222Z copying torch\include\ATen\ops\special_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9180426Z copying torch\include\ATen\ops\special_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9188184Z copying torch\include\ATen\ops\special_erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9196196Z copying torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9203632Z copying torch\include\ATen\ops\special_erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9211212Z copying torch\include\ATen\ops\special_erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9218801Z copying torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9225915Z copying torch\include\ATen\ops\special_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9233095Z copying torch\include\ATen\ops\special_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9240355Z copying torch\include\ATen\ops\special_exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9248228Z copying torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9255588Z copying torch\include\ATen\ops\special_exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9263038Z copying torch\include\ATen\ops\special_exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9270497Z copying torch\include\ATen\ops\special_expit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9278313Z copying torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9285564Z copying torch\include\ATen\ops\special_expit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9292674Z copying torch\include\ATen\ops\special_expit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9299930Z copying torch\include\ATen\ops\special_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9307507Z copying torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9315065Z copying torch\include\ATen\ops\special_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9322255Z copying torch\include\ATen\ops\special_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9329747Z copying torch\include\ATen\ops\special_gammainc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9336966Z copying torch\include\ATen\ops\special_gammaincc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9383105Z copying torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9390415Z copying torch\include\ATen\ops\special_gammaincc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9398134Z copying torch\include\ATen\ops\special_gammaincc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9406504Z copying torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9413898Z copying torch\include\ATen\ops\special_gammainc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9421372Z copying torch\include\ATen\ops\special_gammainc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9428992Z copying torch\include\ATen\ops\special_gammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9437067Z copying torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9444594Z copying torch\include\ATen\ops\special_gammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9452313Z copying torch\include\ATen\ops\special_gammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9489154Z copying torch\include\ATen\ops\special_hermite_polynomial_h.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9496621Z copying torch\include\ATen\ops\special_hermite_polynomial_he.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9504725Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9512856Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9520435Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9528303Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9535954Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9550509Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9558227Z copying torch\include\ATen\ops\special_hermite_polynomial_he_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9566849Z copying torch\include\ATen\ops\special_hermite_polynomial_he_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9576002Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9584310Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9591784Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9599797Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9607229Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9615319Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9622707Z copying torch\include\ATen\ops\special_hermite_polynomial_h_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9630471Z copying torch\include\ATen\ops\special_hermite_polynomial_h_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9638261Z copying torch\include\ATen\ops\special_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9645402Z copying torch\include\ATen\ops\special_i0e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9653208Z copying torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9660728Z copying torch\include\ATen\ops\special_i0e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9667843Z copying torch\include\ATen\ops\special_i0e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9675105Z copying torch\include\ATen\ops\special_i0e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9686747Z copying torch\include\ATen\ops\special_i0e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9694115Z copying torch\include\ATen\ops\special_i0e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9701405Z copying torch\include\ATen\ops\special_i0e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9709218Z copying torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9716830Z copying torch\include\ATen\ops\special_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9728620Z copying torch\include\ATen\ops\special_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9736130Z copying torch\include\ATen\ops\special_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9743651Z copying torch\include\ATen\ops\special_i1e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9751833Z copying torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9759463Z copying torch\include\ATen\ops\special_i1e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9767423Z copying torch\include\ATen\ops\special_i1e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9774873Z copying torch\include\ATen\ops\special_i1e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9782505Z copying torch\include\ATen\ops\special_i1e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9790803Z copying torch\include\ATen\ops\special_i1e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9798483Z copying torch\include\ATen\ops\special_i1e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9807372Z copying torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9815169Z copying torch\include\ATen\ops\special_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9822892Z copying torch\include\ATen\ops\special_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9830868Z copying torch\include\ATen\ops\special_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9838603Z copying torch\include\ATen\ops\special_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9846189Z copying torch\include\ATen\ops\special_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9854431Z copying torch\include\ATen\ops\special_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9862835Z copying torch\include\ATen\ops\special_laguerre_polynomial_l.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9871662Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9879672Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9887176Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9894677Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9902610Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9910270Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9918126Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9928520Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9936221Z copying torch\include\ATen\ops\special_legendre_polynomial_p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9944418Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9952273Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9960495Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9968089Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9975576Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9983187Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9992245Z copying torch\include\ATen\ops\special_legendre_polynomial_p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:45.9999670Z copying torch\include\ATen\ops\special_legendre_polynomial_p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0013218Z copying torch\include\ATen\ops\special_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0020876Z copying torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0028133Z copying torch\include\ATen\ops\special_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0035872Z copying torch\include\ATen\ops\special_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0043767Z copying torch\include\ATen\ops\special_logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0051845Z copying torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0059922Z copying torch\include\ATen\ops\special_logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0068089Z copying torch\include\ATen\ops\special_logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0076587Z copying torch\include\ATen\ops\special_logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0084531Z copying torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0092489Z copying torch\include\ATen\ops\special_logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0100344Z copying torch\include\ATen\ops\special_logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0108248Z copying torch\include\ATen\ops\special_log_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0116651Z copying torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0124407Z copying torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0132200Z copying torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0139946Z copying torch\include\ATen\ops\special_log_ndtr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0147691Z copying torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0155719Z copying torch\include\ATen\ops\special_log_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0163485Z copying torch\include\ATen\ops\special_log_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0176726Z copying torch\include\ATen\ops\special_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0184879Z copying torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0192681Z copying torch\include\ATen\ops\special_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0200164Z copying torch\include\ATen\ops\special_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0208050Z copying torch\include\ATen\ops\special_modified_bessel_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0216161Z copying torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0223966Z copying torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0231978Z copying torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0240007Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0251248Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0262554Z copying torch\include\ATen\ops\special_modified_bessel_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0270643Z copying torch\include\ATen\ops\special_modified_bessel_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0278864Z copying torch\include\ATen\ops\special_modified_bessel_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0287265Z copying torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0295198Z copying torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0306764Z copying torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0314184Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0322029Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0329388Z copying torch\include\ATen\ops\special_modified_bessel_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0336853Z copying torch\include\ATen\ops\special_modified_bessel_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0344422Z copying torch\include\ATen\ops\special_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0352347Z copying torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0360281Z copying torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0368229Z copying torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0376411Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0384432Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0392228Z copying torch\include\ATen\ops\special_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0400356Z copying torch\include\ATen\ops\special_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0408503Z copying torch\include\ATen\ops\special_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0416908Z copying torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0428589Z copying torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0436389Z copying torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0443982Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0451760Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0459611Z copying torch\include\ATen\ops\special_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0467381Z copying torch\include\ATen\ops\special_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0475137Z copying torch\include\ATen\ops\special_multigammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0482976Z copying torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0495901Z copying torch\include\ATen\ops\special_multigammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0503585Z copying torch\include\ATen\ops\special_multigammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0510908Z copying torch\include\ATen\ops\special_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0518373Z copying torch\include\ATen\ops\special_ndtri.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0526332Z copying torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0534068Z copying torch\include\ATen\ops\special_ndtri_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0541201Z copying torch\include\ATen\ops\special_ndtri_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0548674Z copying torch\include\ATen\ops\special_ndtri_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0556644Z copying torch\include\ATen\ops\special_ndtri_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0563962Z copying torch\include\ATen\ops\special_ndtri_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0571253Z copying torch\include\ATen\ops\special_ndtri_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0578990Z copying torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0590504Z copying torch\include\ATen\ops\special_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0597949Z copying torch\include\ATen\ops\special_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0605682Z copying torch\include\ATen\ops\special_polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0613490Z copying torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0620763Z copying torch\include\ATen\ops\special_polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0628154Z copying torch\include\ATen\ops\special_polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0635997Z copying torch\include\ATen\ops\special_psi.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0643964Z copying torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0651641Z copying torch\include\ATen\ops\special_psi_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0659274Z copying torch\include\ATen\ops\special_psi_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0672755Z copying torch\include\ATen\ops\special_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0681243Z copying torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0689661Z copying torch\include\ATen\ops\special_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0698018Z copying torch\include\ATen\ops\special_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0706698Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0715287Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0723124Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0731102Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0738564Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0746003Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0758848Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0812233Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0819628Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0827561Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0835258Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0848526Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0856159Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0863866Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0871430Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0879143Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0891887Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0900105Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0907957Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0920267Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0927843Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0935548Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0943219Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0950713Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0958368Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0965930Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0979194Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0986991Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.0994622Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1002042Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1009421Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1017115Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1024484Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1032137Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1039721Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1047867Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1060520Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1068307Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1076174Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1083627Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1091548Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1103696Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1111247Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1118899Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1127020Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1134894Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1146676Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1154773Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1162283Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1170844Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1179499Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1187861Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1196062Z copying torch\include\ATen\ops\special_sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1205884Z copying torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1214140Z copying torch\include\ATen\ops\special_sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1221596Z copying torch\include\ATen\ops\special_sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1233282Z copying torch\include\ATen\ops\special_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1241245Z copying torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1248682Z copying torch\include\ATen\ops\special_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1256044Z copying torch\include\ATen\ops\special_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1263661Z copying torch\include\ATen\ops\special_spherical_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1271881Z copying torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1279955Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1287487Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1295245Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1302530Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1319567Z copying torch\include\ATen\ops\special_spherical_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1327122Z copying torch\include\ATen\ops\special_spherical_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1334430Z copying torch\include\ATen\ops\special_xlog1py.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1342553Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1350171Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1358174Z copying torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1365824Z copying torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1373446Z copying torch\include\ATen\ops\special_xlog1py_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1381096Z copying torch\include\ATen\ops\special_xlog1py_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1388645Z copying torch\include\ATen\ops\special_xlog1py_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1396211Z copying torch\include\ATen\ops\special_xlog1py_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1403234Z copying torch\include\ATen\ops\special_xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1411195Z copying torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1418560Z copying torch\include\ATen\ops\special_xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1426141Z copying torch\include\ATen\ops\special_xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1439079Z copying torch\include\ATen\ops\special_zeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1446985Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1454477Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1462228Z copying torch\include\ATen\ops\special_zeta_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1469993Z copying torch\include\ATen\ops\special_zeta_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1483417Z copying torch\include\ATen\ops\special_zeta_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1485323Z copying torch\include\ATen\ops\special_zeta_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1493489Z copying torch\include\ATen\ops\special_zeta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1501100Z copying torch\include\ATen\ops\special_zeta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1508560Z copying torch\include\ATen\ops\split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1521029Z copying torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1528939Z copying torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1536839Z copying torch\include\ATen\ops\split_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1547877Z copying torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1555172Z copying torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1567070Z copying torch\include\ATen\ops\split_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1575213Z copying torch\include\ATen\ops\split_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1583611Z copying torch\include\ATen\ops\split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1592129Z copying torch\include\ATen\ops\split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1600512Z copying torch\include\ATen\ops\split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1613404Z copying torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1620701Z copying torch\include\ATen\ops\split_with_sizes_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1628558Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1636818Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1644079Z copying torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1651949Z copying torch\include\ATen\ops\split_with_sizes_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1659231Z copying torch\include\ATen\ops\split_with_sizes_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1696450Z copying torch\include\ATen\ops\split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1703712Z copying torch\include\ATen\ops\split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1710865Z copying torch\include\ATen\ops\sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1718421Z copying torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1725982Z copying torch\include\ATen\ops\sqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1733087Z copying torch\include\ATen\ops\sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1740363Z copying torch\include\ATen\ops\sqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1747291Z copying torch\include\ATen\ops\sqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1754360Z copying torch\include\ATen\ops\sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1761897Z copying torch\include\ATen\ops\sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1768734Z copying torch\include\ATen\ops\square.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1776099Z copying torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1783476Z copying torch\include\ATen\ops\square_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1790565Z copying torch\include\ATen\ops\square_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1797694Z copying torch\include\ATen\ops\squeeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1804741Z copying torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1817975Z copying torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1822301Z copying torch\include\ATen\ops\squeeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1830173Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1837685Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1844978Z copying torch\include\ATen\ops\squeeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1852663Z copying torch\include\ATen\ops\squeeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1859660Z copying torch\include\ATen\ops\squeeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1866675Z copying torch\include\ATen\ops\squeeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1874256Z copying torch\include\ATen\ops\sspaddmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1881953Z copying torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1889507Z copying torch\include\ATen\ops\sspaddmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1896794Z copying torch\include\ATen\ops\sspaddmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1912649Z copying torch\include\ATen\ops\sspaddmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1919920Z copying torch\include\ATen\ops\sspaddmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1927368Z copying torch\include\ATen\ops\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1934256Z copying torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1941008Z copying torch\include\ATen\ops\stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1952417Z copying torch\include\ATen\ops\stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1959857Z copying torch\include\ATen\ops\std.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1967049Z copying torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1974157Z copying torch\include\ATen\ops\std_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1981348Z copying torch\include\ATen\ops\std_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1988341Z copying torch\include\ATen\ops\std_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.1995786Z copying torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2003476Z copying torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2010603Z copying torch\include\ATen\ops\std_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2018013Z copying torch\include\ATen\ops\std_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2029229Z copying torch\include\ATen\ops\std_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2036864Z copying torch\include\ATen\ops\std_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2045102Z copying torch\include\ATen\ops\std_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2053364Z copying torch\include\ATen\ops\std_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2059410Z copying torch\include\ATen\ops\stft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2111730Z copying torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2112628Z copying torch\include\ATen\ops\stft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2113357Z copying torch\include\ATen\ops\stft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2114505Z copying torch\include\ATen\ops\stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2115450Z copying torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2118213Z copying torch\include\ATen\ops\stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2124011Z copying torch\include\ATen\ops\stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2130652Z copying torch\include\ATen\ops\sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2136672Z copying torch\include\ATen\ops\subtract.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2144667Z copying torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2158046Z copying torch\include\ATen\ops\subtract_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2163875Z copying torch\include\ATen\ops\subtract_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2171425Z copying torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2178509Z copying torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2185730Z copying torch\include\ATen\ops\sub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2193084Z copying torch\include\ATen\ops\sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2200470Z copying torch\include\ATen\ops\sub_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2207534Z copying torch\include\ATen\ops\sub_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2214499Z copying torch\include\ATen\ops\sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2221774Z copying torch\include\ATen\ops\sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2228351Z copying torch\include\ATen\ops\sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2235835Z copying torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2243238Z copying torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2250629Z copying torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2258145Z copying torch\include\ATen\ops\sum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2265379Z copying torch\include\ATen\ops\sum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2272416Z copying torch\include\ATen\ops\sum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2279194Z copying torch\include\ATen\ops\sum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2286724Z copying torch\include\ATen\ops\sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2293820Z copying torch\include\ATen\ops\sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2300548Z copying torch\include\ATen\ops\sum_to_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2307803Z copying torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2343703Z copying torch\include\ATen\ops\sum_to_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2350447Z copying torch\include\ATen\ops\sum_to_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2357758Z copying torch\include\ATen\ops\svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2364700Z copying torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2371632Z copying torch\include\ATen\ops\svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2379001Z copying torch\include\ATen\ops\svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2386214Z copying torch\include\ATen\ops\swapaxes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2392948Z copying torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2400296Z copying torch\include\ATen\ops\swapaxes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2407470Z copying torch\include\ATen\ops\swapaxes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2414607Z copying torch\include\ATen\ops\swapdims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2421844Z copying torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2428736Z copying torch\include\ATen\ops\swapdims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2435807Z copying torch\include\ATen\ops\swapdims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2443030Z copying torch\include\ATen\ops\sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2450490Z copying torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2457735Z copying torch\include\ATen\ops\sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2465276Z copying torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2477211Z copying torch\include\ATen\ops\sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2485020Z copying torch\include\ATen\ops\sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2493137Z copying torch\include\ATen\ops\sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2501201Z copying torch\include\ATen\ops\sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2508802Z copying torch\include\ATen\ops\sym_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2517528Z copying torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2525487Z copying torch\include\ATen\ops\sym_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2534545Z copying torch\include\ATen\ops\sym_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2542294Z copying torch\include\ATen\ops\sym_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2551287Z copying torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2559540Z copying torch\include\ATen\ops\sym_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2566502Z copying torch\include\ATen\ops\sym_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2574097Z copying torch\include\ATen\ops\sym_storage_offset.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2581836Z copying torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2589463Z copying torch\include\ATen\ops\sym_storage_offset_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2644787Z copying torch\include\ATen\ops\sym_storage_offset_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2652180Z copying torch\include\ATen\ops\sym_stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2660025Z copying torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2675192Z copying torch\include\ATen\ops\sym_stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2682241Z copying torch\include\ATen\ops\sym_stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2689251Z copying torch\include\ATen\ops\t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2695855Z copying torch\include\ATen\ops\take.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2702608Z copying torch\include\ATen\ops\take_along_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2709875Z copying torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2717064Z copying torch\include\ATen\ops\take_along_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2724390Z copying torch\include\ATen\ops\take_along_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2731616Z copying torch\include\ATen\ops\take_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2738759Z copying torch\include\ATen\ops\take_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2745858Z copying torch\include\ATen\ops\take_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2753218Z copying torch\include\ATen\ops\take_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2763697Z copying torch\include\ATen\ops\tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2770256Z copying torch\include\ATen\ops\tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2777017Z copying torch\include\ATen\ops\tanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2784718Z copying torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2791575Z copying torch\include\ATen\ops\tanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2798635Z copying torch\include\ATen\ops\tanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2805642Z copying torch\include\ATen\ops\tanh_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2812751Z copying torch\include\ATen\ops\tanh_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2819850Z copying torch\include\ATen\ops\tanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2827026Z copying torch\include\ATen\ops\tanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2838919Z copying torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2845743Z copying torch\include\ATen\ops\tanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2852908Z copying torch\include\ATen\ops\tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2859859Z copying torch\include\ATen\ops\tanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2866540Z copying torch\include\ATen\ops\tanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2877866Z copying torch\include\ATen\ops\tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2884944Z copying torch\include\ATen\ops\tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2892737Z copying torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2899684Z copying torch\include\ATen\ops\tan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2906795Z copying torch\include\ATen\ops\tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2913968Z copying torch\include\ATen\ops\tan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2920975Z copying torch\include\ATen\ops\tan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2928242Z copying torch\include\ATen\ops\tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2935091Z copying torch\include\ATen\ops\tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2941874Z copying torch\include\ATen\ops\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2953331Z copying torch\include\ATen\ops\tensordot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2961257Z copying torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2968497Z copying torch\include\ATen\ops\tensordot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2976080Z copying torch\include\ATen\ops\tensordot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2983054Z copying torch\include\ATen\ops\tensor_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.2995132Z copying torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3002594Z copying torch\include\ATen\ops\tensor_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3010021Z copying torch\include\ATen\ops\tensor_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3017397Z copying torch\include\ATen\ops\thnn_conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3024754Z copying torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3040208Z copying torch\include\ATen\ops\thnn_conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3047501Z copying torch\include\ATen\ops\thnn_conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3054740Z copying torch\include\ATen\ops\threshold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3076601Z copying torch\include\ATen\ops\threshold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3084479Z copying torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3092696Z copying torch\include\ATen\ops\threshold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3100773Z copying torch\include\ATen\ops\threshold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3108108Z copying torch\include\ATen\ops\threshold_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3115949Z copying torch\include\ATen\ops\threshold_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3123025Z copying torch\include\ATen\ops\threshold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3130376Z copying torch\include\ATen\ops\threshold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3137850Z copying torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3145122Z copying torch\include\ATen\ops\threshold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3152416Z copying torch\include\ATen\ops\threshold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3159574Z copying torch\include\ATen\ops\threshold_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3167015Z copying torch\include\ATen\ops\threshold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3173758Z copying torch\include\ATen\ops\threshold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3181005Z copying torch\include\ATen\ops\threshold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3188116Z copying torch\include\ATen\ops\tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3195269Z copying torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3206960Z copying torch\include\ATen\ops\tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3213713Z copying torch\include\ATen\ops\tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3220586Z copying torch\include\ATen\ops\to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3227342Z copying torch\include\ATen\ops\topk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3234376Z copying torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3241603Z copying torch\include\ATen\ops\topk_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3248629Z copying torch\include\ATen\ops\topk_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3255821Z copying torch\include\ATen\ops\topk_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3262592Z copying torch\include\ATen\ops\topk_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3269539Z copying torch\include\ATen\ops\topk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3276630Z copying torch\include\ATen\ops\topk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3283512Z copying torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3290381Z copying torch\include\ATen\ops\to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3296867Z copying torch\include\ATen\ops\to_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3304487Z copying torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3321870Z copying torch\include\ATen\ops\to_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3328574Z copying torch\include\ATen\ops\to_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3336311Z copying torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3343671Z copying torch\include\ATen\ops\to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3350743Z copying torch\include\ATen\ops\to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3357940Z copying torch\include\ATen\ops\to_mkldnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3364854Z copying torch\include\ATen\ops\to_mkldnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3372546Z copying torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3379655Z copying torch\include\ATen\ops\to_mkldnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3386798Z copying torch\include\ATen\ops\to_mkldnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3398831Z copying torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3406494Z copying torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3414031Z copying torch\include\ATen\ops\to_mkldnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3421176Z copying torch\include\ATen\ops\to_mkldnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3428455Z copying torch\include\ATen\ops\to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3435625Z copying torch\include\ATen\ops\to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3442611Z copying torch\include\ATen\ops\to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3450157Z copying torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3457347Z copying torch\include\ATen\ops\to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3464609Z copying torch\include\ATen\ops\to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3478719Z copying torch\include\ATen\ops\to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3485901Z copying torch\include\ATen\ops\to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3493107Z copying torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3500383Z copying torch\include\ATen\ops\to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3507192Z copying torch\include\ATen\ops\to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3515523Z copying torch\include\ATen\ops\to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3523677Z copying torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3530919Z copying torch\include\ATen\ops\to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3538452Z copying torch\include\ATen\ops\to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3546205Z copying torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3558685Z copying torch\include\ATen\ops\to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3566101Z copying torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3573566Z copying torch\include\ATen\ops\to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3581551Z copying torch\include\ATen\ops\to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3589565Z copying torch\include\ATen\ops\to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3598208Z copying torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3606003Z copying torch\include\ATen\ops\to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3613256Z copying torch\include\ATen\ops\to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3620857Z copying torch\include\ATen\ops\to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3628331Z copying torch\include\ATen\ops\to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3635630Z copying torch\include\ATen\ops\trace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3642366Z copying torch\include\ATen\ops\trace_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3650280Z copying torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3657492Z copying torch\include\ATen\ops\trace_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3664366Z copying torch\include\ATen\ops\trace_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3671884Z copying torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3679566Z copying torch\include\ATen\ops\trace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3687037Z copying torch\include\ATen\ops\trace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3694325Z copying torch\include\ATen\ops\trace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3701549Z copying torch\include\ATen\ops\trace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3713382Z copying torch\include\ATen\ops\transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3720973Z copying torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3728156Z copying torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3735811Z copying torch\include\ATen\ops\transpose_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3743314Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3750659Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3758807Z copying torch\include\ATen\ops\transpose_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3765751Z copying torch\include\ATen\ops\transpose_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3787287Z copying torch\include\ATen\ops\transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3794424Z copying torch\include\ATen\ops\transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3801748Z copying torch\include\ATen\ops\trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3809268Z copying torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3816343Z copying torch\include\ATen\ops\trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3823759Z copying torch\include\ATen\ops\trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3830908Z copying torch\include\ATen\ops\trapz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3838474Z copying torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3845596Z copying torch\include\ATen\ops\trapz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3852872Z copying torch\include\ATen\ops\trapz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3860299Z copying torch\include\ATen\ops\triangular_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3867979Z copying torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3875560Z copying torch\include\ATen\ops\triangular_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3883209Z copying torch\include\ATen\ops\triangular_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3891009Z copying torch\include\ATen\ops\triangular_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3898469Z copying torch\include\ATen\ops\triangular_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3905892Z copying torch\include\ATen\ops\triangular_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3913665Z copying torch\include\ATen\ops\triangular_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3921159Z copying torch\include\ATen\ops\tril.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3928862Z copying torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3936211Z copying torch\include\ATen\ops\tril_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3943522Z copying torch\include\ATen\ops\tril_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3955654Z copying torch\include\ATen\ops\tril_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3963202Z copying torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3970757Z copying torch\include\ATen\ops\tril_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3977700Z copying torch\include\ATen\ops\tril_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3985394Z copying torch\include\ATen\ops\tril_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.3997036Z copying torch\include\ATen\ops\tril_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4004268Z copying torch\include\ATen\ops\tril_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4011234Z copying torch\include\ATen\ops\tril_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4018393Z copying torch\include\ATen\ops\tril_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4025406Z copying torch\include\ATen\ops\tril_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4037363Z copying torch\include\ATen\ops\triplet_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4044921Z copying torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4052597Z copying torch\include\ATen\ops\triplet_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4059811Z copying torch\include\ATen\ops\triplet_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4067089Z copying torch\include\ATen\ops\triu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4074454Z copying torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4084732Z copying torch\include\ATen\ops\triu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4092539Z copying torch\include\ATen\ops\triu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4100173Z copying torch\include\ATen\ops\triu_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4107703Z copying torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4115300Z copying torch\include\ATen\ops\triu_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4122586Z copying torch\include\ATen\ops\triu_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4129883Z copying torch\include\ATen\ops\triu_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4137103Z copying torch\include\ATen\ops\triu_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4144522Z copying torch\include\ATen\ops\triu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4151446Z copying torch\include\ATen\ops\triu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4158956Z copying torch\include\ATen\ops\triu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4165929Z copying torch\include\ATen\ops\triu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4172932Z copying torch\include\ATen\ops\true_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4180236Z copying torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4187327Z copying torch\include\ATen\ops\true_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4194473Z copying torch\include\ATen\ops\true_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4201722Z copying torch\include\ATen\ops\trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4208951Z copying torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4216260Z copying torch\include\ATen\ops\trunc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4228361Z copying torch\include\ATen\ops\trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4235371Z copying torch\include\ATen\ops\trunc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4242386Z copying torch\include\ATen\ops\trunc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4250057Z copying torch\include\ATen\ops\trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4257167Z copying torch\include\ATen\ops\trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4264306Z copying torch\include\ATen\ops\type_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4271189Z copying torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4278626Z copying torch\include\ATen\ops\type_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4285416Z copying torch\include\ATen\ops\type_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4292713Z copying torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4299800Z copying torch\include\ATen\ops\t_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4307060Z copying torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4314203Z copying torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4321462Z copying torch\include\ATen\ops\t_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4328257Z copying torch\include\ATen\ops\t_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4335412Z copying torch\include\ATen\ops\t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4341932Z copying torch\include\ATen\ops\t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4348764Z copying torch\include\ATen\ops\unbind.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4355993Z copying torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4363138Z copying torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4370347Z copying torch\include\ATen\ops\unbind_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4378423Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4385581Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4392724Z copying torch\include\ATen\ops\unbind_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4400451Z copying torch\include\ATen\ops\unbind_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4411402Z copying torch\include\ATen\ops\unbind_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4418595Z copying torch\include\ATen\ops\unbind_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4426181Z copying torch\include\ATen\ops\unflatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4433818Z copying torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4441140Z copying torch\include\ATen\ops\unflatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4448548Z copying torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4455645Z copying torch\include\ATen\ops\unflatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4462554Z copying torch\include\ATen\ops\unflatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4469683Z copying torch\include\ATen\ops\unflatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4477702Z copying torch\include\ATen\ops\unflatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4488236Z copying torch\include\ATen\ops\unfold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4495133Z copying torch\include\ATen\ops\unfold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4522934Z copying torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4530138Z copying torch\include\ATen\ops\unfold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4537825Z copying torch\include\ATen\ops\unfold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4544600Z copying torch\include\ATen\ops\unfold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4551972Z copying torch\include\ATen\ops\unfold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4559180Z copying torch\include\ATen\ops\unfold_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4566784Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4573915Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4584806Z copying torch\include\ATen\ops\unfold_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4591867Z copying torch\include\ATen\ops\unfold_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4600014Z copying torch\include\ATen\ops\unfold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4607739Z copying torch\include\ATen\ops\unfold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4615862Z copying torch\include\ATen\ops\unfold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4624129Z copying torch\include\ATen\ops\unfold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4631866Z copying torch\include\ATen\ops\unfold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4639863Z copying torch\include\ATen\ops\uniform.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4647654Z copying torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4655643Z copying torch\include\ATen\ops\uniform_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4663067Z copying torch\include\ATen\ops\uniform_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4671037Z copying torch\include\ATen\ops\uniform_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4678168Z copying torch\include\ATen\ops\uniform_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4685186Z copying torch\include\ATen\ops\uniform_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4692688Z copying torch\include\ATen\ops\unique_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4700214Z copying torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4707476Z copying torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4714770Z copying torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4722396Z copying torch\include\ATen\ops\unique_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4729626Z copying torch\include\ATen\ops\unique_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4736910Z copying torch\include\ATen\ops\unique_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4744534Z copying torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4752098Z copying torch\include\ATen\ops\unique_dim_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4759772Z copying torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4767088Z copying torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4775091Z copying torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4782192Z copying torch\include\ATen\ops\unique_dim_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4789331Z copying torch\include\ATen\ops\unique_dim_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4797170Z copying torch\include\ATen\ops\unique_dim_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4804037Z copying torch\include\ATen\ops\unique_dim_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4811498Z copying torch\include\ATen\ops\unique_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4818654Z copying torch\include\ATen\ops\unique_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4825922Z copying torch\include\ATen\ops\unsafe_chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4833403Z copying torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4840434Z copying torch\include\ATen\ops\unsafe_chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4847447Z copying torch\include\ATen\ops\unsafe_chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4854607Z copying torch\include\ATen\ops\unsafe_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4862141Z copying torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4869516Z copying torch\include\ATen\ops\unsafe_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4876858Z copying torch\include\ATen\ops\unsafe_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4884111Z copying torch\include\ATen\ops\unsafe_split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4891809Z copying torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4899268Z copying torch\include\ATen\ops\unsafe_split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4906508Z copying torch\include\ATen\ops\unsafe_split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4913736Z copying torch\include\ATen\ops\unsqueeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4925351Z copying torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4932553Z copying torch\include\ATen\ops\unsqueeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4940167Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4947624Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4955460Z copying torch\include\ATen\ops\unsqueeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4962976Z copying torch\include\ATen\ops\unsqueeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4970295Z copying torch\include\ATen\ops\unsqueeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4977510Z copying torch\include\ATen\ops\unsqueeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4984727Z copying torch\include\ATen\ops\upsample_bicubic2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4991973Z copying torch\include\ATen\ops\upsample_bicubic2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.4999792Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5006968Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5014542Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5021856Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5029154Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5036698Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5043952Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5052163Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5059562Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5066725Z copying torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5074399Z copying torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5081721Z copying torch\include\ATen\ops\upsample_bicubic2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5089237Z copying torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5096722Z copying torch\include\ATen\ops\upsample_bicubic2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5104063Z copying torch\include\ATen\ops\upsample_bicubic2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5111236Z copying torch\include\ATen\ops\upsample_bilinear2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5118845Z copying torch\include\ATen\ops\upsample_bilinear2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5126575Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5134516Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5142463Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5149920Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5158044Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5166076Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5173880Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5182569Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5190524Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5198782Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5206229Z copying torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5213813Z copying torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5221266Z copying torch\include\ATen\ops\upsample_bilinear2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5228664Z copying torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5236196Z copying torch\include\ATen\ops\upsample_bilinear2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5243436Z copying torch\include\ATen\ops\upsample_bilinear2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5250988Z copying torch\include\ATen\ops\upsample_linear1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5258358Z copying torch\include\ATen\ops\upsample_linear1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5270661Z copying torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5278424Z copying torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5285748Z copying torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5293358Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5300670Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5312836Z copying torch\include\ATen\ops\upsample_linear1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5320536Z copying torch\include\ATen\ops\upsample_linear1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5328098Z copying torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5336011Z copying torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5342863Z copying torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5350148Z copying torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5357969Z copying torch\include\ATen\ops\upsample_linear1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5365215Z copying torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5372439Z copying torch\include\ATen\ops\upsample_linear1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5379575Z copying torch\include\ATen\ops\upsample_linear1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5386839Z copying torch\include\ATen\ops\upsample_nearest1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5394338Z copying torch\include\ATen\ops\upsample_nearest1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5402257Z copying torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5409743Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5417073Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5424653Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5431796Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5439197Z copying torch\include\ATen\ops\upsample_nearest1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5446662Z copying torch\include\ATen\ops\upsample_nearest1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5455704Z copying torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5463543Z copying torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5470958Z copying torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5478531Z copying torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5518656Z copying torch\include\ATen\ops\upsample_nearest1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5526569Z copying torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5534565Z copying torch\include\ATen\ops\upsample_nearest1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5542014Z copying torch\include\ATen\ops\upsample_nearest1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5549471Z copying torch\include\ATen\ops\upsample_nearest2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5557039Z copying torch\include\ATen\ops\upsample_nearest2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5564966Z copying torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5572671Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5580331Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5587889Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5595788Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5604053Z copying torch\include\ATen\ops\upsample_nearest2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5612348Z copying torch\include\ATen\ops\upsample_nearest2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5621755Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5629580Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5637699Z copying torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5645169Z copying torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5657414Z copying torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5665670Z copying torch\include\ATen\ops\upsample_nearest2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5673130Z copying torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5680613Z copying torch\include\ATen\ops\upsample_nearest2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5687878Z copying torch\include\ATen\ops\upsample_nearest2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5695299Z copying torch\include\ATen\ops\upsample_nearest3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5703019Z copying torch\include\ATen\ops\upsample_nearest3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5711647Z copying torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5719047Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5726525Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5733967Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5741414Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5749058Z copying torch\include\ATen\ops\upsample_nearest3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5756639Z copying torch\include\ATen\ops\upsample_nearest3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5764443Z copying torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5776286Z copying torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5783595Z copying torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5790866Z copying torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5798447Z copying torch\include\ATen\ops\upsample_nearest3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5821275Z copying torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5828625Z copying torch\include\ATen\ops\upsample_nearest3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5840020Z copying torch\include\ATen\ops\upsample_nearest3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5847591Z copying torch\include\ATen\ops\upsample_trilinear3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5855165Z copying torch\include\ATen\ops\upsample_trilinear3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5863086Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5870909Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5882200Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5889790Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5897318Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5904929Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5916606Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5925008Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5932618Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5940060Z copying torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5947518Z copying torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5955432Z copying torch\include\ATen\ops\upsample_trilinear3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5963058Z copying torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5970636Z copying torch\include\ATen\ops\upsample_trilinear3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5978221Z copying torch\include\ATen\ops\upsample_trilinear3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5985492Z copying torch\include\ATen\ops\values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5992455Z copying torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.5999944Z copying torch\include\ATen\ops\values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6007705Z copying torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6015242Z copying torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6022494Z copying torch\include\ATen\ops\values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6033640Z copying torch\include\ATen\ops\values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6041171Z copying torch\include\ATen\ops\values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6048616Z copying torch\include\ATen\ops\values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6056456Z copying torch\include\ATen\ops\value_selecting_reduction_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6064053Z copying torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6071305Z copying torch\include\ATen\ops\value_selecting_reduction_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6078762Z copying torch\include\ATen\ops\value_selecting_reduction_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6086257Z copying torch\include\ATen\ops\vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6093604Z copying torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6101036Z copying torch\include\ATen\ops\vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6109311Z copying torch\include\ATen\ops\vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6117637Z copying torch\include\ATen\ops\var.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6125037Z copying torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6132270Z copying torch\include\ATen\ops\var_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6139471Z copying torch\include\ATen\ops\var_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6152399Z copying torch\include\ATen\ops\var_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6159634Z copying torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6167247Z copying torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6174377Z copying torch\include\ATen\ops\var_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6191831Z copying torch\include\ATen\ops\var_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6197473Z copying torch\include\ATen\ops\var_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6204164Z copying torch\include\ATen\ops\var_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6216925Z copying torch\include\ATen\ops\var_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6228424Z copying torch\include\ATen\ops\var_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6229137Z copying torch\include\ATen\ops\vdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6236275Z copying torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6243185Z copying torch\include\ATen\ops\vdot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6251678Z copying torch\include\ATen\ops\vdot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6257592Z copying torch\include\ATen\ops\vdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6264461Z copying torch\include\ATen\ops\vdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6271554Z copying torch\include\ATen\ops\view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6278070Z copying torch\include\ATen\ops\view_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6284581Z copying torch\include\ATen\ops\view_as_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6291927Z copying torch\include\ATen\ops\view_as_complex_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6299509Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6307069Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6314237Z copying torch\include\ATen\ops\view_as_complex_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6321546Z copying torch\include\ATen\ops\view_as_complex_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6328876Z copying torch\include\ATen\ops\view_as_complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6336412Z copying torch\include\ATen\ops\view_as_complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6343623Z copying torch\include\ATen\ops\view_as_complex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6350597Z copying torch\include\ATen\ops\view_as_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6358434Z copying torch\include\ATen\ops\view_as_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6365363Z copying torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6372237Z copying torch\include\ATen\ops\view_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6379244Z copying torch\include\ATen\ops\view_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6386851Z copying torch\include\ATen\ops\view_as_real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6394329Z copying torch\include\ATen\ops\view_as_real_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6402981Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6410433Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6422000Z copying torch\include\ATen\ops\view_as_real_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6429494Z copying torch\include\ATen\ops\view_as_real_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6437267Z copying torch\include\ATen\ops\view_as_real_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6444824Z copying torch\include\ATen\ops\view_as_real_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6452109Z copying torch\include\ATen\ops\view_as_real_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6463444Z copying torch\include\ATen\ops\view_as_real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6470642Z copying torch\include\ATen\ops\view_as_real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6478548Z copying torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6485895Z copying torch\include\ATen\ops\view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6494592Z copying torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6511022Z copying torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6518806Z copying torch\include\ATen\ops\view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6525966Z copying torch\include\ATen\ops\view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6533019Z copying torch\include\ATen\ops\view_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6539980Z copying torch\include\ATen\ops\view_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6547688Z copying torch\include\ATen\ops\view_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6555158Z copying torch\include\ATen\ops\view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6562093Z copying torch\include\ATen\ops\view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6568562Z copying torch\include\ATen\ops\vsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6575832Z copying torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6582701Z copying torch\include\ATen\ops\vsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6589250Z copying torch\include\ATen\ops\vsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6596075Z copying torch\include\ATen\ops\vstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6603380Z copying torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6610250Z copying torch\include\ATen\ops\vstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6620677Z copying torch\include\ATen\ops\vstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6628639Z copying torch\include\ATen\ops\where.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6635547Z copying torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6642117Z copying torch\include\ATen\ops\where_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6649465Z copying torch\include\ATen\ops\where_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6664251Z copying torch\include\ATen\ops\where_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6671781Z copying torch\include\ATen\ops\where_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6678921Z copying torch\include\ATen\ops\xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6685798Z copying torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6692819Z copying torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6708639Z copying torch\include\ATen\ops\xlogy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6716810Z copying torch\include\ATen\ops\xlogy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6724452Z copying torch\include\ATen\ops\xlogy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6732797Z copying torch\include\ATen\ops\xlogy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6740733Z copying torch\include\ATen\ops\xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6748462Z copying torch\include\ATen\ops\xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6755740Z copying torch\include\ATen\ops\xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6762778Z copying torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6789758Z copying torch\include\ATen\ops\xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6796978Z copying torch\include\ATen\ops\xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6804041Z copying torch\include\ATen\ops\zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6810986Z copying torch\include\ATen\ops\zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6818709Z copying torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6825793Z copying torch\include\ATen\ops\zeros_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6833056Z copying torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6840785Z copying torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6848431Z copying torch\include\ATen\ops\zeros_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6855721Z copying torch\include\ATen\ops\zeros_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6863025Z copying torch\include\ATen\ops\zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6870281Z copying torch\include\ATen\ops\zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6878310Z copying torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6885652Z copying torch\include\ATen\ops\zero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6893038Z copying torch\include\ATen\ops\zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6900167Z copying torch\include\ATen\ops\zero_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6907013Z copying torch\include\ATen\ops\zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6914122Z copying torch\include\ATen\ops\zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6921087Z copying torch\include\ATen\ops\_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6928149Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6935860Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6943286Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6950663Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6958045Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6965494Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6973196Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6980304Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6991858Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.6999457Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7006963Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7014065Z copying torch\include\ATen\ops\_adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7021966Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7029667Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7037072Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7044466Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7051757Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7059021Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7066819Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7074061Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7081524Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7088906Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7096279Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7108719Z copying torch\include\ATen\ops\_addmm_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7117229Z copying torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7125236Z copying torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7133487Z copying torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7141557Z copying torch\include\ATen\ops\_addmm_activation_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7149779Z copying torch\include\ATen\ops\_addmm_activation_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7158146Z copying torch\include\ATen\ops\_addmm_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7166156Z copying torch\include\ATen\ops\_addmm_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7173621Z copying torch\include\ATen\ops\_add_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7181254Z copying torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7193835Z copying torch\include\ATen\ops\_add_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7201004Z copying torch\include\ATen\ops\_add_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7208523Z copying torch\include\ATen\ops\_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7215832Z copying torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7223182Z copying torch\include\ATen\ops\_add_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7230403Z copying torch\include\ATen\ops\_add_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7237635Z copying torch\include\ATen\ops\_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7244694Z copying torch\include\ATen\ops\_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7252108Z copying torch\include\ATen\ops\_aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7259317Z copying torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7266437Z copying torch\include\ATen\ops\_aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7273780Z copying torch\include\ATen\ops\_aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7280929Z copying torch\include\ATen\ops\_aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7288046Z copying torch\include\ATen\ops\_aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7296105Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7308245Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7315777Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.7323359Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8178099Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8185488Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8192934Z copying torch\include\ATen\ops\_amp_update_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8200454Z copying torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8207770Z copying torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8215071Z copying torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8222196Z copying torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8229958Z copying torch\include\ATen\ops\_amp_update_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8237215Z copying torch\include\ATen\ops\_amp_update_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8244424Z copying torch\include\ATen\ops\_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8251669Z copying torch\include\ATen\ops\_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8260690Z copying torch\include\ATen\ops\_assert_async_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8272597Z copying torch\include\ATen\ops\_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8280164Z copying torch\include\ATen\ops\_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8287463Z copying torch\include\ATen\ops\_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8295708Z copying torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8302932Z copying torch\include\ATen\ops\_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8310164Z copying torch\include\ATen\ops\_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8318306Z copying torch\include\ATen\ops\_assert_tensor_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8340036Z copying torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8347447Z copying torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8354952Z copying torch\include\ATen\ops\_assert_tensor_metadata_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8362750Z copying torch\include\ATen\ops\_assert_tensor_metadata_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8370069Z copying torch\include\ATen\ops\_autocast_to_full_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8377633Z copying torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8385031Z copying torch\include\ATen\ops\_autocast_to_full_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8392186Z copying torch\include\ATen\ops\_autocast_to_full_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8399724Z copying torch\include\ATen\ops\_autocast_to_reduced_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8407276Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8415272Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8422583Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8430156Z copying torch\include\ATen\ops\_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8445947Z copying torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8453206Z copying torch\include\ATen\ops\_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8460550Z copying torch\include\ATen\ops\_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8468047Z copying torch\include\ATen\ops\_batch_norm_impl_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8475704Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8483372Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8490723Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8498878Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8539626Z copying torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8547234Z copying torch\include\ATen\ops\_batch_norm_impl_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8554617Z copying torch\include\ATen\ops\_batch_norm_impl_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8562148Z copying torch\include\ATen\ops\_batch_norm_no_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8570025Z copying torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8577603Z copying torch\include\ATen\ops\_batch_norm_no_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8584938Z copying torch\include\ATen\ops\_batch_norm_no_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8592647Z copying torch\include\ATen\ops\_batch_norm_with_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8600723Z copying torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8608528Z copying torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8616236Z copying torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8624113Z copying torch\include\ATen\ops\_batch_norm_with_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8631193Z copying torch\include\ATen\ops\_batch_norm_with_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8638933Z copying torch\include\ATen\ops\_cast_Byte.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8646410Z copying torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8653432Z copying torch\include\ATen\ops\_cast_Byte_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8660283Z copying torch\include\ATen\ops\_cast_Byte_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8667375Z copying torch\include\ATen\ops\_cast_Char.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8674946Z copying torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8682314Z copying torch\include\ATen\ops\_cast_Char_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8689717Z copying torch\include\ATen\ops\_cast_Char_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8696892Z copying torch\include\ATen\ops\_cast_Double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8704308Z copying torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8711280Z copying torch\include\ATen\ops\_cast_Double_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8718348Z copying torch\include\ATen\ops\_cast_Double_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8725400Z copying torch\include\ATen\ops\_cast_Float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8763284Z copying torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8770079Z copying torch\include\ATen\ops\_cast_Float_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8777294Z copying torch\include\ATen\ops\_cast_Float_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8784665Z copying torch\include\ATen\ops\_cast_Half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8793191Z copying torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8800267Z copying torch\include\ATen\ops\_cast_Half_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8807188Z copying torch\include\ATen\ops\_cast_Half_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8814348Z copying torch\include\ATen\ops\_cast_Int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8821765Z copying torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8829019Z copying torch\include\ATen\ops\_cast_Int_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8836507Z copying torch\include\ATen\ops\_cast_Int_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8843188Z copying torch\include\ATen\ops\_cast_Long.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8850898Z copying torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8858360Z copying torch\include\ATen\ops\_cast_Long_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8865539Z copying torch\include\ATen\ops\_cast_Long_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8872845Z copying torch\include\ATen\ops\_cast_Short.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8885684Z copying torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8893189Z copying torch\include\ATen\ops\_cast_Short_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8900262Z copying torch\include\ATen\ops\_cast_Short_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8907702Z copying torch\include\ATen\ops\_cdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8915385Z copying torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8922694Z copying torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8930090Z copying torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8937592Z copying torch\include\ATen\ops\_cdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8945103Z copying torch\include\ATen\ops\_cdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8952549Z copying torch\include\ATen\ops\_cdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8960289Z copying torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8967724Z copying torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8975121Z copying torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8982442Z copying torch\include\ATen\ops\_cdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.8989944Z copying torch\include\ATen\ops\_cdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9002560Z copying torch\include\ATen\ops\_cholesky_solve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9010236Z copying torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9017773Z copying torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9025100Z copying torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9032470Z copying torch\include\ATen\ops\_cholesky_solve_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9044442Z copying torch\include\ATen\ops\_cholesky_solve_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9051918Z copying torch\include\ATen\ops\_choose_qparams_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9059490Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9066875Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9074042Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9081611Z copying torch\include\ATen\ops\_chunk_cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9089250Z copying torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9096512Z copying torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9104152Z copying torch\include\ATen\ops\_chunk_cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9112017Z copying torch\include\ATen\ops\_chunk_cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9123831Z copying torch\include\ATen\ops\_coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9137945Z copying torch\include\ATen\ops\_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9142251Z copying torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9150531Z copying torch\include\ATen\ops\_coalesced_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9158779Z copying torch\include\ATen\ops\_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9171143Z copying torch\include\ATen\ops\_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9179704Z copying torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9188137Z copying torch\include\ATen\ops\_coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9196462Z copying torch\include\ATen\ops\_coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9203721Z copying torch\include\ATen\ops\_compute_linear_combination.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9212034Z copying torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9219319Z copying torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9226490Z copying torch\include\ATen\ops\_compute_linear_combination_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9234008Z copying torch\include\ATen\ops\_compute_linear_combination_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9241091Z copying torch\include\ATen\ops\_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9248089Z copying torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9255128Z copying torch\include\ATen\ops\_conj_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9263144Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9270352Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9277744Z copying torch\include\ATen\ops\_conj_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9284892Z copying torch\include\ATen\ops\_conj_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9291952Z copying torch\include\ATen\ops\_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9298839Z copying torch\include\ATen\ops\_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9306198Z copying torch\include\ATen\ops\_conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9313775Z copying torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9321066Z copying torch\include\ATen\ops\_conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9328349Z copying torch\include\ATen\ops\_conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9335628Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9343332Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9350729Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9358256Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9365454Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9372724Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9380154Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9387275Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9394857Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9403900Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9411013Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9418503Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9425950Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9437882Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9445315Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9452589Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9459830Z copying torch\include\ATen\ops\_convert_weight_to_int4pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9467233Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9474877Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9482457Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9489840Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9497003Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9503983Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9525900Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9533491Z copying torch\include\ATen\ops\_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9541303Z copying torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9549385Z copying torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9556515Z copying torch\include\ATen\ops\_convolution_double_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9564305Z copying torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9572335Z copying torch\include\ATen\ops\_convolution_double_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9579856Z copying torch\include\ATen\ops\_convolution_double_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9587199Z copying torch\include\ATen\ops\_convolution_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9594931Z copying torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9602537Z copying torch\include\ATen\ops\_convolution_mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9610354Z copying torch\include\ATen\ops\_convolution_mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9618957Z copying torch\include\ATen\ops\_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9627403Z copying torch\include\ATen\ops\_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9635785Z copying torch\include\ATen\ops\_conv_depthwise2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9644573Z copying torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9652502Z copying torch\include\ATen\ops\_conv_depthwise2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9659816Z copying torch\include\ATen\ops\_conv_depthwise2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9667146Z copying torch\include\ATen\ops\_copy_from.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9674332Z copying torch\include\ATen\ops\_copy_from_and_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9682941Z copying torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9689992Z copying torch\include\ATen\ops\_copy_from_and_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9697267Z copying torch\include\ATen\ops\_copy_from_and_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9704743Z copying torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9711813Z copying torch\include\ATen\ops\_copy_from_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9718919Z copying torch\include\ATen\ops\_copy_from_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9726004Z copying torch\include\ATen\ops\_cslt_compress.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9733463Z copying torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9740586Z copying torch\include\ATen\ops\_cslt_compress_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9747583Z copying torch\include\ATen\ops\_cslt_compress_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9760412Z copying torch\include\ATen\ops\_cslt_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9767948Z copying torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9775201Z copying torch\include\ATen\ops\_cslt_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9782420Z copying torch\include\ATen\ops\_cslt_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9790589Z copying torch\include\ATen\ops\_cslt_sparse_mm_search.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9797885Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9805347Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9812668Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9820089Z copying torch\include\ATen\ops\_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9827275Z copying torch\include\ATen\ops\_ctc_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9835124Z copying torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9842742Z copying torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9850712Z copying torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9857942Z copying torch\include\ATen\ops\_ctc_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9865544Z copying torch\include\ATen\ops\_ctc_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9873436Z copying torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9881203Z copying torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9888629Z copying torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9896121Z copying torch\include\ATen\ops\_ctc_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9903511Z copying torch\include\ATen\ops\_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9911127Z copying torch\include\ATen\ops\_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9918577Z copying torch\include\ATen\ops\_cudnn_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9926253Z copying torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9933760Z copying torch\include\ATen\ops\_cudnn_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9941183Z copying torch\include\ATen\ops\_cudnn_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9948518Z copying torch\include\ATen\ops\_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9956510Z copying torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9964061Z copying torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9971419Z copying torch\include\ATen\ops\_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9978919Z copying torch\include\ATen\ops\_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9986332Z copying torch\include\ATen\ops\_cudnn_init_dropout_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:46.9994264Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0001886Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0009369Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0016806Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0024145Z copying torch\include\ATen\ops\_cudnn_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0036093Z copying torch\include\ATen\ops\_cudnn_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0044909Z copying torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0052464Z copying torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0059982Z copying torch\include\ATen\ops\_cudnn_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0067530Z copying torch\include\ATen\ops\_cudnn_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0075860Z copying torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0083212Z copying torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0090872Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0099440Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0106519Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0114024Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0121671Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0128868Z copying torch\include\ATen\ops\_cudnn_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0136222Z copying torch\include\ATen\ops\_cudnn_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0143944Z copying torch\include\ATen\ops\_cufft_clear_plan_cache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0151355Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0164063Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0171414Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0179001Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0186563Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0194073Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0201489Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0208743Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0216239Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0223497Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0231125Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0238221Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0251139Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0258704Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0265902Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0273704Z copying torch\include\ATen\ops\_cummax_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0281069Z copying torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0288147Z copying torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0295170Z copying torch\include\ATen\ops\_cummax_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0302390Z copying torch\include\ATen\ops\_cummax_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0309621Z copying torch\include\ATen\ops\_cummin_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0316893Z copying torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0324237Z copying torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0331933Z copying torch\include\ATen\ops\_cummin_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0338931Z copying torch\include\ATen\ops\_cummin_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0346239Z copying torch\include\ATen\ops\_debug_has_internal_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0353706Z copying torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0360755Z copying torch\include\ATen\ops\_debug_has_internal_overlap_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0367467Z copying torch\include\ATen\ops\_debug_has_internal_overlap_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0374659Z copying torch\include\ATen\ops\_dimI.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0381146Z copying torch\include\ATen\ops\_dimI_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0387851Z copying torch\include\ATen\ops\_dimI_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0395158Z copying torch\include\ATen\ops\_dimV.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0401583Z copying torch\include\ATen\ops\_dimV_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0408256Z copying torch\include\ATen\ops\_dimV_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0415580Z copying torch\include\ATen\ops\_dim_arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0423223Z copying torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0430526Z copying torch\include\ATen\ops\_dim_arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0437826Z copying torch\include\ATen\ops\_dim_arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0445109Z copying torch\include\ATen\ops\_dirichlet_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0452700Z copying torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0460138Z copying torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0467877Z copying torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0475897Z copying torch\include\ATen\ops\_dirichlet_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0484334Z copying torch\include\ATen\ops\_dirichlet_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0491250Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0498994Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0506145Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0513486Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0521306Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0528444Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0536587Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0544305Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0551988Z copying torch\include\ATen\ops\_efficientzerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0560497Z copying torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0567540Z copying torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0574928Z copying torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0582934Z copying torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0590812Z copying torch\include\ATen\ops\_efficientzerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0598628Z copying torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0606303Z copying torch\include\ATen\ops\_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0614111Z copying torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0621945Z copying torch\include\ATen\ops\_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0636788Z copying torch\include\ATen\ops\_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0644599Z copying torch\include\ATen\ops\_efficient_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0652520Z copying torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0659911Z copying torch\include\ATen\ops\_efficient_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0667417Z copying torch\include\ATen\ops\_efficient_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0674873Z copying torch\include\ATen\ops\_embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0682711Z copying torch\include\ATen\ops\_embedding_bag_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0690114Z copying torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0697380Z copying torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0733362Z copying torch\include\ATen\ops\_embedding_bag_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0741217Z copying torch\include\ATen\ops\_embedding_bag_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0762816Z copying torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0763822Z copying torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0765993Z copying torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0773694Z copying torch\include\ATen\ops\_embedding_bag_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0781620Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0817682Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0825521Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0833493Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0840930Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0848234Z copying torch\include\ATen\ops\_embedding_bag_forward_only.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0856676Z copying torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0864185Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0871884Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0879809Z copying torch\include\ATen\ops\_embedding_bag_forward_only_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0887351Z copying torch\include\ATen\ops\_embedding_bag_forward_only_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0894901Z copying torch\include\ATen\ops\_embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0902650Z copying torch\include\ATen\ops\_embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0910489Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0918687Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0926451Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0934189Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0942018Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0949550Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0957568Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0965628Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0973335Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0980826Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0988090Z copying torch\include\ATen\ops\_empty_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.0996273Z copying torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1003487Z copying torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1010859Z copying torch\include\ATen\ops\_empty_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1018103Z copying torch\include\ATen\ops\_empty_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1025449Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1033218Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1041301Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1054479Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1061863Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1069324Z copying torch\include\ATen\ops\_euclidean_dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1076924Z copying torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1084662Z copying torch\include\ATen\ops\_euclidean_dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1091911Z copying torch\include\ATen\ops\_euclidean_dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1099497Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1106783Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1114242Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1121760Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1129534Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1137361Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1145302Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1152622Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1160416Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1168068Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1175657Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1183265Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1192099Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1203123Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1211226Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1220058Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1228520Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1238001Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1247646Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1256794Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1265199Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1273269Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1281341Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1289299Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1297549Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1305230Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1313108Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1320776Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1328052Z copying torch\include\ATen\ops\_fft_c2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1335511Z copying torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1343149Z copying torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1350440Z copying torch\include\ATen\ops\_fft_c2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1358184Z copying torch\include\ATen\ops\_fft_c2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1365312Z copying torch\include\ATen\ops\_fft_c2r.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1372211Z copying torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1379492Z copying torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1387218Z copying torch\include\ATen\ops\_fft_c2r_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1394529Z copying torch\include\ATen\ops\_fft_c2r_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1401621Z copying torch\include\ATen\ops\_fft_r2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1408737Z copying torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1416769Z copying torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1424168Z copying torch\include\ATen\ops\_fft_r2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1431794Z copying torch\include\ATen\ops\_fft_r2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1439307Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1446858Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1454275Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1461907Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1469178Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1477125Z copying torch\include\ATen\ops\_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1484486Z copying torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1491840Z copying torch\include\ATen\ops\_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1499383Z copying torch\include\ATen\ops\_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1507360Z copying torch\include\ATen\ops\_flash_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1514989Z copying torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1522587Z copying torch\include\ATen\ops\_flash_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1530038Z copying torch\include\ATen\ops\_flash_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1537374Z copying torch\include\ATen\ops\_foobar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1545079Z copying torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1552531Z copying torch\include\ATen\ops\_foobar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1560227Z copying torch\include\ATen\ops\_foobar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1567508Z copying torch\include\ATen\ops\_foobar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1575600Z copying torch\include\ATen\ops\_foreach_abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1583192Z copying torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1590644Z copying torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1598323Z copying torch\include\ATen\ops\_foreach_abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1605648Z copying torch\include\ATen\ops\_foreach_abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1696836Z copying torch\include\ATen\ops\_foreach_acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1704314Z copying torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1712221Z copying torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1719466Z copying torch\include\ATen\ops\_foreach_acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1726616Z copying torch\include\ATen\ops\_foreach_acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1733841Z copying torch\include\ATen\ops\_foreach_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1741309Z copying torch\include\ATen\ops\_foreach_addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1749001Z copying torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1756611Z copying torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1763768Z copying torch\include\ATen\ops\_foreach_addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1770896Z copying torch\include\ATen\ops\_foreach_addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1778262Z copying torch\include\ATen\ops\_foreach_addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1785659Z copying torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1792748Z copying torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1800255Z copying torch\include\ATen\ops\_foreach_addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1807449Z copying torch\include\ATen\ops\_foreach_addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1814982Z copying torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1822038Z copying torch\include\ATen\ops\_foreach_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1830363Z copying torch\include\ATen\ops\_foreach_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1837823Z copying torch\include\ATen\ops\_foreach_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1845582Z copying torch\include\ATen\ops\_foreach_asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1853450Z copying torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1860585Z copying torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1867943Z copying torch\include\ATen\ops\_foreach_asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1875930Z copying torch\include\ATen\ops\_foreach_asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1883095Z copying torch\include\ATen\ops\_foreach_atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1890943Z copying torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1898257Z copying torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1905529Z copying torch\include\ATen\ops\_foreach_atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1912747Z copying torch\include\ATen\ops\_foreach_atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1920151Z copying torch\include\ATen\ops\_foreach_ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1927954Z copying torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1935526Z copying torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1943273Z copying torch\include\ATen\ops\_foreach_ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1951019Z copying torch\include\ATen\ops\_foreach_ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1958653Z copying torch\include\ATen\ops\_foreach_clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1966994Z copying torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1974651Z copying torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1982089Z copying torch\include\ATen\ops\_foreach_clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1989760Z copying torch\include\ATen\ops\_foreach_clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.1997443Z copying torch\include\ATen\ops\_foreach_clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2005324Z copying torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2013020Z copying torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2020458Z copying torch\include\ATen\ops\_foreach_clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2027848Z copying torch\include\ATen\ops\_foreach_clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2035792Z copying torch\include\ATen\ops\_foreach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2043764Z copying torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2051470Z copying torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2059387Z copying torch\include\ATen\ops\_foreach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2066695Z copying torch\include\ATen\ops\_foreach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2074997Z copying torch\include\ATen\ops\_foreach_cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2082262Z copying torch\include\ATen\ops\_foreach_cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2089791Z copying torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2097368Z copying torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2105123Z copying torch\include\ATen\ops\_foreach_cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2112430Z copying torch\include\ATen\ops\_foreach_cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2120100Z copying torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2128131Z copying torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2136544Z copying torch\include\ATen\ops\_foreach_cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2143876Z copying torch\include\ATen\ops\_foreach_cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2151482Z copying torch\include\ATen\ops\_foreach_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2159459Z copying torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2167391Z copying torch\include\ATen\ops\_foreach_div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2174648Z copying torch\include\ATen\ops\_foreach_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2182149Z copying torch\include\ATen\ops\_foreach_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2199546Z copying torch\include\ATen\ops\_foreach_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2200436Z copying torch\include\ATen\ops\_foreach_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2205071Z copying torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2212353Z copying torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2219471Z copying torch\include\ATen\ops\_foreach_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2226832Z copying torch\include\ATen\ops\_foreach_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2234461Z copying torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2241615Z copying torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2248786Z copying torch\include\ATen\ops\_foreach_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2256685Z copying torch\include\ATen\ops\_foreach_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2264369Z copying torch\include\ATen\ops\_foreach_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2272502Z copying torch\include\ATen\ops\_foreach_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2280474Z copying torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2288341Z copying torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2295690Z copying torch\include\ATen\ops\_foreach_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2302912Z copying torch\include\ATen\ops\_foreach_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2310881Z copying torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2318584Z copying torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2325875Z copying torch\include\ATen\ops\_foreach_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2333411Z copying torch\include\ATen\ops\_foreach_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2340259Z copying torch\include\ATen\ops\_foreach_floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2347909Z copying torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2354976Z copying torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2362241Z copying torch\include\ATen\ops\_foreach_floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2370004Z copying torch\include\ATen\ops\_foreach_floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2377455Z copying torch\include\ATen\ops\_foreach_frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2385217Z copying torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2392620Z copying torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2400540Z copying torch\include\ATen\ops\_foreach_frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2408256Z copying torch\include\ATen\ops\_foreach_frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2415783Z copying torch\include\ATen\ops\_foreach_lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2423899Z copying torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2431321Z copying torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2438951Z copying torch\include\ATen\ops\_foreach_lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2446574Z copying torch\include\ATen\ops\_foreach_lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2454566Z copying torch\include\ATen\ops\_foreach_lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2462314Z copying torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2470654Z copying torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2478057Z copying torch\include\ATen\ops\_foreach_lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2485369Z copying torch\include\ATen\ops\_foreach_lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2493158Z copying torch\include\ATen\ops\_foreach_log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2500584Z copying torch\include\ATen\ops\_foreach_log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2508226Z copying torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2516706Z copying torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2524640Z copying torch\include\ATen\ops\_foreach_log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2537797Z copying torch\include\ATen\ops\_foreach_log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2545087Z copying torch\include\ATen\ops\_foreach_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2552925Z copying torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2560406Z copying torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2568315Z copying torch\include\ATen\ops\_foreach_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2575358Z copying torch\include\ATen\ops\_foreach_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2583286Z copying torch\include\ATen\ops\_foreach_log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2590639Z copying torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2598440Z copying torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2606205Z copying torch\include\ATen\ops\_foreach_log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2613632Z copying torch\include\ATen\ops\_foreach_log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2621616Z copying torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2629631Z copying torch\include\ATen\ops\_foreach_log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2638373Z copying torch\include\ATen\ops\_foreach_log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2646669Z copying torch\include\ATen\ops\_foreach_log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2654156Z copying torch\include\ATen\ops\_foreach_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2661512Z copying torch\include\ATen\ops\_foreach_maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2709582Z copying torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2717194Z copying torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2724537Z copying torch\include\ATen\ops\_foreach_maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2732189Z copying torch\include\ATen\ops\_foreach_maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2739644Z copying torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2747153Z copying torch\include\ATen\ops\_foreach_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2755536Z copying torch\include\ATen\ops\_foreach_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2763002Z copying torch\include\ATen\ops\_foreach_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2770516Z copying torch\include\ATen\ops\_foreach_minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2778115Z copying torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2785890Z copying torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2793389Z copying torch\include\ATen\ops\_foreach_minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2801086Z copying torch\include\ATen\ops\_foreach_minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2808924Z copying torch\include\ATen\ops\_foreach_mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2816703Z copying torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2824071Z copying torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2831732Z copying torch\include\ATen\ops\_foreach_mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2839419Z copying torch\include\ATen\ops\_foreach_mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2847011Z copying torch\include\ATen\ops\_foreach_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2854612Z copying torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2861936Z copying torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2869318Z copying torch\include\ATen\ops\_foreach_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2876838Z copying torch\include\ATen\ops\_foreach_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2884526Z copying torch\include\ATen\ops\_foreach_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2892417Z copying torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2899725Z copying torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2907198Z copying torch\include\ATen\ops\_foreach_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2944831Z copying torch\include\ATen\ops\_foreach_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2952436Z copying torch\include\ATen\ops\_foreach_pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2960230Z copying torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2967922Z copying torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2975667Z copying torch\include\ATen\ops\_foreach_pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2983017Z copying torch\include\ATen\ops\_foreach_pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2991012Z copying torch\include\ATen\ops\_foreach_reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.2998937Z copying torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3006354Z copying torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3013994Z copying torch\include\ATen\ops\_foreach_reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3021906Z copying torch\include\ATen\ops\_foreach_reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3029497Z copying torch\include\ATen\ops\_foreach_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3037578Z copying torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3045294Z copying torch\include\ATen\ops\_foreach_round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3052978Z copying torch\include\ATen\ops\_foreach_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3060760Z copying torch\include\ATen\ops\_foreach_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3068794Z copying torch\include\ATen\ops\_foreach_rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3076734Z copying torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3084172Z copying torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3092172Z copying torch\include\ATen\ops\_foreach_rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3099798Z copying torch\include\ATen\ops\_foreach_rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3107391Z copying torch\include\ATen\ops\_foreach_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3115725Z copying torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3123408Z copying torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3131515Z copying torch\include\ATen\ops\_foreach_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3139462Z copying torch\include\ATen\ops\_foreach_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3146941Z copying torch\include\ATen\ops\_foreach_sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3182140Z copying torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3189441Z copying torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3197337Z copying torch\include\ATen\ops\_foreach_sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3205249Z copying torch\include\ATen\ops\_foreach_sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3213077Z copying torch\include\ATen\ops\_foreach_sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3221323Z copying torch\include\ATen\ops\_foreach_sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3230267Z copying torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3239793Z copying torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3248828Z copying torch\include\ATen\ops\_foreach_sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3257631Z copying torch\include\ATen\ops\_foreach_sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3266483Z copying torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3274195Z copying torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3281748Z copying torch\include\ATen\ops\_foreach_sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3289316Z copying torch\include\ATen\ops\_foreach_sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3296931Z copying torch\include\ATen\ops\_foreach_sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3304700Z copying torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3311978Z copying torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3319974Z copying torch\include\ATen\ops\_foreach_sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3327111Z copying torch\include\ATen\ops\_foreach_sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3334516Z copying torch\include\ATen\ops\_foreach_sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3342298Z copying torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3349625Z copying torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3357096Z copying torch\include\ATen\ops\_foreach_sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3364436Z copying torch\include\ATen\ops\_foreach_sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3372110Z copying torch\include\ATen\ops\_foreach_tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3379548Z copying torch\include\ATen\ops\_foreach_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3387146Z copying torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3394875Z copying torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3402347Z copying torch\include\ATen\ops\_foreach_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3409855Z copying torch\include\ATen\ops\_foreach_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3417723Z copying torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3425226Z copying torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3433035Z copying torch\include\ATen\ops\_foreach_tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3440562Z copying torch\include\ATen\ops\_foreach_tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3448033Z copying torch\include\ATen\ops\_foreach_trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3455930Z copying torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3463216Z copying torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3470790Z copying torch\include\ATen\ops\_foreach_trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3478785Z copying torch\include\ATen\ops\_foreach_trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3491694Z copying torch\include\ATen\ops\_foreach_zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3498041Z copying torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3505608Z copying torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3513288Z copying torch\include\ATen\ops\_foreach_zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3521137Z copying torch\include\ATen\ops\_foreach_zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3528665Z copying torch\include\ATen\ops\_functional_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3536552Z copying torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3543951Z copying torch\include\ATen\ops\_functional_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3551528Z copying torch\include\ATen\ops\_functional_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3558896Z copying torch\include\ATen\ops\_functional_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3566447Z copying torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3573789Z copying torch\include\ATen\ops\_functional_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3581336Z copying torch\include\ATen\ops\_functional_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3588892Z copying torch\include\ATen\ops\_functional_sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3596949Z copying torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3604545Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3612748Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3620668Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3628842Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3636957Z copying torch\include\ATen\ops\_functional_sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3645071Z copying torch\include\ATen\ops\_functional_sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3653414Z copying torch\include\ATen\ops\_fused_adagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3661804Z copying torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3669967Z copying torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3677878Z copying torch\include\ATen\ops\_fused_adagrad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3685485Z copying torch\include\ATen\ops\_fused_adagrad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3693253Z copying torch\include\ATen\ops\_fused_adam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3700852Z copying torch\include\ATen\ops\_fused_adamw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3708632Z copying torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3716544Z copying torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3724099Z copying torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3731681Z copying torch\include\ATen\ops\_fused_adamw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3739134Z copying torch\include\ATen\ops\_fused_adamw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3746656Z copying torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3754131Z copying torch\include\ATen\ops\_fused_adam_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3761960Z copying torch\include\ATen\ops\_fused_adam_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3769654Z copying torch\include\ATen\ops\_fused_adam_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3776925Z copying torch\include\ATen\ops\_fused_adam_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3784224Z copying torch\include\ATen\ops\_fused_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3792142Z copying torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3800845Z copying torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3807817Z copying torch\include\ATen\ops\_fused_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3815395Z copying torch\include\ATen\ops\_fused_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3823116Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3831353Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3839031Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3846518Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3854093Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3861816Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3869166Z copying torch\include\ATen\ops\_fused_rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3877150Z copying torch\include\ATen\ops\_fused_rms_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3884454Z copying torch\include\ATen\ops\_fused_rms_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3896926Z copying torch\include\ATen\ops\_fused_rms_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3904275Z copying torch\include\ATen\ops\_fused_rms_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3911774Z copying torch\include\ATen\ops\_fused_rms_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3919285Z copying torch\include\ATen\ops\_fused_rms_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3926392Z copying torch\include\ATen\ops\_fused_rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3933751Z copying torch\include\ATen\ops\_fused_rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3941341Z copying torch\include\ATen\ops\_fused_sdp_choice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3949143Z copying torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3956301Z copying torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3964001Z copying torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3971266Z copying torch\include\ATen\ops\_fused_sdp_choice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3978864Z copying torch\include\ATen\ops\_fused_sdp_choice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3986089Z copying torch\include\ATen\ops\_fused_sgd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.3993679Z copying torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4001088Z copying torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4008632Z copying torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4016083Z copying torch\include\ATen\ops\_fused_sgd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4023363Z copying torch\include\ATen\ops\_fused_sgd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4030940Z copying torch\include\ATen\ops\_fw_primal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4038201Z copying torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4045258Z copying torch\include\ATen\ops\_fw_primal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4052772Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4060415Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4067782Z copying torch\include\ATen\ops\_fw_primal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4075069Z copying torch\include\ATen\ops\_fw_primal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4082744Z copying torch\include\ATen\ops\_fw_primal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4089320Z copying torch\include\ATen\ops\_fw_primal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4096746Z copying torch\include\ATen\ops\_gather_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4104265Z copying torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4111590Z copying torch\include\ATen\ops\_gather_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4118962Z copying torch\include\ATen\ops\_gather_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4126282Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4133652Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4141965Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4150256Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4157961Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4165645Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4173338Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4180576Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4187714Z copying torch\include\ATen\ops\_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4194986Z copying torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4202105Z copying torch\include\ATen\ops\_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4209158Z copying torch\include\ATen\ops\_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4216233Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4223616Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4230777Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4237954Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4245115Z copying torch\include\ATen\ops\_has_same_storage_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4252267Z copying torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4259124Z copying torch\include\ATen\ops\_has_same_storage_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4265730Z copying torch\include\ATen\ops\_has_same_storage_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4272702Z copying torch\include\ATen\ops\_histogramdd_bin_edges.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4279981Z copying torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4288173Z copying torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4295305Z copying torch\include\ATen\ops\_histogramdd_bin_edges_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4302328Z copying torch\include\ATen\ops\_histogramdd_bin_edges_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4310326Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4317925Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4325251Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4332297Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4339568Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4346802Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4407358Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4415001Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4423073Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4430490Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4437984Z copying torch\include\ATen\ops\_index_put_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4445578Z copying torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4453361Z copying torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4460901Z copying torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4468461Z copying torch\include\ATen\ops\_index_put_impl_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4476019Z copying torch\include\ATen\ops\_index_put_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4483488Z copying torch\include\ATen\ops\_index_put_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4491403Z copying torch\include\ATen\ops\_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4498351Z copying torch\include\ATen\ops\_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4505960Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4514411Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4521218Z copying torch\include\ATen\ops\_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4528591Z copying torch\include\ATen\ops\_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4536183Z copying torch\include\ATen\ops\_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4542817Z copying torch\include\ATen\ops\_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4550096Z copying torch\include\ATen\ops\_int_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4557158Z copying torch\include\ATen\ops\_int_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4564339Z copying torch\include\ATen\ops\_int_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4571715Z copying torch\include\ATen\ops\_int_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4578942Z copying torch\include\ATen\ops\_int_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4586240Z copying torch\include\ATen\ops\_is_all_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4593889Z copying torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4601493Z copying torch\include\ATen\ops\_is_all_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4608562Z copying torch\include\ATen\ops\_is_all_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4615852Z copying torch\include\ATen\ops\_is_any_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4623407Z copying torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4630910Z copying torch\include\ATen\ops\_is_any_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4639072Z copying torch\include\ATen\ops\_is_any_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4646805Z copying torch\include\ATen\ops\_is_zerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4654610Z copying torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4661976Z copying torch\include\ATen\ops\_is_zerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4669186Z copying torch\include\ATen\ops\_is_zerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4676606Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4684322Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4691695Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4699062Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4706227Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4713305Z copying torch\include\ATen\ops\_lazy_clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4720939Z copying torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4728381Z copying torch\include\ATen\ops\_lazy_clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4735465Z copying torch\include\ATen\ops\_lazy_clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4742543Z copying torch\include\ATen\ops\_linalg_check_errors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4750264Z copying torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4757470Z copying torch\include\ATen\ops\_linalg_check_errors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4764289Z copying torch\include\ATen\ops\_linalg_check_errors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4771558Z copying torch\include\ATen\ops\_linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4779161Z copying torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4786686Z copying torch\include\ATen\ops\_linalg_det_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4794149Z copying torch\include\ATen\ops\_linalg_det_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4801290Z copying torch\include\ATen\ops\_linalg_det_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4867180Z copying torch\include\ATen\ops\_linalg_det_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4874256Z copying torch\include\ATen\ops\_linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4882087Z copying torch\include\ATen\ops\_linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4888867Z copying torch\include\ATen\ops\_linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4896280Z copying torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4903280Z copying torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4910436Z copying torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4917680Z copying torch\include\ATen\ops\_linalg_eigh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4924864Z copying torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4932038Z copying torch\include\ATen\ops\_linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4939192Z copying torch\include\ATen\ops\_linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4949874Z copying torch\include\ATen\ops\_linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4971329Z copying torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4981817Z copying torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.4992798Z copying torch\include\ATen\ops\_linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5001794Z copying torch\include\ATen\ops\_linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5012328Z copying torch\include\ATen\ops\_linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5023243Z copying torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5032090Z copying torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5042620Z copying torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5053502Z copying torch\include\ATen\ops\_linalg_slogdet_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5062522Z copying torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5100233Z copying torch\include\ATen\ops\_linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5108026Z copying torch\include\ATen\ops\_linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5115368Z copying torch\include\ATen\ops\_linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5123308Z copying torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5130766Z copying torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5138669Z copying torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5146729Z copying torch\include\ATen\ops\_linalg_solve_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5154784Z copying torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5162315Z copying torch\include\ATen\ops\_linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5169676Z copying torch\include\ATen\ops\_linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5176978Z copying torch\include\ATen\ops\_linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5184495Z copying torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5191783Z copying torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5199242Z copying torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5206754Z copying torch\include\ATen\ops\_linalg_svd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5214009Z copying torch\include\ATen\ops\_linalg_svd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5221234Z copying torch\include\ATen\ops\_linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5228334Z copying torch\include\ATen\ops\_linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5235957Z copying torch\include\ATen\ops\_local_scalar_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5243125Z copying torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5250371Z copying torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5257975Z copying torch\include\ATen\ops\_local_scalar_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5264957Z copying torch\include\ATen\ops\_local_scalar_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5271992Z copying torch\include\ATen\ops\_logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5279600Z copying torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5286733Z copying torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5293752Z copying torch\include\ATen\ops\_logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5301139Z copying torch\include\ATen\ops\_logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5308422Z copying torch\include\ATen\ops\_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5315635Z copying torch\include\ATen\ops\_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5323353Z copying torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5330390Z copying torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5337551Z copying torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5344734Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5352340Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5359741Z copying torch\include\ATen\ops\_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5366918Z copying torch\include\ATen\ops\_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5374383Z copying torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5381821Z copying torch\include\ATen\ops\_log_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5389013Z copying torch\include\ATen\ops\_log_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5396747Z copying torch\include\ATen\ops\_log_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5404112Z copying torch\include\ATen\ops\_log_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5411477Z copying torch\include\ATen\ops\_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5418609Z copying torch\include\ATen\ops\_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5425704Z copying torch\include\ATen\ops\_lstm_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5432976Z copying torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5440259Z copying torch\include\ATen\ops\_lstm_mps_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5447668Z copying torch\include\ATen\ops\_lstm_mps_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5454820Z copying torch\include\ATen\ops\_lu_with_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5462126Z copying torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5469193Z copying torch\include\ATen\ops\_lu_with_info_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5476311Z copying torch\include\ATen\ops\_lu_with_info_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5483525Z copying torch\include\ATen\ops\_make_dep_token.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5490840Z copying torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5497953Z copying torch\include\ATen\ops\_make_dep_token_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5505177Z copying torch\include\ATen\ops\_make_dep_token_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5512160Z copying torch\include\ATen\ops\_make_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5519413Z copying torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5527792Z copying torch\include\ATen\ops\_make_dual_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5535308Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5542720Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5550183Z copying torch\include\ATen\ops\_make_dual_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5557362Z copying torch\include\ATen\ops\_make_dual_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5564463Z copying torch\include\ATen\ops\_make_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5571354Z copying torch\include\ATen\ops\_make_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5578619Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5586152Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5593543Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5601301Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5608669Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5617471Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5624914Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5632470Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5640213Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5648771Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5657366Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5666199Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5676324Z copying torch\include\ATen\ops\_masked_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5686312Z copying torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5693343Z copying torch\include\ATen\ops\_masked_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5700515Z copying torch\include\ATen\ops\_masked_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5707603Z copying torch\include\ATen\ops\_masked_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5714466Z copying torch\include\ATen\ops\_masked_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5721765Z copying torch\include\ATen\ops\_masked_softmax_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5729097Z copying torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5736688Z copying torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5744083Z copying torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5751913Z copying torch\include\ATen\ops\_masked_softmax_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5758993Z copying torch\include\ATen\ops\_masked_softmax_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5766704Z copying torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5774024Z copying torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5781751Z copying torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5789395Z copying torch\include\ATen\ops\_masked_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5797191Z copying torch\include\ATen\ops\_masked_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5804625Z copying torch\include\ATen\ops\_mixed_dtypes_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5812001Z copying torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5819221Z copying torch\include\ATen\ops\_mixed_dtypes_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5826765Z copying torch\include\ATen\ops\_mixed_dtypes_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5834551Z copying torch\include\ATen\ops\_mkldnn_reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5842203Z copying torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5849305Z copying torch\include\ATen\ops\_mkldnn_reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5856839Z copying torch\include\ATen\ops\_mkldnn_reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5864030Z copying torch\include\ATen\ops\_mkldnn_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5871984Z copying torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5879903Z copying torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5887474Z copying torch\include\ATen\ops\_mkldnn_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5895541Z copying torch\include\ATen\ops\_mkldnn_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5902933Z copying torch\include\ATen\ops\_mps_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5910721Z copying torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5978278Z copying torch\include\ATen\ops\_mps_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5985844Z copying torch\include\ATen\ops\_mps_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.5993219Z copying torch\include\ATen\ops\_mps_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6001108Z copying torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6008499Z copying torch\include\ATen\ops\_mps_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6016085Z copying torch\include\ATen\ops\_mps_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6024574Z copying torch\include\ATen\ops\_native_batch_norm_legit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6032430Z copying torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6040276Z copying torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6047667Z copying torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6055441Z copying torch\include\ATen\ops\_native_batch_norm_legit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6062946Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6071485Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6080753Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6088658Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6096430Z copying torch\include\ATen\ops\_native_batch_norm_legit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6104332Z copying torch\include\ATen\ops\_native_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6112025Z copying torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6119757Z copying torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6127487Z copying torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6134834Z copying torch\include\ATen\ops\_native_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6143684Z copying torch\include\ATen\ops\_native_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6152873Z copying torch\include\ATen\ops\_neg_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6161414Z copying torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6169848Z copying torch\include\ATen\ops\_neg_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6178936Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6188287Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6196702Z copying torch\include\ATen\ops\_neg_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6203616Z copying torch\include\ATen\ops\_neg_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6211064Z copying torch\include\ATen\ops\_neg_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6217992Z copying torch\include\ATen\ops\_neg_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6225356Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6233052Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6240352Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6247573Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6255367Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6262361Z copying torch\include\ATen\ops\_nested_from_padded.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6269738Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6277385Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6284668Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6292244Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6300660Z copying torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6308123Z copying torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6316075Z copying torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6323204Z copying torch\include\ATen\ops\_nested_from_padded_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6330509Z copying torch\include\ATen\ops\_nested_from_padded_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6338032Z copying torch\include\ATen\ops\_nested_from_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6345317Z copying torch\include\ATen\ops\_nested_from_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6352353Z copying torch\include\ATen\ops\_nested_from_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6359633Z copying torch\include\ATen\ops\_nested_get_jagged_dummy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6366938Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6373912Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6381250Z copying torch\include\ATen\ops\_nested_get_lengths.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6388727Z copying torch\include\ATen\ops\_nested_get_lengths_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6396005Z copying torch\include\ATen\ops\_nested_get_lengths_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6404238Z copying torch\include\ATen\ops\_nested_get_max_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6411685Z copying torch\include\ATen\ops\_nested_get_max_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6418771Z copying torch\include\ATen\ops\_nested_get_max_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6426600Z copying torch\include\ATen\ops\_nested_get_min_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6434282Z copying torch\include\ATen\ops\_nested_get_min_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6441632Z copying torch\include\ATen\ops\_nested_get_min_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6448934Z copying torch\include\ATen\ops\_nested_get_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6456367Z copying torch\include\ATen\ops\_nested_get_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6463514Z copying torch\include\ATen\ops\_nested_get_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6471244Z copying torch\include\ATen\ops\_nested_get_ragged_idx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6478640Z copying torch\include\ATen\ops\_nested_get_ragged_idx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6485942Z copying torch\include\ATen\ops\_nested_get_ragged_idx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6493472Z copying torch\include\ATen\ops\_nested_get_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6500884Z copying torch\include\ATen\ops\_nested_get_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6509636Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6517371Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6524955Z copying torch\include\ATen\ops\_nested_get_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6532493Z copying torch\include\ATen\ops\_nested_get_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6539957Z copying torch\include\ATen\ops\_nested_get_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6547013Z copying torch\include\ATen\ops\_nested_get_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6554832Z copying torch\include\ATen\ops\_nested_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6562297Z copying torch\include\ATen\ops\_nested_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6569780Z copying torch\include\ATen\ops\_nested_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6577092Z copying torch\include\ATen\ops\_nested_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6584989Z copying torch\include\ATen\ops\_nested_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6592500Z copying torch\include\ATen\ops\_nested_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6600025Z copying torch\include\ATen\ops\_nested_tensor_from_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6607828Z copying torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6615278Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6622977Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6630629Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6638297Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6645924Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6653545Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6661683Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6669780Z copying torch\include\ATen\ops\_nested_tensor_from_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6677529Z copying torch\include\ATen\ops\_nested_tensor_from_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6685592Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6693184Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6700694Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6708411Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6716113Z copying torch\include\ATen\ops\_nested_tensor_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6723572Z copying torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6730863Z copying torch\include\ATen\ops\_nested_tensor_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6738143Z copying torch\include\ATen\ops\_nested_tensor_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6745786Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6754486Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6763155Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6771330Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6779943Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6788590Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6797284Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6805160Z copying torch\include\ATen\ops\_nested_tensor_strides.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6812906Z copying torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6820229Z copying torch\include\ATen\ops\_nested_tensor_strides_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6827697Z copying torch\include\ATen\ops\_nested_tensor_strides_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6835326Z copying torch\include\ATen\ops\_nested_view_from_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6842726Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6850522Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6858566Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6866074Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6873505Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6881270Z copying torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6888959Z copying torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6896592Z copying torch\include\ATen\ops\_nested_view_from_buffer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6903947Z copying torch\include\ATen\ops\_nested_view_from_buffer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6911689Z copying torch\include\ATen\ops\_nested_view_from_jagged.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6925963Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6930803Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6938794Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6946064Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6953592Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6961445Z copying torch\include\ATen\ops\_nested_view_from_jagged_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6968603Z copying torch\include\ATen\ops\_nested_view_from_jagged_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6976089Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6984176Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.6991794Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7000031Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7039437Z copying torch\include\ATen\ops\_nnpack_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7047017Z copying torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7054473Z copying torch\include\ATen\ops\_nnpack_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7062596Z copying torch\include\ATen\ops\_nnpack_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7071027Z copying torch\include\ATen\ops\_nnpack_spatial_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7079066Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7086778Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7094077Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7101578Z copying torch\include\ATen\ops\_nnz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7108083Z copying torch\include\ATen\ops\_nnz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7114909Z copying torch\include\ATen\ops\_nnz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7122149Z copying torch\include\ATen\ops\_pack_padded_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7129378Z copying torch\include\ATen\ops\_pack_padded_sequence_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7136903Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7157544Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7164999Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7172767Z copying torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7179905Z copying torch\include\ATen\ops\_pack_padded_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7187168Z copying torch\include\ATen\ops\_pack_padded_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7194537Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7201762Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7209851Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7217038Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7224304Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7231608Z copying torch\include\ATen\ops\_pad_circular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7238949Z copying torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7246302Z copying torch\include\ATen\ops\_pad_circular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7253129Z copying torch\include\ATen\ops\_pad_circular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7260230Z copying torch\include\ATen\ops\_pad_enum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7267444Z copying torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7274598Z copying torch\include\ATen\ops\_pad_enum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7281455Z copying torch\include\ATen\ops\_pad_enum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7288539Z copying torch\include\ATen\ops\_pad_packed_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7295954Z copying torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7303991Z copying torch\include\ATen\ops\_pad_packed_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7311398Z copying torch\include\ATen\ops\_pad_packed_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7318817Z copying torch\include\ATen\ops\_pdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7326330Z copying torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7333525Z copying torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7341014Z copying torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7348499Z copying torch\include\ATen\ops\_pdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7356069Z copying torch\include\ATen\ops\_pdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7363559Z copying torch\include\ATen\ops\_pdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7371167Z copying torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7378556Z copying torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7385604Z copying torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7392863Z copying torch\include\ATen\ops\_pdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7400770Z copying torch\include\ATen\ops\_pdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7407815Z copying torch\include\ATen\ops\_pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7415210Z copying torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7422343Z copying torch\include\ATen\ops\_pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7429683Z copying torch\include\ATen\ops\_pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7439393Z copying torch\include\ATen\ops\_prelu_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7444786Z copying torch\include\ATen\ops\_prelu_kernel_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7452117Z copying torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7459480Z copying torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7467141Z copying torch\include\ATen\ops\_prelu_kernel_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7474629Z copying torch\include\ATen\ops\_prelu_kernel_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7482008Z copying torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7489354Z copying torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7497190Z copying torch\include\ATen\ops\_prelu_kernel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7504745Z copying torch\include\ATen\ops\_prelu_kernel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7512254Z copying torch\include\ATen\ops\_print.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7519412Z copying torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7541841Z copying torch\include\ATen\ops\_print_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7548821Z copying torch\include\ATen\ops\_print_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7556286Z copying torch\include\ATen\ops\_propagate_xla_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7563786Z copying torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7571285Z copying torch\include\ATen\ops\_propagate_xla_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7578441Z copying torch\include\ATen\ops\_propagate_xla_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7585704Z copying torch\include\ATen\ops\_remove_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7593434Z copying torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7600936Z copying torch\include\ATen\ops\_remove_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7608094Z copying torch\include\ATen\ops\_remove_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7615529Z copying torch\include\ATen\ops\_reshape_alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7622698Z copying torch\include\ATen\ops\_reshape_alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7631126Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7638220Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7645320Z copying torch\include\ATen\ops\_reshape_alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7653075Z copying torch\include\ATen\ops\_reshape_alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7660534Z copying torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7668061Z copying torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7675141Z copying torch\include\ATen\ops\_reshape_alias_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7682245Z copying torch\include\ATen\ops\_reshape_alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7689210Z copying torch\include\ATen\ops\_reshape_alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7696823Z copying torch\include\ATen\ops\_reshape_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7704142Z copying torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7711328Z copying torch\include\ATen\ops\_reshape_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7718354Z copying torch\include\ATen\ops\_reshape_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7725523Z copying torch\include\ATen\ops\_reshape_from_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7732973Z copying torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7740142Z copying torch\include\ATen\ops\_reshape_from_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7747178Z copying torch\include\ATen\ops\_reshape_from_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7754605Z copying torch\include\ATen\ops\_resize_output.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7762293Z copying torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7769212Z copying torch\include\ATen\ops\_resize_output_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7776358Z copying torch\include\ATen\ops\_resize_output_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7783480Z copying torch\include\ATen\ops\_resize_output_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7790653Z copying torch\include\ATen\ops\_rowwise_prune.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7798157Z copying torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7805364Z copying torch\include\ATen\ops\_rowwise_prune_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7812819Z copying torch\include\ATen\ops\_rowwise_prune_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7820688Z copying torch\include\ATen\ops\_safe_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7828010Z copying torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7835229Z copying torch\include\ATen\ops\_safe_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7841947Z copying torch\include\ATen\ops\_safe_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7849110Z copying torch\include\ATen\ops\_sample_dirichlet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7856670Z copying torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7864281Z copying torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7871663Z copying torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7879501Z copying torch\include\ATen\ops\_sample_dirichlet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7886500Z copying torch\include\ATen\ops\_sample_dirichlet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7893824Z copying torch\include\ATen\ops\_saturate_weight_to_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7901491Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7909445Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7916559Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7924191Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7931920Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7939457Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7947309Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7954746Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7962387Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7969871Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7977496Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7985310Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.7993432Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8001442Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8008981Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8016535Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8024392Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8031817Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8039268Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8046767Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8054414Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8062327Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8069774Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8077687Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8085084Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8092546Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8099972Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8107506Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8115223Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8122632Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8130283Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8138467Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8145844Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8153490Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8161715Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8169950Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8177729Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8185194Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8192583Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8200250Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8207779Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8215130Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8223056Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8231795Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8240523Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8249016Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8260262Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8268927Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8277082Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8284862Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8292398Z copying torch\include\ATen\ops\_scaled_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8299690Z copying torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8307103Z copying torch\include\ATen\ops\_scaled_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8314079Z copying torch\include\ATen\ops\_scaled_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8321308Z copying torch\include\ATen\ops\_scaled_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8328579Z copying torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8335543Z copying torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8342502Z copying torch\include\ATen\ops\_scaled_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8350814Z copying torch\include\ATen\ops\_scaled_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8358096Z copying torch\include\ATen\ops\_segment_reduce_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8365470Z copying torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8372438Z copying torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8379996Z copying torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8387382Z copying torch\include\ATen\ops\_segment_reduce_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8409550Z copying torch\include\ATen\ops\_segment_reduce_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8416454Z copying torch\include\ATen\ops\_shape_as_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8423722Z copying torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8430400Z copying torch\include\ATen\ops\_shape_as_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8437347Z copying torch\include\ATen\ops\_shape_as_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8444516Z copying torch\include\ATen\ops\_slow_conv2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8451777Z copying torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8458671Z copying torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8465891Z copying torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8472882Z copying torch\include\ATen\ops\_slow_conv2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8480722Z copying torch\include\ATen\ops\_slow_conv2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8488466Z copying torch\include\ATen\ops\_slow_conv2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8495979Z copying torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8503006Z copying torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8510258Z copying torch\include\ATen\ops\_slow_conv2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8517548Z copying torch\include\ATen\ops\_slow_conv2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8525098Z copying torch\include\ATen\ops\_sobol_engine_draw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8532805Z copying torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8539819Z copying torch\include\ATen\ops\_sobol_engine_draw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8547044Z copying torch\include\ATen\ops\_sobol_engine_draw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8554253Z copying torch\include\ATen\ops\_sobol_engine_ff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8561931Z copying torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8569497Z copying torch\include\ATen\ops\_sobol_engine_ff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8576746Z copying torch\include\ATen\ops\_sobol_engine_ff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8584054Z copying torch\include\ATen\ops\_sobol_engine_initialize_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8591740Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8599088Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8606184Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8613395Z copying torch\include\ATen\ops\_sobol_engine_scramble.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8621308Z copying torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8628541Z copying torch\include\ATen\ops\_sobol_engine_scramble_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8635863Z copying torch\include\ATen\ops\_sobol_engine_scramble_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8643011Z copying torch\include\ATen\ops\_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8649819Z copying torch\include\ATen\ops\_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8657341Z copying torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8664572Z copying torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8672852Z copying torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8680848Z copying torch\include\ATen\ops\_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8689009Z copying torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8696712Z copying torch\include\ATen\ops\_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8704371Z copying torch\include\ATen\ops\_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8712459Z copying torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8719724Z copying torch\include\ATen\ops\_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8727146Z copying torch\include\ATen\ops\_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8734082Z copying torch\include\ATen\ops\_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8741465Z copying torch\include\ATen\ops\_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8748393Z copying torch\include\ATen\ops\_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8755428Z copying torch\include\ATen\ops\_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8762479Z copying torch\include\ATen\ops\_sparse_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8769521Z copying torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8776387Z copying torch\include\ATen\ops\_sparse_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8783133Z copying torch\include\ATen\ops\_sparse_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8790152Z copying torch\include\ATen\ops\_sparse_broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8797437Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8805241Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8813159Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8820303Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8827693Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8835115Z copying torch\include\ATen\ops\_sparse_broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8842059Z copying torch\include\ATen\ops\_sparse_broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8849206Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8856939Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8864109Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8871633Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8879013Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8886651Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8900868Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8908209Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8915883Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8923594Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8931046Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8938551Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8946339Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8954197Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8961807Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8969779Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8977311Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8985445Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.8993062Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9000783Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9008408Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9015877Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9024043Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9031725Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9039426Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9047143Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9055198Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9062823Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9070258Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9078390Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9085949Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9093369Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9100938Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9126109Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9133422Z copying torch\include\ATen\ops\_sparse_csr_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9141234Z copying torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9148595Z copying torch\include\ATen\ops\_sparse_csr_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9156202Z copying torch\include\ATen\ops\_sparse_csr_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9163522Z copying torch\include\ATen\ops\_sparse_csr_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9171768Z copying torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9179313Z copying torch\include\ATen\ops\_sparse_csr_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9187503Z copying torch\include\ATen\ops\_sparse_csr_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9195620Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9203457Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9210957Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9218690Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9226352Z copying torch\include\ATen\ops\_sparse_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9233595Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9241658Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9249191Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9256934Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9264643Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9285373Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9292502Z copying torch\include\ATen\ops\_sparse_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9299710Z copying torch\include\ATen\ops\_sparse_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9306966Z copying torch\include\ATen\ops\_sparse_mask_projection.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9314580Z copying torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9322087Z copying torch\include\ATen\ops\_sparse_mask_projection_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9329487Z copying torch\include\ATen\ops\_sparse_mask_projection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9336656Z copying torch\include\ATen\ops\_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9344386Z copying torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9351670Z copying torch\include\ATen\ops\_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9359545Z copying torch\include\ATen\ops\_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9366789Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9374486Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9382053Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9389541Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9397189Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9404612Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9412122Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9419967Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9427539Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9435595Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9443223Z copying torch\include\ATen\ops\_sparse_semi_structured_apply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9450999Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9458910Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9466584Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9474206Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9481857Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9489372Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9496931Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9509796Z copying torch\include\ATen\ops\_sparse_semi_structured_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9518037Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9525261Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9532842Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9541114Z copying torch\include\ATen\ops\_sparse_semi_structured_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9548789Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9556719Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9564163Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9581482Z copying torch\include\ATen\ops\_sparse_semi_structured_tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9589555Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9596906Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9641933Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9649171Z copying torch\include\ATen\ops\_sparse_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9656906Z copying torch\include\ATen\ops\_sparse_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9664716Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9672438Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9680154Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9687949Z copying torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9695986Z copying torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9703197Z copying torch\include\ATen\ops\_sparse_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9710526Z copying torch\include\ATen\ops\_sparse_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9718482Z copying torch\include\ATen\ops\_sparse_sparse_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9726046Z copying torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9733474Z copying torch\include\ATen\ops\_sparse_sparse_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9741018Z copying torch\include\ATen\ops\_sparse_sparse_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9748332Z copying torch\include\ATen\ops\_sparse_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9755764Z copying torch\include\ATen\ops\_sparse_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9763269Z copying torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9770556Z copying torch\include\ATen\ops\_sparse_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9777898Z copying torch\include\ATen\ops\_sparse_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9785577Z copying torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9793006Z copying torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9801073Z copying torch\include\ATen\ops\_sparse_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9809107Z copying torch\include\ATen\ops\_sparse_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9817325Z copying torch\include\ATen\ops\_spdiags.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9824958Z copying torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9832204Z copying torch\include\ATen\ops\_spdiags_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9839784Z copying torch\include\ATen\ops\_spdiags_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9847347Z copying torch\include\ATen\ops\_spdiags_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9854544Z copying torch\include\ATen\ops\_spsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9861521Z copying torch\include\ATen\ops\_spsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9868933Z copying torch\include\ATen\ops\_spsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9876325Z copying torch\include\ATen\ops\_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9883632Z copying torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9890757Z copying torch\include\ATen\ops\_stack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9898221Z copying torch\include\ATen\ops\_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9905569Z copying torch\include\ATen\ops\_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9912883Z copying torch\include\ATen\ops\_standard_gamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9920495Z copying torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9927706Z copying torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9935227Z copying torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9942585Z copying torch\include\ATen\ops\_standard_gamma_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9950669Z copying torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9958314Z copying torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9965898Z copying torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9973406Z copying torch\include\ATen\ops\_standard_gamma_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9980793Z copying torch\include\ATen\ops\_standard_gamma_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9988587Z copying torch\include\ATen\ops\_standard_gamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:47.9996065Z copying torch\include\ATen\ops\_standard_gamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0003497Z copying torch\include\ATen\ops\_test_ambiguous_defaults.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0011207Z copying torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0018817Z copying torch\include\ATen\ops\_test_ambiguous_defaults_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0026151Z copying torch\include\ATen\ops\_test_ambiguous_defaults_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0033679Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0041909Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0049872Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0056761Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0064210Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0071612Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0079654Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0087064Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0095208Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0102754Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0110305Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0117737Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0125085Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0132279Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0139926Z copying torch\include\ATen\ops\_test_check_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0147782Z copying torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0155350Z copying torch\include\ATen\ops\_test_check_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0162520Z copying torch\include\ATen\ops\_test_check_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0170010Z copying torch\include\ATen\ops\_test_functorch_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0177571Z copying torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0184806Z copying torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0192563Z copying torch\include\ATen\ops\_test_functorch_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0200041Z copying torch\include\ATen\ops\_test_functorch_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0207288Z copying torch\include\ATen\ops\_test_optional_filled_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0214823Z copying torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0222458Z copying torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0230644Z copying torch\include\ATen\ops\_test_optional_filled_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0238323Z copying torch\include\ATen\ops\_test_optional_filled_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0245868Z copying torch\include\ATen\ops\_test_optional_floatlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0254230Z copying torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0261824Z copying torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0270055Z copying torch\include\ATen\ops\_test_optional_floatlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0278442Z copying torch\include\ATen\ops\_test_optional_floatlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0292789Z copying torch\include\ATen\ops\_test_optional_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0300710Z copying torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0308696Z copying torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0316513Z copying torch\include\ATen\ops\_test_optional_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0323944Z copying torch\include\ATen\ops\_test_optional_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0331287Z copying torch\include\ATen\ops\_test_parallel_materialize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0339177Z copying torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0346760Z copying torch\include\ATen\ops\_test_parallel_materialize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0354163Z copying torch\include\ATen\ops\_test_parallel_materialize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0361563Z copying torch\include\ATen\ops\_test_serialization_subcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0369160Z copying torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0376632Z copying torch\include\ATen\ops\_test_serialization_subcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0383910Z copying torch\include\ATen\ops\_test_serialization_subcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0390951Z copying torch\include\ATen\ops\_test_string_default.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0398892Z copying torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0405762Z copying torch\include\ATen\ops\_test_string_default_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0412985Z copying torch\include\ATen\ops\_test_string_default_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0420306Z copying torch\include\ATen\ops\_test_warn_in_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0428409Z copying torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0435532Z copying torch\include\ATen\ops\_test_warn_in_autograd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0442741Z copying torch\include\ATen\ops\_test_warn_in_autograd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0450218Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0458144Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0465962Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0473116Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0480680Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0488646Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0496267Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0504085Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0511228Z copying torch\include\ATen\ops\_thnn_fused_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0519258Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0527199Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0534712Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0542455Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0550089Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0557738Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0565119Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0572772Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0580067Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0587767Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0595361Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0603138Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0610635Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0618760Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0626495Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0633905Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0641491Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0662650Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0670069Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0678344Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0686047Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0694622Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0702352Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0709750Z copying torch\include\ATen\ops\_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0717223Z copying torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0724317Z copying torch\include\ATen\ops\_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0731692Z copying torch\include\ATen\ops\_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0738885Z copying torch\include\ATen\ops\_to_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0746496Z copying torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0753362Z copying torch\include\ATen\ops\_to_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0760189Z copying torch\include\ATen\ops\_to_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0767177Z copying torch\include\ATen\ops\_to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0774735Z copying torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0781959Z copying torch\include\ATen\ops\_to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0789094Z copying torch\include\ATen\ops\_to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0797007Z copying torch\include\ATen\ops\_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0803840Z copying torch\include\ATen\ops\_to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0811164Z copying torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0818061Z copying torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0825124Z copying torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0832426Z copying torch\include\ATen\ops\_to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0840051Z copying torch\include\ATen\ops\_to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0847396Z copying torch\include\ATen\ops\_to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0855406Z copying torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0862667Z copying torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0870077Z copying torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0877369Z copying torch\include\ATen\ops\_to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0884920Z copying torch\include\ATen\ops\_to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0892320Z copying torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0899630Z copying torch\include\ATen\ops\_to_sparse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0907061Z copying torch\include\ATen\ops\_to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0914679Z copying torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0922753Z copying torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0929328Z copying torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0936758Z copying torch\include\ATen\ops\_to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0944184Z copying torch\include\ATen\ops\_to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0951320Z copying torch\include\ATen\ops\_to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0959033Z copying torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0966971Z copying torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0974379Z copying torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0981700Z copying torch\include\ATen\ops\_to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0989128Z copying torch\include\ATen\ops\_to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.0996752Z copying torch\include\ATen\ops\_to_sparse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1003912Z copying torch\include\ATen\ops\_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1012193Z copying torch\include\ATen\ops\_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1019514Z copying torch\include\ATen\ops\_to_sparse_semi_structured.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1027179Z copying torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1034683Z copying torch\include\ATen\ops\_to_sparse_semi_structured_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1042331Z copying torch\include\ATen\ops\_to_sparse_semi_structured_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1049886Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1057534Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1064852Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1072561Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1080690Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1088167Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1097198Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1103595Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1110899Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1118819Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1126474Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1133786Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1140973Z copying torch\include\ATen\ops\_trilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1164870Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1172148Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1179652Z copying torch\include\ATen\ops\_trilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1187100Z copying torch\include\ATen\ops\_trilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1194979Z copying torch\include\ATen\ops\_triton_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1203430Z copying torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1211645Z copying torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1219712Z copying torch\include\ATen\ops\_triton_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1227521Z copying torch\include\ATen\ops\_triton_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1235199Z copying torch\include\ATen\ops\_triton_scaled_dot_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1243064Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1250803Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1258199Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1265425Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1273238Z copying torch\include\ATen\ops\_unique.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1280132Z copying torch\include\ATen\ops\_unique2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1287136Z copying torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1294136Z copying torch\include\ATen\ops\_unique2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1301575Z copying torch\include\ATen\ops\_unique2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1308726Z copying torch\include\ATen\ops\_unique2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1315912Z copying torch\include\ATen\ops\_unique2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1323193Z copying torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1330489Z copying torch\include\ATen\ops\_unique_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1337533Z copying torch\include\ATen\ops\_unique_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1344890Z copying torch\include\ATen\ops\_unique_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1351972Z copying torch\include\ATen\ops\_unique_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1359286Z copying torch\include\ATen\ops\_unpack_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1366550Z copying torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1373466Z copying torch\include\ATen\ops\_unpack_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1380657Z copying torch\include\ATen\ops\_unpack_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1387588Z copying torch\include\ATen\ops\_unsafe_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1394922Z copying torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1401900Z copying torch\include\ATen\ops\_unsafe_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1408620Z copying torch\include\ATen\ops\_unsafe_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1415786Z copying torch\include\ATen\ops\_unsafe_index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1423228Z copying torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1430503Z copying torch\include\ATen\ops\_unsafe_index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1437904Z copying torch\include\ATen\ops\_unsafe_index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1445046Z copying torch\include\ATen\ops\_unsafe_masked_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1452643Z copying torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1460193Z copying torch\include\ATen\ops\_unsafe_masked_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1466977Z copying torch\include\ATen\ops\_unsafe_masked_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1474483Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1482085Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1489312Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1496632Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1503683Z copying torch\include\ATen\ops\_unsafe_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1511146Z copying torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1518928Z copying torch\include\ATen\ops\_unsafe_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1526063Z copying torch\include\ATen\ops\_unsafe_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1533285Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1540487Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1548407Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1556002Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1563317Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1570540Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1577921Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1585264Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1592589Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1614859Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1622729Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1630074Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1637501Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1644722Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1652178Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1659523Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1666905Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1674211Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1681823Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1689865Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1698515Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1706885Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1727906Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1736404Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1744129Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1752159Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1760483Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1767938Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1776013Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1783570Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1790981Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1798548Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1806375Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1813892Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1821291Z copying torch\include\ATen\ops\_upsample_nearest_exact1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1828905Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1837049Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1844431Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1851766Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1858921Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1866532Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1873959Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1881477Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1889394Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1896839Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1904444Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1911883Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1919318Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1926777Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1933959Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1941687Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1948860Z copying torch\include\ATen\ops\_upsample_nearest_exact2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1956621Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1964332Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1971875Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1979722Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1987048Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.1994583Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2002064Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2009785Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2017983Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2025729Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2033540Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2041121Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2048414Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2055948Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2064188Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2071557Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2079074Z copying torch\include\ATen\ops\_upsample_nearest_exact3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2086976Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2095058Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2102784Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2110564Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2118251Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2125844Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2133541Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2141449Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2149296Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2157344Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2164961Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2172669Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2180407Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2188500Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2196666Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2204939Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2213170Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2237231Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2244873Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2251528Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2258992Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2266613Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2274408Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2281703Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2289256Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2296795Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2304111Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2311300Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2318711Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2326251Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2333860Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2341020Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2349151Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2356697Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2364160Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2371666Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2378995Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2386351Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2394348Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2401793Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2409207Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2416380Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2424900Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2431576Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2438980Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2446685Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2454384Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2461592Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2469009Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2476783Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2484536Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2496044Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2503513Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2511285Z copying torch\include\ATen\ops\_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2518061Z copying torch\include\ATen\ops\_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2526285Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2534039Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2541303Z copying torch\include\ATen\ops\_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2548702Z copying torch\include\ATen\ops\_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2558748Z copying torch\include\ATen\ops\_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2563181Z copying torch\include\ATen\ops\_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2572436Z copying torch\include\ATen\ops\_version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2578476Z copying torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2585953Z copying torch\include\ATen\ops\_version_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2592862Z copying torch\include\ATen\ops\_version_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2601634Z copying torch\include\ATen\ops\_weight_int4pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2607887Z copying torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2615319Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2622966Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2631564Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2639334Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2646988Z copying torch\include\ATen\ops\_weight_int4pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2655174Z copying torch\include\ATen\ops\_weight_int4pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2662151Z copying torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2669884Z copying torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2678876Z copying torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2685470Z copying torch\include\ATen\ops\_weight_int8pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2711528Z copying torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2712412Z copying torch\include\ATen\ops\_weight_int8pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2713242Z copying torch\include\ATen\ops\_weight_int8pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2717818Z copying torch\include\ATen\ops\_weight_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2725205Z copying torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2732910Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2742233Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2748670Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2758092Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2763590Z copying torch\include\ATen\ops\_weight_norm_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2771152Z copying torch\include\ATen\ops\_weight_norm_interface_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2779207Z copying torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2786505Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2794004Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2801338Z copying torch\include\ATen\ops\_weight_norm_interface_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2808887Z copying torch\include\ATen\ops\_weight_norm_interface_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2816695Z copying torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2823914Z copying torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2831148Z copying torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2839012Z copying torch\include\ATen\ops\_weight_norm_interface_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2846199Z copying torch\include\ATen\ops\_weight_norm_interface_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2853833Z copying torch\include\ATen\ops\_weight_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2862124Z copying torch\include\ATen\ops\_weight_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2869168Z copying torch\include\ATen\ops\_wrapped_linear_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2877006Z copying torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2884579Z copying torch\include\ATen\ops\_wrapped_linear_prepack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2891975Z copying torch\include\ATen\ops\_wrapped_linear_prepack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2899800Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2907823Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2915411Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2922833Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-24T05:23:48.2929333Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-07-24T05:23:48.2932992Z copying torch\include\ATen\quantized\QTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-07-24T05:23:48.2939925Z copying torch\include\ATen\quantized\Quantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-07-24T05:23:48.2945751Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-24T05:23:48.2948975Z copying torch\include\ATen\xpu\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-24T05:23:48.2956202Z copying torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-24T05:23:48.2962612Z copying torch\include\ATen\xpu\XPUContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-24T05:23:48.2969071Z copying torch\include\ATen\xpu\XPUDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-24T05:23:48.2980261Z copying torch\include\ATen\xpu\XPUEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-24T05:23:48.2986997Z copying torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-24T05:23:48.2992958Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-07-24T05:23:48.2996213Z copying torch\include\ATen\xpu\detail\XPUHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-07-24T05:23:48.3002311Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3006639Z copying torch\include\c10\core\alignment.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3013067Z copying torch\include\c10\core\Allocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3020180Z copying torch\include\c10\core\AutogradState.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3027049Z copying torch\include\c10\core\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3038048Z copying torch\include\c10\core\CachingDeviceAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3045341Z copying torch\include\c10\core\CompileTimeFunctionPointer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3052465Z copying torch\include\c10\core\ConstantSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3059274Z copying torch\include\c10\core\Contiguity.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3066049Z copying torch\include\c10\core\CopyBytes.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3072750Z copying torch\include\c10\core\CPUAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3080025Z copying torch\include\c10\core\DefaultDtype.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3086763Z copying torch\include\c10\core\DefaultTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3093493Z copying torch\include\c10\core\Device.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3100170Z copying torch\include\c10\core\DeviceArray.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3128484Z copying torch\include\c10\core\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3135270Z copying torch\include\c10\core\DeviceType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3142376Z copying torch\include\c10\core\DispatchKey.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3150609Z copying torch\include\c10\core\DispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3157648Z copying torch\include\c10\core\DynamicCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3164649Z copying torch\include\c10\core\Event.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3175845Z copying torch\include\c10\core\GeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3182772Z copying torch\include\c10\core\GradMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3189538Z copying torch\include\c10\core\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3196411Z copying torch\include\c10\core\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3202926Z copying torch\include\c10\core\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3210284Z copying torch\include\c10\core\OptionalRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3216690Z copying torch\include\c10\core\PyHandleCache.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3223331Z copying torch\include\c10\core\QEngine.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3230066Z copying torch\include\c10\core\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3247117Z copying torch\include\c10\core\RefcountedDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3253525Z copying torch\include\c10\core\SafePyObject.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3260161Z copying torch\include\c10\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3267118Z copying torch\include\c10\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3285833Z copying torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3292301Z copying torch\include\c10\core\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3298785Z copying torch\include\c10\core\StorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3305751Z copying torch\include\c10\core\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3312046Z copying torch\include\c10\core\StreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3319484Z copying torch\include\c10\core\SymbolicShapeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3326265Z copying torch\include\c10\core\SymBool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3332815Z copying torch\include\c10\core\SymFloat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3339323Z copying torch\include\c10\core\SymInt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3346280Z copying torch\include\c10\core\SymIntArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3353000Z copying torch\include\c10\core\SymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3359740Z copying torch\include\c10\core\TensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3372777Z copying torch\include\c10\core\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3380097Z copying torch\include\c10\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3387085Z copying torch\include\c10\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3393790Z copying torch\include\c10\core\WrapDimMinimal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-24T05:23:48.3400136Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3403351Z copying torch\include\c10\core\impl\alloc_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3410179Z copying torch\include\c10\core\impl\COW.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3416706Z copying torch\include\c10\core\impl\COWDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3423917Z copying torch\include\c10\core\impl\DeviceGuardImplInterface.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3435318Z copying torch\include\c10\core\impl\FakeGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3442061Z copying torch\include\c10\core\impl\GPUTrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3449070Z copying torch\include\c10\core\impl\HermeticPyObjectTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3457146Z copying torch\include\c10\core\impl\InlineDeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3463284Z copying torch\include\c10\core\impl\InlineEvent.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3470471Z copying torch\include\c10\core\impl\InlineStreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3477502Z copying torch\include\c10\core\impl\LocalDispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3484742Z copying torch\include\c10\core\impl\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3492565Z copying torch\include\c10\core\impl\PyObjectSlot.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3499035Z copying torch\include\c10\core\impl\PythonDispatcherTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3505751Z copying torch\include\c10\core\impl\SizesAndStrides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3513264Z copying torch\include\c10\core\impl\TorchDispatchModeTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3520286Z copying torch\include\c10\core\impl\VirtualGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-24T05:23:48.3526264Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:23:48.3529402Z copying torch\include\c10\cuda\CUDAAlgorithm.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:23:48.3536358Z copying torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:23:48.3543364Z copying torch\include\c10\cuda\CUDACachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:23:48.3551788Z copying torch\include\c10\cuda\CUDADeviceAssertion.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:23:48.3563216Z copying torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:23:48.3569401Z copying torch\include\c10\cuda\CUDAException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:23:48.3575923Z copying torch\include\c10\cuda\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:23:48.3583659Z copying torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:23:48.3590628Z copying torch\include\c10\cuda\CUDAGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:23:48.3598303Z copying torch\include\c10\cuda\CUDAMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:23:48.3605423Z copying torch\include\c10\cuda\CUDAMathCompat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:23:48.3612423Z copying torch\include\c10\cuda\CUDAMiscFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:23:48.3618993Z copying torch\include\c10\cuda\CUDAStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:23:48.3625833Z copying torch\include\c10\cuda\driver_api.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-24T05:23:48.3632137Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-07-24T05:23:48.3635523Z copying torch\include\c10\cuda\impl\CUDAGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-07-24T05:23:48.3642469Z copying torch\include\c10\cuda\impl\CUDATest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-07-24T05:23:48.3649483Z copying torch\include\c10\cuda\impl\cuda_cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-07-24T05:23:48.3655234Z creating build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-07-24T05:23:48.3658177Z copying torch\include\c10\macros\cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-07-24T05:23:48.3664646Z copying torch\include\c10\macros\Export.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-07-24T05:23:48.3671104Z copying torch\include\c10\macros\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-07-24T05:23:48.3676854Z creating build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:23:48.3679643Z copying torch\include\c10\metal\atomic.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:23:48.3686284Z copying torch\include\c10\metal\common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:23:48.3693087Z copying torch\include\c10\metal\expm1f.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:23:48.3700204Z copying torch\include\c10\metal\indexing.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:23:48.3707683Z copying torch\include\c10\metal\random.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:23:48.3714350Z copying torch\include\c10\metal\reduction_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:23:48.3726091Z copying torch\include\c10\metal\special_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:23:48.3733744Z copying torch\include\c10\metal\utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-24T05:23:48.3739666Z creating build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-07-24T05:23:48.3742705Z copying torch\include\c10\mobile\CPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-07-24T05:23:48.3749712Z copying torch\include\c10\mobile\CPUProfilingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-07-24T05:23:48.3755924Z creating build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-07-24T05:23:48.3764979Z copying torch\include\c10\test\util\complex_math_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-07-24T05:23:48.3772311Z copying torch\include\c10\test\util\complex_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-07-24T05:23:48.3779405Z copying torch\include\c10\test\util\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-07-24T05:23:48.3784758Z creating build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3788062Z copying torch\include\c10\util\AbortHandler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3794547Z copying torch\include\c10\util\accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3801405Z copying torch\include\c10\util\AlignOf.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3808677Z copying torch\include\c10\util\ApproximateClock.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3819334Z copying torch\include\c10\util\Array.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3825623Z copying torch\include\c10\util\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3832643Z copying torch\include\c10\util\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3839420Z copying torch\include\c10\util\BFloat16-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3847250Z copying torch\include\c10\util\BFloat16-math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3853852Z copying torch\include\c10\util\BFloat16.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3860902Z copying torch\include\c10\util\bits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3867595Z copying torch\include\c10\util\Bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3874064Z copying torch\include\c10\util\bit_cast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3880637Z copying torch\include\c10\util\C++17.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3887299Z copying torch\include\c10\util\CallOnce.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3893814Z copying torch\include\c10\util\complex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3901280Z copying torch\include\c10\util\complex_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3907958Z copying torch\include\c10\util\complex_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3914811Z copying torch\include\c10\util\ConstexprCrc.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3921984Z copying torch\include\c10\util\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3928764Z copying torch\include\c10\util\DeadlockDetection.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3935335Z copying torch\include\c10\util\Deprecated.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3942248Z copying torch\include\c10\util\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3948775Z copying torch\include\c10\util\DynamicCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3960080Z copying torch\include\c10\util\Enumerate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3966877Z copying torch\include\c10\util\env.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3973697Z copying torch\include\c10\util\error.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3980086Z copying torch\include\c10\util\Exception.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3987438Z copying torch\include\c10\util\ExclusivelyOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.3994429Z copying torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4001309Z copying torch\include\c10\util\FbcodeMaps.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4007832Z copying torch\include\c10\util\Flags.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4014857Z copying torch\include\c10\util\flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4027881Z copying torch\include\c10\util\Float4_e2m1fn_x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4034696Z copying torch\include\c10\util\Float8_e4m3fn-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4046027Z copying torch\include\c10\util\Float8_e4m3fn.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4053235Z copying torch\include\c10\util\Float8_e4m3fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4060125Z copying torch\include\c10\util\Float8_e4m3fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4066973Z copying torch\include\c10\util\Float8_e5m2-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4073975Z copying torch\include\c10\util\Float8_e5m2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4081101Z copying torch\include\c10\util\Float8_e5m2fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4088262Z copying torch\include\c10\util\Float8_e5m2fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4096646Z copying torch\include\c10\util\Float8_e8m0fnu-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4104859Z copying torch\include\c10\util\Float8_e8m0fnu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4117017Z copying torch\include\c10\util\Float8_fnuz_cvt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4124077Z copying torch\include\c10\util\floating_point_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4130749Z copying torch\include\c10\util\FunctionRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4137453Z copying torch\include\c10\util\Gauge.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4144309Z copying torch\include\c10\util\generic_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4151353Z copying torch\include\c10\util\Half-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4158212Z copying torch\include\c10\util\Half.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4165492Z copying torch\include\c10\util\hash.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4172258Z copying torch\include\c10\util\IdWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4179095Z copying torch\include\c10\util\int128.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4186372Z copying torch\include\c10\util\IntrusiveList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4193600Z copying torch\include\c10\util\intrusive_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4201542Z copying torch\include\c10\util\irange.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4213778Z copying torch\include\c10\util\Lazy.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4220640Z copying torch\include\c10\util\LeftRight.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4228196Z copying torch\include\c10\util\llvmMathExtras.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4235805Z copying torch\include\c10\util\Load.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4266206Z copying torch\include\c10\util\Logging.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4272958Z copying torch\include\c10\util\logging_is_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4280212Z copying torch\include\c10\util\logging_is_not_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4287491Z copying torch\include\c10\util\MathConstants.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4294727Z copying torch\include\c10\util\MaybeOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4301806Z copying torch\include\c10\util\Metaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4308668Z copying torch\include\c10\util\NetworkFlow.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4324090Z copying torch\include\c10\util\numa.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4330802Z copying torch\include\c10\util\Optional.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4338342Z copying torch\include\c10\util\OptionalArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4345055Z copying torch\include\c10\util\order_preserving_flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4352914Z copying torch\include\c10\util\overflows.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4359997Z copying torch\include\c10\util\overloaded.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4366747Z copying torch\include\c10\util\ParallelGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4373173Z copying torch\include\c10\util\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4379596Z copying torch\include\c10\util\qint32.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4385861Z copying torch\include\c10\util\qint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4392382Z copying torch\include\c10\util\quint2x4.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4398792Z copying torch\include\c10\util\quint4x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4408755Z copying torch\include\c10\util\quint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4415157Z copying torch\include\c10\util\Registry.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4422101Z copying torch\include\c10\util\safe_numerics.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4428730Z copying torch\include\c10\util\ScopeExit.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4435706Z copying torch\include\c10\util\Semaphore.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4442428Z copying torch\include\c10\util\signal_handler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4449088Z copying torch\include\c10\util\SmallBuffer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4455710Z copying torch\include\c10\util\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4463876Z copying torch\include\c10\util\sparse_bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4471255Z copying torch\include\c10\util\ssize.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4478055Z copying torch\include\c10\util\static_tracepoint.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4484853Z copying torch\include\c10\util\static_tracepoint_elfx86.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4495788Z copying torch\include\c10\util\strides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4502431Z copying torch\include\c10\util\StringUtil.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4509205Z copying torch\include\c10\util\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4515887Z copying torch\include\c10\util\string_view.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4524574Z copying torch\include\c10\util\strong_type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4532301Z copying torch\include\c10\util\Synchronized.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4539246Z copying torch\include\c10\util\tempfile.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4546032Z copying torch\include\c10\util\ThreadLocal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4553209Z copying torch\include\c10\util\ThreadLocalDebugInfo.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4560481Z copying torch\include\c10\util\thread_name.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4567243Z copying torch\include\c10\util\Type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4578504Z copying torch\include\c10\util\TypeCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4584540Z copying torch\include\c10\util\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4591741Z copying torch\include\c10\util\TypeIndex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4598957Z copying torch\include\c10\util\TypeList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4606947Z copying torch\include\c10\util\TypeSafeSignMath.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4613817Z copying torch\include\c10\util\TypeTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4620177Z copying torch\include\c10\util\Unicode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4626707Z copying torch\include\c10\util\UniqueVoidPtr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4633624Z copying torch\include\c10\util\Unroll.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4640815Z copying torch\include\c10\util\WaitCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4649016Z copying torch\include\c10\util\WaitCounterDynamicBackend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4655282Z copying torch\include\c10\util\win32-headers.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-24T05:23:48.4667174Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-24T05:23:48.4675951Z copying torch\include\c10\xpu\XPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-24T05:23:48.4682631Z copying torch\include\c10\xpu\XPUDeviceProp.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-24T05:23:48.4690801Z copying torch\include\c10\xpu\XPUException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-24T05:23:48.4696838Z copying torch\include\c10\xpu\XPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-24T05:23:48.4707791Z copying torch\include\c10\xpu\XPUMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-24T05:23:48.4714948Z copying torch\include\c10\xpu\XPUStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-24T05:23:48.4721666Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-07-24T05:23:48.4725217Z copying torch\include\c10\xpu\impl\XPUGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-07-24T05:23:48.4731933Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-07-24T05:23:48.4736800Z copying torch\include\c10\xpu\test\impl\XPUTest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-07-24T05:23:48.4742553Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-07-24T05:23:48.4746700Z copying torch\include\caffe2\core\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-07-24T05:23:48.4753479Z copying torch\include\caffe2\core\macros.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-07-24T05:23:48.4760037Z copying torch\include\caffe2\core\timer.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-07-24T05:23:48.4765972Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-07-24T05:23:48.4769060Z copying torch\include\caffe2\perfkernels\batch_box_cox_vec.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-07-24T05:23:48.4775762Z copying torch\include\caffe2\perfkernels\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-07-24T05:23:48.4782531Z copying torch\include\caffe2\perfkernels\embedding_lookup_idx.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-07-24T05:23:48.4788159Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:23:48.4791156Z copying torch\include\caffe2\serialize\crc_alt.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:23:48.4798887Z copying torch\include\caffe2\serialize\file_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:23:48.4805673Z copying torch\include\caffe2\serialize\inline_container.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:23:48.4812620Z copying torch\include\caffe2\serialize\in_memory_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:23:48.4824509Z copying torch\include\caffe2\serialize\istream_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:23:48.4831513Z copying torch\include\caffe2\serialize\read_adapter_interface.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:23:48.4837971Z copying torch\include\caffe2\serialize\versions.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-24T05:23:48.4843565Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-07-24T05:23:48.4846604Z copying torch\include\caffe2\utils\fixed_divisor.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-07-24T05:23:48.4853128Z copying torch\include\caffe2\utils\proto_wrap.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-07-24T05:23:48.4859828Z copying torch\include\caffe2\utils\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-07-24T05:23:48.4865736Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-24T05:23:48.4873223Z copying torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-24T05:23:48.4880257Z copying torch\include\caffe2\utils\threadpool\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-24T05:23:48.4886909Z copying torch\include\caffe2\utils\threadpool\ThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-24T05:23:48.4897610Z copying torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-24T05:23:48.4904307Z copying torch\include\caffe2\utils\threadpool\thread_pool_guard.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-24T05:23:48.4910841Z copying torch\include\caffe2\utils\threadpool\WorkersPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-24T05:23:48.4916708Z creating build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.4919689Z copying torch\include\fbgemm\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.4926243Z copying torch\include\fbgemm\Fbgemm.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.4933581Z copying torch\include\fbgemm\FbgemmBuild.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.4940207Z copying torch\include\fbgemm\FbgemmConvert.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.4951639Z copying torch\include\fbgemm\FbgemmEmbedding.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.4958424Z copying torch\include\fbgemm\FbgemmFP16.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.4992856Z copying torch\include\fbgemm\FbgemmFP32.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.4999768Z copying torch\include\fbgemm\FbgemmFPCommon.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5006913Z copying torch\include\fbgemm\FbgemmI64.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5013677Z copying torch\include\fbgemm\FbgemmI8DepthwiseAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5020995Z copying torch\include\fbgemm\FbgemmI8DirectconvAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5028179Z copying torch\include\fbgemm\FbgemmI8Spmdm.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5035575Z copying torch\include\fbgemm\FbgemmPackMatrixB.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5042453Z copying torch\include\fbgemm\FbgemmSparse.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5049360Z copying torch\include\fbgemm\FloatConversion.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5056761Z copying torch\include\fbgemm\OutputProcessing-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5063740Z copying torch\include\fbgemm\PackingTraits-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5070970Z copying torch\include\fbgemm\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5077941Z copying torch\include\fbgemm\QuantUtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5089109Z copying torch\include\fbgemm\QuantUtilsAvx512.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5095728Z copying torch\include\fbgemm\QuantUtilsNeon.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5103300Z copying torch\include\fbgemm\SimdUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5110464Z copying torch\include\fbgemm\spmmUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5117492Z copying torch\include\fbgemm\spmmUtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5124455Z copying torch\include\fbgemm\Types.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5130749Z copying torch\include\fbgemm\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5137774Z copying torch\include\fbgemm\UtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-24T05:23:48.5143818Z creating build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:23:48.5146855Z copying torch\include\fmt\args.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:23:48.5153757Z copying torch\include\fmt\base.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:23:48.5161939Z copying torch\include\fmt\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:23:48.5169808Z copying torch\include\fmt\color.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:23:48.5177142Z copying torch\include\fmt\compile.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:23:48.5184201Z copying torch\include\fmt\core.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:23:48.5190771Z copying torch\include\fmt\format-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:23:48.5203517Z copying torch\include\fmt\format.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:23:48.5212944Z copying torch\include\fmt\os.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:23:48.5220444Z copying torch\include\fmt\ostream.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:23:48.5227359Z copying torch\include\fmt\printf.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:23:48.5234806Z copying torch\include\fmt\ranges.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:23:48.5242145Z copying torch\include\fmt\std.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:23:48.5249227Z copying torch\include\fmt\xchar.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-24T05:23:48.5259763Z creating build\lib.win-amd64-cpython-39\torch\include\fp16 2025-07-24T05:23:48.5262675Z copying torch\include\fp16\bitcasts.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-07-24T05:23:48.5269293Z copying torch\include\fp16\fp16.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-07-24T05:23:48.5276308Z copying torch\include\fp16\psimd.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-07-24T05:23:48.5282434Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5286520Z copying torch\include\google\protobuf\any.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5293093Z copying torch\include\google\protobuf\any.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5300019Z copying torch\include\google\protobuf\api.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5307740Z copying torch\include\google\protobuf\arena.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5314791Z copying torch\include\google\protobuf\arenastring.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5326156Z copying torch\include\google\protobuf\arena_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5333329Z copying torch\include\google\protobuf\descriptor.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5384102Z copying torch\include\google\protobuf\descriptor.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5396078Z copying torch\include\google\protobuf\descriptor_database.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5403161Z copying torch\include\google\protobuf\duration.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5409959Z copying torch\include\google\protobuf\dynamic_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5416881Z copying torch\include\google\protobuf\empty.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5423765Z copying torch\include\google\protobuf\extension_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5431436Z copying torch\include\google\protobuf\extension_set_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5438369Z copying torch\include\google\protobuf\field_mask.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5445268Z copying torch\include\google\protobuf\generated_enum_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5451982Z copying torch\include\google\protobuf\generated_enum_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5459002Z copying torch\include\google\protobuf\generated_message_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5465911Z copying torch\include\google\protobuf\generated_message_table_driven.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5473176Z copying torch\include\google\protobuf\generated_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5484973Z copying torch\include\google\protobuf\has_bits.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5491650Z copying torch\include\google\protobuf\implicit_weak_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5498793Z copying torch\include\google\protobuf\inlined_string_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5505426Z copying torch\include\google\protobuf\map.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5512374Z copying torch\include\google\protobuf\map_entry.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5519625Z copying torch\include\google\protobuf\map_entry_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5526925Z copying torch\include\google\protobuf\map_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5534488Z copying torch\include\google\protobuf\map_field_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5541330Z copying torch\include\google\protobuf\map_field_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5548161Z copying torch\include\google\protobuf\map_type_handler.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5561520Z copying torch\include\google\protobuf\message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5569372Z copying torch\include\google\protobuf\message_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5576810Z copying torch\include\google\protobuf\metadata.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5583575Z copying torch\include\google\protobuf\metadata_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5590954Z copying torch\include\google\protobuf\parse_context.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5598193Z copying torch\include\google\protobuf\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5604831Z copying torch\include\google\protobuf\reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5612318Z copying torch\include\google\protobuf\reflection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5619640Z copying torch\include\google\protobuf\repeated_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5627667Z copying torch\include\google\protobuf\service.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5634590Z copying torch\include\google\protobuf\source_context.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5642190Z copying torch\include\google\protobuf\struct.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5655430Z copying torch\include\google\protobuf\text_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5663077Z copying torch\include\google\protobuf\timestamp.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5669900Z copying torch\include\google\protobuf\type.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5678459Z copying torch\include\google\protobuf\unknown_field_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5685584Z copying torch\include\google\protobuf\wire_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5693773Z copying torch\include\google\protobuf\wire_format_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5702597Z copying torch\include\google\protobuf\wrappers.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-24T05:23:48.5709768Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-24T05:23:48.5713324Z copying torch\include\google\protobuf\compiler\code_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-24T05:23:48.5721477Z copying torch\include\google\protobuf\compiler\command_line_interface.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-24T05:23:48.5733885Z copying torch\include\google\protobuf\compiler\importer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-24T05:23:48.5741225Z copying torch\include\google\protobuf\compiler\parser.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-24T05:23:48.5748550Z copying torch\include\google\protobuf\compiler\plugin.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-24T05:23:48.5762849Z copying torch\include\google\protobuf\compiler\plugin.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-24T05:23:48.5774425Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-07-24T05:23:48.5777743Z copying torch\include\google\protobuf\compiler\cpp\cpp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-07-24T05:23:48.5783458Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-07-24T05:23:48.5786727Z copying torch\include\google\protobuf\compiler\csharp\csharp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-07-24T05:23:48.5793928Z copying torch\include\google\protobuf\compiler\csharp\csharp_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-07-24T05:23:48.5799814Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-07-24T05:23:48.5802954Z copying torch\include\google\protobuf\compiler\java\java_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-07-24T05:23:48.5809469Z copying torch\include\google\protobuf\compiler\java\java_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-07-24T05:23:48.5815612Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-07-24T05:23:48.5818762Z copying torch\include\google\protobuf\compiler\js\js_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-07-24T05:23:48.5825964Z copying torch\include\google\protobuf\compiler\js\well_known_types_embed.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-07-24T05:23:48.5832075Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-07-24T05:23:48.5835514Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-07-24T05:23:48.5842221Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-07-24T05:23:48.5847941Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-07-24T05:23:48.5851099Z copying torch\include\google\protobuf\compiler\php\php_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-07-24T05:23:48.5856779Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-07-24T05:23:48.5859989Z copying torch\include\google\protobuf\compiler\python\python_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-07-24T05:23:48.5866149Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-07-24T05:23:48.5869309Z copying torch\include\google\protobuf\compiler\ruby\ruby_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-07-24T05:23:48.5875431Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:23:48.5878436Z copying torch\include\google\protobuf\io\coded_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:23:48.5886134Z copying torch\include\google\protobuf\io\gzip_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:23:48.5892786Z copying torch\include\google\protobuf\io\io_win32.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:23:48.5899359Z copying torch\include\google\protobuf\io\printer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:23:48.5906053Z copying torch\include\google\protobuf\io\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:23:48.5919841Z copying torch\include\google\protobuf\io\tokenizer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:23:48.5927272Z copying torch\include\google\protobuf\io\zero_copy_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:23:48.5934059Z copying torch\include\google\protobuf\io\zero_copy_stream_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:23:48.5940885Z copying torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-24T05:23:48.5947248Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.5950320Z copying torch\include\google\protobuf\stubs\bytestream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.5957900Z copying torch\include\google\protobuf\stubs\callback.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.5964551Z copying torch\include\google\protobuf\stubs\casts.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.5971393Z copying torch\include\google\protobuf\stubs\common.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.5978347Z copying torch\include\google\protobuf\stubs\fastmem.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.5984958Z copying torch\include\google\protobuf\stubs\hash.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.5998080Z copying torch\include\google\protobuf\stubs\logging.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.6004908Z copying torch\include\google\protobuf\stubs\macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.6011466Z copying torch\include\google\protobuf\stubs\map_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.6018675Z copying torch\include\google\protobuf\stubs\mutex.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.6025617Z copying torch\include\google\protobuf\stubs\once.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.6032600Z copying torch\include\google\protobuf\stubs\platform_macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.6039742Z copying torch\include\google\protobuf\stubs\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.6046457Z copying torch\include\google\protobuf\stubs\status.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.6053059Z copying torch\include\google\protobuf\stubs\stl_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.6060139Z copying torch\include\google\protobuf\stubs\stringpiece.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.6067551Z copying torch\include\google\protobuf\stubs\strutil.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.6074963Z copying torch\include\google\protobuf\stubs\template_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-24T05:23:48.6081005Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:23:48.6084111Z copying torch\include\google\protobuf\util\delimited_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:23:48.6091373Z copying torch\include\google\protobuf\util\field_comparator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:23:48.6098149Z copying torch\include\google\protobuf\util\field_mask_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:23:48.6111306Z copying torch\include\google\protobuf\util\json_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:23:48.6118529Z copying torch\include\google\protobuf\util\message_differencer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:23:48.6125948Z copying torch\include\google\protobuf\util\time_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:23:48.6132830Z copying torch\include\google\protobuf\util\type_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:23:48.6139950Z copying torch\include\google\protobuf\util\type_resolver_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-24T05:23:48.6145921Z creating build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6148977Z copying torch\include\kineto\AbstractConfig.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6155940Z copying torch\include\kineto\ActivityProfilerInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6163046Z copying torch\include\kineto\ActivityTraceInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6176074Z copying torch\include\kineto\ActivityType.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6182869Z copying torch\include\kineto\ClientInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6189867Z copying torch\include\kineto\Config.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6196585Z copying torch\include\kineto\GenericTraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6203356Z copying torch\include\kineto\IActivityProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6210206Z copying torch\include\kineto\ILoggerObserver.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6217171Z copying torch\include\kineto\ITraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6224612Z copying torch\include\kineto\libkineto.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6232413Z copying torch\include\kineto\LoggingAPI.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6239537Z copying torch\include\kineto\output_base.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6245994Z copying torch\include\kineto\ThreadUtil.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6252837Z copying torch\include\kineto\time_since_epoch.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6259730Z copying torch\include\kineto\TraceSpan.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-24T05:23:48.6265569Z creating build\lib.win-amd64-cpython-39\torch\include\legacy 2025-07-24T05:23:48.6268694Z copying torch\include\legacy\ittnotify.h -> build\lib.win-amd64-cpython-39\torch\include\legacy 2025-07-24T05:23:48.6275436Z creating build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-07-24T05:23:48.6278569Z copying torch\include\mimalloc-2.2\mimalloc-new-delete.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-07-24T05:23:48.6285307Z copying torch\include\mimalloc-2.2\mimalloc-override.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-07-24T05:23:48.6292049Z copying torch\include\mimalloc-2.2\mimalloc-stats.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-07-24T05:23:48.6305192Z copying torch\include\mimalloc-2.2\mimalloc.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-07-24T05:23:48.6312037Z creating build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6316311Z copying torch\include\oneapi\dnnl\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6324709Z copying torch\include\oneapi\dnnl\dnnl_common.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6335077Z copying torch\include\oneapi\dnnl\dnnl_common_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6341796Z copying torch\include\oneapi\dnnl\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6354634Z copying torch\include\oneapi\dnnl\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6361407Z copying torch\include\oneapi\dnnl\dnnl_graph.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6369171Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6376166Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6384258Z copying torch\include\oneapi\dnnl\dnnl_graph_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6390341Z copying torch\include\oneapi\dnnl\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6397929Z copying torch\include\oneapi\dnnl\dnnl_ocl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6409438Z copying torch\include\oneapi\dnnl\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6416440Z copying torch\include\oneapi\dnnl\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6423323Z copying torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6430524Z copying torch\include\oneapi\dnnl\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6438942Z copying torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6463649Z copying torch\include\oneapi\dnnl\dnnl_ukernel_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6470307Z copying torch\include\oneapi\dnnl\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6477490Z copying torch\include\oneapi\dnnl\dnnl_version_hash.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:48.6483681Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6486822Z copying torch\include\pybind11\attr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6494288Z copying torch\include\pybind11\buffer_info.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6501047Z copying torch\include\pybind11\cast.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6508975Z copying torch\include\pybind11\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6516009Z copying torch\include\pybind11\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6522538Z copying torch\include\pybind11\complex.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6536080Z copying torch\include\pybind11\eigen.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6543931Z copying torch\include\pybind11\embed.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6549631Z copying torch\include\pybind11\eval.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6556570Z copying torch\include\pybind11\functional.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6563300Z copying torch\include\pybind11\gil.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6570311Z copying torch\include\pybind11\gil_safe_call_once.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6576832Z copying torch\include\pybind11\iostream.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6583837Z copying torch\include\pybind11\numpy.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6591795Z copying torch\include\pybind11\operators.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6599021Z copying torch\include\pybind11\options.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6605679Z copying torch\include\pybind11\pybind11.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6614106Z copying torch\include\pybind11\pytypes.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6622411Z copying torch\include\pybind11\stl.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6629211Z copying torch\include\pybind11\stl_bind.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6637033Z copying torch\include\pybind11\type_caster_pyobject_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6649720Z copying torch\include\pybind11\typing.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-24T05:23:48.6655998Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:23:48.6658921Z copying torch\include\pybind11\detail\class.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:23:48.6666055Z copying torch\include\pybind11\detail\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:23:48.6674135Z copying torch\include\pybind11\detail\cpp_conduit.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:23:48.6681059Z copying torch\include\pybind11\detail\descr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:23:48.6687833Z copying torch\include\pybind11\detail\exception_translation.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:23:48.6702095Z copying torch\include\pybind11\detail\init.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:23:48.6709338Z copying torch\include\pybind11\detail\internals.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:23:48.6716931Z copying torch\include\pybind11\detail\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:23:48.6728368Z copying torch\include\pybind11\detail\type_caster_base.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:23:48.6736148Z copying torch\include\pybind11\detail\value_and_holder.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-24T05:23:48.6742100Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-07-24T05:23:48.6745213Z copying torch\include\pybind11\eigen\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-07-24T05:23:48.6751867Z copying torch\include\pybind11\eigen\matrix.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-07-24T05:23:48.6759632Z copying torch\include\pybind11\eigen\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-07-24T05:23:48.6765771Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-07-24T05:23:48.6768839Z copying torch\include\pybind11\stl\filesystem.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-07-24T05:23:48.6774876Z creating build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-24T05:23:48.6777848Z copying torch\include\torch\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-24T05:23:48.6784898Z copying torch\include\torch\custom_class_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-24T05:23:48.6792064Z copying torch\include\torch\extension.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-24T05:23:48.6798434Z copying torch\include\torch\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-24T05:23:48.6812789Z copying torch\include\torch\script.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-24T05:23:48.6818718Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6821702Z copying torch\include\torch\csrc\copy_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6828728Z copying torch\include\torch\csrc\CudaIPCTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6835278Z copying torch\include\torch\csrc\DataLoader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6845228Z copying torch\include\torch\csrc\Device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6858949Z copying torch\include\torch\csrc\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6865559Z copying torch\include\torch\csrc\Dtype.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6872056Z copying torch\include\torch\csrc\DynamicTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6878764Z copying torch\include\torch\csrc\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6916462Z copying torch\include\torch\csrc\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6923081Z copying torch\include\torch\csrc\Export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6930084Z copying torch\include\torch\csrc\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6937264Z copying torch\include\torch\csrc\itt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6943374Z copying torch\include\torch\csrc\itt_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6949596Z copying torch\include\torch\csrc\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6956370Z copying torch\include\torch\csrc\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6962989Z copying torch\include\torch\csrc\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6975977Z copying torch\include\torch\csrc\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6979359Z copying torch\include\torch\csrc\python_dimname.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6985704Z copying torch\include\torch\csrc\python_headers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6992625Z copying torch\include\torch\csrc\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.6999089Z copying torch\include\torch\csrc\serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.7005628Z copying torch\include\torch\csrc\Size.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.7012182Z copying torch\include\torch\csrc\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.7018571Z copying torch\include\torch\csrc\StorageMethods.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.7028680Z copying torch\include\torch\csrc\StorageSharing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.7035178Z copying torch\include\torch\csrc\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.7041705Z copying torch\include\torch\csrc\THConcat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.7048190Z copying torch\include\torch\csrc\THP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.7054729Z copying torch\include\torch\csrc\TypeInfo.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.7061197Z copying torch\include\torch\csrc\Types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.7067447Z copying torch\include\torch\csrc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-24T05:23:48.7073691Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7079121Z copying torch\include\torch\csrc\api\include\torch\all.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7089534Z copying torch\include\torch\csrc\api\include\torch\arg.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7096208Z copying torch\include\torch\csrc\api\include\torch\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7102939Z copying torch\include\torch\csrc\api\include\torch\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7109697Z copying torch\include\torch\csrc\api\include\torch\data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7115937Z copying torch\include\torch\csrc\api\include\torch\enum.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7126245Z copying torch\include\torch\csrc\api\include\torch\expanding_array.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7140931Z copying torch\include\torch\csrc\api\include\torch\fft.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7148541Z copying torch\include\torch\csrc\api\include\torch\imethod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7156019Z copying torch\include\torch\csrc\api\include\torch\jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7163405Z copying torch\include\torch\csrc\api\include\torch\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7170886Z copying torch\include\torch\csrc\api\include\torch\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7178532Z copying torch\include\torch\csrc\api\include\torch\nn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7185593Z copying torch\include\torch\csrc\api\include\torch\optim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7192863Z copying torch\include\torch\csrc\api\include\torch\ordered_dict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7200507Z copying torch\include\torch\csrc\api\include\torch\python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7207880Z copying torch\include\torch\csrc\api\include\torch\serialize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7214885Z copying torch\include\torch\csrc\api\include\torch\sparse.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7221326Z copying torch\include\torch\csrc\api\include\torch\special.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7228745Z copying torch\include\torch\csrc\api\include\torch\torch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7235168Z copying torch\include\torch\csrc\api\include\torch\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7242157Z copying torch\include\torch\csrc\api\include\torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7248814Z copying torch\include\torch\csrc\api\include\torch\version.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7255373Z copying torch\include\torch\csrc\api\include\torch\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-24T05:23:48.7260842Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:23:48.7264017Z copying torch\include\torch\csrc\api\include\torch\data\dataloader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:23:48.7271618Z copying torch\include\torch\csrc\api\include\torch\data\dataloader_options.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:23:48.7278479Z copying torch\include\torch\csrc\api\include\torch\data\datasets.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:23:48.7285275Z copying torch\include\torch\csrc\api\include\torch\data\example.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:23:48.7291780Z copying torch\include\torch\csrc\api\include\torch\data\iterator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:23:48.7305873Z copying torch\include\torch\csrc\api\include\torch\data\samplers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:23:48.7312431Z copying torch\include\torch\csrc\api\include\torch\data\transforms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:23:48.7318950Z copying torch\include\torch\csrc\api\include\torch\data\worker_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:23:48.7324824Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:23:48.7328212Z copying torch\include\torch\csrc\api\include\torch\data\dataloader\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:23:48.7334871Z copying torch\include\torch\csrc\api\include\torch\data\dataloader\stateful.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:23:48.7345573Z copying torch\include\torch\csrc\api\include\torch\data\dataloader\stateless.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:23:48.7351392Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:23:48.7354629Z copying torch\include\torch\csrc\api\include\torch\data\datasets\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:23:48.7361176Z copying torch\include\torch\csrc\api\include\torch\data\datasets\chunk.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:23:48.7368502Z copying torch\include\torch\csrc\api\include\torch\data\datasets\map.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:23:48.7375157Z copying torch\include\torch\csrc\api\include\torch\data\datasets\mnist.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:23:48.7381643Z copying torch\include\torch\csrc\api\include\torch\data\datasets\shared.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:23:48.7388173Z copying torch\include\torch\csrc\api\include\torch\data\datasets\stateful.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:23:48.7394763Z copying torch\include\torch\csrc\api\include\torch\data\datasets\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:23:48.7408797Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:23:48.7412221Z copying torch\include\torch\csrc\api\include\torch\data\detail\data_shuttle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:23:48.7418899Z copying torch\include\torch\csrc\api\include\torch\data\detail\queue.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:23:48.7425411Z copying torch\include\torch\csrc\api\include\torch\data\detail\sequencers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:23:48.7431238Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:23:48.7434455Z copying torch\include\torch\csrc\api\include\torch\data\samplers\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:23:48.7441606Z copying torch\include\torch\csrc\api\include\torch\data\samplers\custom_batch_request.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:23:48.7448130Z copying torch\include\torch\csrc\api\include\torch\data\samplers\distributed.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:23:48.7454673Z copying torch\include\torch\csrc\api\include\torch\data\samplers\random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:23:48.7461303Z copying torch\include\torch\csrc\api\include\torch\data\samplers\sequential.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:23:48.7475953Z copying torch\include\torch\csrc\api\include\torch\data\samplers\serialize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:23:48.7482627Z copying torch\include\torch\csrc\api\include\torch\data\samplers\stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:23:48.7488328Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:23:48.7491549Z copying torch\include\torch\csrc\api\include\torch\data\transforms\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:23:48.7498210Z copying torch\include\torch\csrc\api\include\torch\data\transforms\collate.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:23:48.7504840Z copying torch\include\torch\csrc\api\include\torch\data\transforms\lambda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:23:48.7511593Z copying torch\include\torch\csrc\api\include\torch\data\transforms\stack.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:23:48.7518323Z copying torch\include\torch\csrc\api\include\torch\data\transforms\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:23:48.7524020Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail 2025-07-24T05:23:48.7527075Z copying torch\include\torch\csrc\api\include\torch\detail\static.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail 2025-07-24T05:23:48.7543673Z copying torch\include\torch\csrc\api\include\torch\detail\TensorDataContainer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail 2025-07-24T05:23:48.7544110Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:23:48.7545079Z copying torch\include\torch\csrc\api\include\torch\nn\cloneable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:23:48.7549978Z copying torch\include\torch\csrc\api\include\torch\nn\functional.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:23:48.7556815Z copying torch\include\torch\csrc\api\include\torch\nn\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:23:48.7563525Z copying torch\include\torch\csrc\api\include\torch\nn\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:23:48.7570963Z copying torch\include\torch\csrc\api\include\torch\nn\modules.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:23:48.7594820Z copying torch\include\torch\csrc\api\include\torch\nn\options.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:23:48.7601524Z copying torch\include\torch\csrc\api\include\torch\nn\pimpl-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:23:48.7608230Z copying torch\include\torch\csrc\api\include\torch\nn\pimpl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:23:48.7614943Z copying torch\include\torch\csrc\api\include\torch\nn\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:23:48.7620439Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7623761Z copying torch\include\torch\csrc\api\include\torch\nn\functional\activation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7631482Z copying torch\include\torch\csrc\api\include\torch\nn\functional\batchnorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7638217Z copying torch\include\torch\csrc\api\include\torch\nn\functional\conv.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7645004Z copying torch\include\torch\csrc\api\include\torch\nn\functional\distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7660612Z copying torch\include\torch\csrc\api\include\torch\nn\functional\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7667676Z copying torch\include\torch\csrc\api\include\torch\nn\functional\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7674923Z copying torch\include\torch\csrc\api\include\torch\nn\functional\fold.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7681860Z copying torch\include\torch\csrc\api\include\torch\nn\functional\instancenorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7688776Z copying torch\include\torch\csrc\api\include\torch\nn\functional\linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7696416Z copying torch\include\torch\csrc\api\include\torch\nn\functional\loss.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7703367Z copying torch\include\torch\csrc\api\include\torch\nn\functional\normalization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7710166Z copying torch\include\torch\csrc\api\include\torch\nn\functional\padding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7717475Z copying torch\include\torch\csrc\api\include\torch\nn\functional\pixelshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7724955Z copying torch\include\torch\csrc\api\include\torch\nn\functional\pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7733402Z copying torch\include\torch\csrc\api\include\torch\nn\functional\upsampling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7741224Z copying torch\include\torch\csrc\api\include\torch\nn\functional\vision.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:23:48.7747807Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7751164Z copying torch\include\torch\csrc\api\include\torch\nn\modules\activation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7762811Z copying torch\include\torch\csrc\api\include\torch\nn\modules\adaptive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7770006Z copying torch\include\torch\csrc\api\include\torch\nn\modules\batchnorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7776755Z copying torch\include\torch\csrc\api\include\torch\nn\modules\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7783555Z copying torch\include\torch\csrc\api\include\torch\nn\modules\conv.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7798718Z copying torch\include\torch\csrc\api\include\torch\nn\modules\distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7805421Z copying torch\include\torch\csrc\api\include\torch\nn\modules\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7812362Z copying torch\include\torch\csrc\api\include\torch\nn\modules\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7819109Z copying torch\include\torch\csrc\api\include\torch\nn\modules\fold.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7826192Z copying torch\include\torch\csrc\api\include\torch\nn\modules\instancenorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7837021Z copying torch\include\torch\csrc\api\include\torch\nn\modules\linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7843750Z copying torch\include\torch\csrc\api\include\torch\nn\modules\loss.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7851358Z copying torch\include\torch\csrc\api\include\torch\nn\modules\normalization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7858267Z copying torch\include\torch\csrc\api\include\torch\nn\modules\padding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7865314Z copying torch\include\torch\csrc\api\include\torch\nn\modules\pixelshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7872033Z copying torch\include\torch\csrc\api\include\torch\nn\modules\pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7879382Z copying torch\include\torch\csrc\api\include\torch\nn\modules\rnn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7886365Z copying torch\include\torch\csrc\api\include\torch\nn\modules\transformer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7893552Z copying torch\include\torch\csrc\api\include\torch\nn\modules\transformercoder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7901091Z copying torch\include\torch\csrc\api\include\torch\nn\modules\transformerlayer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7908012Z copying torch\include\torch\csrc\api\include\torch\nn\modules\upsampling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7914932Z copying torch\include\torch\csrc\api\include\torch\nn\modules\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7921853Z copying torch\include\torch\csrc\api\include\torch\nn\modules\_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:23:48.7928135Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:23:48.7931536Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\any.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:23:48.7938390Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\any_module_holder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:23:48.7945155Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\any_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:23:48.7951967Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\functional.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:23:48.7968353Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\moduledict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:23:48.7975459Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\modulelist.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:23:48.7986841Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\named_any.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:23:48.7993640Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterdict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:23:48.8000607Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterlist.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:23:48.8007587Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\sequential.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:23:48.8013471Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8016709Z copying torch\include\torch\csrc\api\include\torch\nn\options\activation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8024279Z copying torch\include\torch\csrc\api\include\torch\nn\options\adaptive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8030951Z copying torch\include\torch\csrc\api\include\torch\nn\options\batchnorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8037693Z copying torch\include\torch\csrc\api\include\torch\nn\options\conv.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8044634Z copying torch\include\torch\csrc\api\include\torch\nn\options\distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8059558Z copying torch\include\torch\csrc\api\include\torch\nn\options\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8066216Z copying torch\include\torch\csrc\api\include\torch\nn\options\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8073072Z copying torch\include\torch\csrc\api\include\torch\nn\options\fold.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8079795Z copying torch\include\torch\csrc\api\include\torch\nn\options\instancenorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8086786Z copying torch\include\torch\csrc\api\include\torch\nn\options\linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8093392Z copying torch\include\torch\csrc\api\include\torch\nn\options\loss.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8100501Z copying torch\include\torch\csrc\api\include\torch\nn\options\normalization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8107262Z copying torch\include\torch\csrc\api\include\torch\nn\options\padding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8113987Z copying torch\include\torch\csrc\api\include\torch\nn\options\pixelshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8121174Z copying torch\include\torch\csrc\api\include\torch\nn\options\pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8128452Z copying torch\include\torch\csrc\api\include\torch\nn\options\rnn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8135185Z copying torch\include\torch\csrc\api\include\torch\nn\options\transformer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8142007Z copying torch\include\torch\csrc\api\include\torch\nn\options\transformercoder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8149012Z copying torch\include\torch\csrc\api\include\torch\nn\options\transformerlayer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8156087Z copying torch\include\torch\csrc\api\include\torch\nn\options\upsampling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8162892Z copying torch\include\torch\csrc\api\include\torch\nn\options\vision.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:23:48.8168660Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-07-24T05:23:48.8171818Z copying torch\include\torch\csrc\api\include\torch\nn\parallel\data_parallel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-07-24T05:23:48.8177867Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:23:48.8181138Z copying torch\include\torch\csrc\api\include\torch\nn\utils\clip_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:23:48.8188195Z copying torch\include\torch\csrc\api\include\torch\nn\utils\convert_parameters.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:23:48.8195155Z copying torch\include\torch\csrc\api\include\torch\nn\utils\rnn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:23:48.8201159Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:23:48.8204437Z copying torch\include\torch\csrc\api\include\torch\optim\adagrad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:23:48.8211383Z copying torch\include\torch\csrc\api\include\torch\optim\adam.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:23:48.8218274Z copying torch\include\torch\csrc\api\include\torch\optim\adamw.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:23:48.8224996Z copying torch\include\torch\csrc\api\include\torch\optim\lbfgs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:23:48.8232579Z copying torch\include\torch\csrc\api\include\torch\optim\optimizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:23:48.8239881Z copying torch\include\torch\csrc\api\include\torch\optim\rmsprop.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:23:48.8256683Z copying torch\include\torch\csrc\api\include\torch\optim\serialize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:23:48.8264656Z copying torch\include\torch\csrc\api\include\torch\optim\sgd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:23:48.8271133Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:23:48.8274943Z copying torch\include\torch\csrc\api\include\torch\optim\schedulers\lr_scheduler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:23:48.8283108Z copying torch\include\torch\csrc\api\include\torch\optim\schedulers\reduce_on_plateau_scheduler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:23:48.8290404Z copying torch\include\torch\csrc\api\include\torch\optim\schedulers\step_lr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:23:48.8304486Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python 2025-07-24T05:23:48.8308221Z copying torch\include\torch\csrc\api\include\torch\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python 2025-07-24T05:23:48.8313713Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:23:48.8316955Z copying torch\include\torch\csrc\api\include\torch\serialize\archive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:23:48.8323739Z copying torch\include\torch\csrc\api\include\torch\serialize\input-archive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:23:48.8330456Z copying torch\include\torch\csrc\api\include\torch\serialize\output-archive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:23:48.8337556Z copying torch\include\torch\csrc\api\include\torch\serialize\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:23:48.8351435Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8354541Z copying torch\include\torch\csrc\autograd\anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8361271Z copying torch\include\torch\csrc\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8368396Z copying torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8374898Z copying torch\include\torch\csrc\autograd\cpp_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8390003Z copying torch\include\torch\csrc\autograd\custom_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8400913Z copying torch\include\torch\csrc\autograd\edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8407601Z copying torch\include\torch\csrc\autograd\engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8414518Z copying torch\include\torch\csrc\autograd\forward_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8421425Z copying torch\include\torch\csrc\autograd\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8429118Z copying torch\include\torch\csrc\autograd\FunctionsManual.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8440823Z copying torch\include\torch\csrc\autograd\function_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8447681Z copying torch\include\torch\csrc\autograd\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8454413Z copying torch\include\torch\csrc\autograd\graph_task.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8461474Z copying torch\include\torch\csrc\autograd\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8468157Z copying torch\include\torch\csrc\autograd\input_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8478742Z copying torch\include\torch\csrc\autograd\input_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8485732Z copying torch\include\torch\csrc\autograd\jit_decomp_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8492846Z copying torch\include\torch\csrc\autograd\profiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8499463Z copying torch\include\torch\csrc\autograd\profiler_kineto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8506582Z copying torch\include\torch\csrc\autograd\profiler_legacy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8513815Z copying torch\include\torch\csrc\autograd\profiler_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8520796Z copying torch\include\torch\csrc\autograd\python_anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8537149Z copying torch\include\torch\csrc\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8543874Z copying torch\include\torch\csrc\autograd\python_cpp_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8550862Z copying torch\include\torch\csrc\autograd\python_engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8562445Z copying torch\include\torch\csrc\autograd\python_enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8569344Z copying torch\include\torch\csrc\autograd\python_fft_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8576287Z copying torch\include\torch\csrc\autograd\python_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8583096Z copying torch\include\torch\csrc\autograd\python_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8590568Z copying torch\include\torch\csrc\autograd\python_legacy_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8597492Z copying torch\include\torch\csrc\autograd\python_linalg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8613495Z copying torch\include\torch\csrc\autograd\python_nested_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8620747Z copying torch\include\torch\csrc\autograd\python_nn_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8627492Z copying torch\include\torch\csrc\autograd\python_saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8634860Z copying torch\include\torch\csrc\autograd\python_sparse_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8641854Z copying torch\include\torch\csrc\autograd\python_special_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8649065Z copying torch\include\torch\csrc\autograd\python_torch_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8656687Z copying torch\include\torch\csrc\autograd\python_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8664850Z copying torch\include\torch\csrc\autograd\python_variable_indexing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8673116Z copying torch\include\torch\csrc\autograd\record_function_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8683149Z copying torch\include\torch\csrc\autograd\saved_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8693456Z copying torch\include\torch\csrc\autograd\saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8785158Z copying torch\include\torch\csrc\autograd\symbolic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8791360Z copying torch\include\torch\csrc\autograd\variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8799054Z copying torch\include\torch\csrc\autograd\VariableTypeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8809721Z copying torch\include\torch\csrc\autograd\variable_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-24T05:23:48.8816145Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-24T05:23:48.8819531Z copying torch\include\torch\csrc\autograd\functions\accumulate_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-24T05:23:48.8826359Z copying torch\include\torch\csrc\autograd\functions\basic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-24T05:23:48.8832896Z copying torch\include\torch\csrc\autograd\functions\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-24T05:23:48.8839917Z copying torch\include\torch\csrc\autograd\functions\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-24T05:23:48.8859203Z copying torch\include\torch\csrc\autograd\functions\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-24T05:23:48.8865801Z copying torch\include\torch\csrc\autograd\functions\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-24T05:23:48.8904948Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-24T05:23:48.8908126Z copying torch\include\torch\csrc\autograd\generated\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-24T05:23:48.8920598Z copying torch\include\torch\csrc\autograd\generated\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-24T05:23:48.8931094Z copying torch\include\torch\csrc\autograd\generated\python_return_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-24T05:23:48.8942213Z copying torch\include\torch\csrc\autograd\generated\VariableType.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-24T05:23:48.8948493Z copying torch\include\torch\csrc\autograd\generated\variable_factories.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-24T05:23:48.8956276Z copying torch\include\torch\csrc\autograd\generated\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-24T05:23:48.8967721Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-24T05:23:48.8970768Z copying torch\include\torch\csrc\autograd\utils\error_messages.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-24T05:23:48.8977384Z copying torch\include\torch\csrc\autograd\utils\grad_layout_contract.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-24T05:23:48.8984029Z copying torch\include\torch\csrc\autograd\utils\lambda_post_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-24T05:23:48.8991034Z copying torch\include\torch\csrc\autograd\utils\python_arg_parsing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-24T05:23:48.9006724Z copying torch\include\torch\csrc\autograd\utils\warnings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-24T05:23:48.9012987Z copying torch\include\torch\csrc\autograd\utils\wrap_outputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-24T05:23:48.9018813Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-07-24T05:23:48.9022180Z copying torch\include\torch\csrc\cpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-07-24T05:23:48.9027722Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:23:48.9030925Z copying torch\include\torch\csrc\cuda\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:23:48.9037758Z copying torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:23:48.9044348Z copying torch\include\torch\csrc\cuda\device_set.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:23:48.9050657Z copying torch\include\torch\csrc\cuda\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:23:48.9056946Z copying torch\include\torch\csrc\cuda\GdsFile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:23:48.9072570Z copying torch\include\torch\csrc\cuda\memory_snapshot.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:23:48.9083763Z copying torch\include\torch\csrc\cuda\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:23:48.9090364Z copying torch\include\torch\csrc\cuda\nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:23:48.9097122Z copying torch\include\torch\csrc\cuda\python_comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:23:48.9104022Z copying torch\include\torch\csrc\cuda\python_nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:23:48.9110795Z copying torch\include\torch\csrc\cuda\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:23:48.9117404Z copying torch\include\torch\csrc\cuda\THCP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:23:48.9123814Z copying torch\include\torch\csrc\cuda\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-24T05:23:48.9129628Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:23:48.9134605Z copying torch\include\torch\csrc\distributed\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:23:48.9142189Z copying torch\include\torch\csrc\distributed\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:23:48.9148303Z copying torch\include\torch\csrc\distributed\autograd\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:23:48.9160693Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-07-24T05:23:48.9164183Z copying torch\include\torch\csrc\distributed\autograd\context\container.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-07-24T05:23:48.9171363Z copying torch\include\torch\csrc\distributed\autograd\context\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-07-24T05:23:48.9177642Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\engine 2025-07-24T05:23:48.9180962Z copying torch\include\torch\csrc\distributed\autograd\engine\dist_engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\engine 2025-07-24T05:23:48.9187448Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions 2025-07-24T05:23:48.9200097Z copying torch\include\torch\csrc\distributed\autograd\functions\recvrpc_backward.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions 2025-07-24T05:23:48.9210926Z copying torch\include\torch\csrc\distributed\autograd\functions\sendrpc_backward.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions 2025-07-24T05:23:48.9216640Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:23:48.9219993Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\autograd_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:23:48.9227638Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_req.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:23:48.9235215Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:23:48.9253123Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_req.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:23:48.9261105Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:23:48.9267497Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:23:48.9275975Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_req.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:23:48.9282603Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:23:48.9289610Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_req.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:23:48.9296724Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:23:48.9302754Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:48.9305865Z copying torch\include\torch\csrc\distributed\c10d\c10d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:48.9312368Z copying torch\include\torch\csrc\distributed\c10d\debug.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:48.9318987Z copying torch\include\torch\csrc\distributed\c10d\error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:48.9326266Z copying torch\include\torch\csrc\distributed\c10d\exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:48.9332420Z copying torch\include\torch\csrc\distributed\c10d\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:48.9339072Z copying torch\include\torch\csrc\distributed\c10d\python_comm_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:48.9355890Z copying torch\include\torch\csrc\distributed\c10d\socket.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:48.9363051Z copying torch\include\torch\csrc\distributed\c10d\socket_fmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:48.9369791Z copying torch\include\torch\csrc\distributed\c10d\TraceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:48.9375994Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:23:48.9379234Z copying torch\include\torch\csrc\distributed\c10d\quantization\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:23:48.9385787Z copying torch\include\torch\csrc\distributed\c10d\quantization\quantization_gpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:23:48.9392722Z copying torch\include\torch\csrc\distributed\c10d\quantization\quantization_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:23:48.9407707Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:23:48.9410948Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:23:48.9416645Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9419829Z copying torch\include\torch\csrc\distributed\rpc\agent_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9426341Z copying torch\include\torch\csrc\distributed\rpc\message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9432927Z copying torch\include\torch\csrc\distributed\rpc\python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9439987Z copying torch\include\torch\csrc\distributed\rpc\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9456178Z copying torch\include\torch\csrc\distributed\rpc\python_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9463122Z copying torch\include\torch\csrc\distributed\rpc\python_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9469898Z copying torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9480803Z copying torch\include\torch\csrc\distributed\rpc\py_rref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9487531Z copying torch\include\torch\csrc\distributed\rpc\request_callback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9494234Z copying torch\include\torch\csrc\distributed\rpc\request_callback_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9501022Z copying torch\include\torch\csrc\distributed\rpc\request_callback_no_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9508196Z copying torch\include\torch\csrc\distributed\rpc\rpc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9514670Z copying torch\include\torch\csrc\distributed\rpc\rpc_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9521633Z copying torch\include\torch\csrc\distributed\rpc\rpc_command_base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9528485Z copying torch\include\torch\csrc\distributed\rpc\rref_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9535289Z copying torch\include\torch\csrc\distributed\rpc\rref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9542619Z copying torch\include\torch\csrc\distributed\rpc\rref_proto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9549640Z copying torch\include\torch\csrc\distributed\rpc\script_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9557139Z copying torch\include\torch\csrc\distributed\rpc\script_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9564474Z copying torch\include\torch\csrc\distributed\rpc\script_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9580314Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9588219Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9595041Z copying torch\include\torch\csrc\distributed\rpc\torchscript_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9602198Z copying torch\include\torch\csrc\distributed\rpc\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9609213Z copying torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9616178Z copying torch\include\torch\csrc\distributed\rpc\unpickled_python_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9623561Z copying torch\include\torch\csrc\distributed\rpc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:23:48.9629438Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-07-24T05:23:48.9632442Z copying torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-07-24T05:23:48.9638574Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler 2025-07-24T05:23:48.9642214Z copying torch\include\torch\csrc\distributed\rpc\profiler\remote_profiler_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler 2025-07-24T05:23:48.9649036Z copying torch\include\torch\csrc\distributed\rpc\profiler\server_process_global_profiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler 2025-07-24T05:23:48.9654996Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-07-24T05:23:48.9658348Z copying torch\include\torch\csrc\distributed\rpc\testing\faulty_tensorpipe_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-07-24T05:23:48.9665972Z copying torch\include\torch\csrc\distributed\rpc\testing\testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-07-24T05:23:48.9671508Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:23:48.9674527Z copying torch\include\torch\csrc\dynamo\cache_entry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:23:48.9681467Z copying torch\include\torch\csrc\dynamo\compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:23:48.9689524Z copying torch\include\torch\csrc\dynamo\cpp_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:23:48.9695884Z copying torch\include\torch\csrc\dynamo\cpython_defs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:23:48.9716867Z copying torch\include\torch\csrc\dynamo\cpython_includes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:23:48.9723661Z copying torch\include\torch\csrc\dynamo\debug_macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:23:48.9731079Z copying torch\include\torch\csrc\dynamo\eval_frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:23:48.9738464Z copying torch\include\torch\csrc\dynamo\eval_frame_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:23:48.9745821Z copying torch\include\torch\csrc\dynamo\extra_state.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:23:48.9753621Z copying torch\include\torch\csrc\dynamo\framelocals_mapping.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:23:48.9760714Z copying torch\include\torch\csrc\dynamo\guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:23:48.9767670Z copying torch\include\torch\csrc\dynamo\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:23:48.9774382Z copying torch\include\torch\csrc\dynamo\python_compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:23:48.9780885Z copying torch\include\torch\csrc\dynamo\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-24T05:23:48.9786640Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-07-24T05:23:48.9790370Z copying torch\include\torch\csrc\export\example_upgraders.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-07-24T05:23:48.9796915Z copying torch\include\torch\csrc\export\pt2_archive_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-07-24T05:23:48.9803391Z copying torch\include\torch\csrc\export\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-07-24T05:23:48.9809952Z copying torch\include\torch\csrc\export\upgrader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-07-24T05:23:48.9815639Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-07-24T05:23:48.9818704Z copying torch\include\torch\csrc\functorch\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-07-24T05:23:48.9824202Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-07-24T05:23:48.9827098Z copying torch\include\torch\csrc\fx\node.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-07-24T05:23:48.9832647Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-07-24T05:23:48.9835806Z copying torch\include\torch\csrc\inductor\array_ref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-07-24T05:23:48.9842873Z copying torch\include\torch\csrc\inductor\cpp_prefix.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-07-24T05:23:48.9849944Z copying torch\include\torch\csrc\inductor\inductor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-07-24T05:23:48.9857096Z copying torch\include\torch\csrc\inductor\static_cuda_launcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-07-24T05:23:48.9872177Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager 2025-07-24T05:23:48.9875437Z copying torch\include\torch\csrc\inductor\aoti_eager\kernel_holder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager 2025-07-24T05:23:48.9882233Z copying torch\include\torch\csrc\inductor\aoti_eager\kernel_meta_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager 2025-07-24T05:23:48.9888027Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:23:48.9891185Z copying torch\include\torch\csrc\inductor\aoti_include\array_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:23:48.9897848Z copying torch\include\torch\csrc\inductor\aoti_include\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:23:48.9904371Z copying torch\include\torch\csrc\inductor\aoti_include\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:23:48.9911006Z copying torch\include\torch\csrc\inductor\aoti_include\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:23:48.9917441Z copying torch\include\torch\csrc\inductor\aoti_include\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:23:48.9933757Z copying torch\include\torch\csrc\inductor\aoti_include\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:23:48.9939635Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-07-24T05:23:48.9943062Z copying torch\include\torch\csrc\inductor\aoti_package\model_package_loader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-07-24T05:23:48.9949910Z copying torch\include\torch\csrc\inductor\aoti_package\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-07-24T05:23:48.9955604Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:23:48.9958787Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:23:48.9966581Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:23:48.9972880Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:23:48.9988962Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:23:48.9996404Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:23:49.0003586Z copying torch\include\torch\csrc\inductor\aoti_runner\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:23:49.0009110Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.0012254Z copying torch\include\torch\csrc\inductor\aoti_runtime\arrayref_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.0019884Z copying torch\include\torch\csrc\inductor\aoti_runtime\constant_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.0026361Z copying torch\include\torch\csrc\inductor\aoti_runtime\device_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.0041693Z copying torch\include\torch\csrc\inductor\aoti_runtime\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.0048698Z copying torch\include\torch\csrc\inductor\aoti_runtime\mini_array_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.0056025Z copying torch\include\torch\csrc\inductor\aoti_runtime\model.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.0062505Z copying torch\include\torch\csrc\inductor\aoti_runtime\model_base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.0070131Z copying torch\include\torch\csrc\inductor\aoti_runtime\model_container.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.0077713Z copying torch\include\torch\csrc\inductor\aoti_runtime\scalar_to_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.0084991Z copying torch\include\torch\csrc\inductor\aoti_runtime\sycl_runtime_wrappers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.0096313Z copying torch\include\torch\csrc\inductor\aoti_runtime\thread_local.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.0103829Z copying torch\include\torch\csrc\inductor\aoti_runtime\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.0110389Z copying torch\include\torch\csrc\inductor\aoti_runtime\utils_cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.0117329Z copying torch\include\torch\csrc\inductor\aoti_runtime\utils_xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.0123286Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:23:49.0126606Z copying torch\include\torch\csrc\inductor\aoti_torch\mkldnn_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:23:49.0134097Z copying torch\include\torch\csrc\inductor\aoti_torch\oss_proxy_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:23:49.0140480Z copying torch\include\torch\csrc\inductor\aoti_torch\proxy_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:23:49.0157991Z copying torch\include\torch\csrc\inductor\aoti_torch\tensor_converter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:23:49.0164721Z copying torch\include\torch\csrc\inductor\aoti_torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:23:49.0170541Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:23:49.0173615Z 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-07-24T05:23:49.0181118Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:23:49.0188152Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:23:49.0195144Z 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-07-24T05:23:49.0201888Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim_mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:23:49.0208780Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim_xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:23:49.0223789Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:23:49.0227008Z copying torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:23:49.0235189Z copying torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:23:49.0242129Z copying torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:23:49.0258866Z copying torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:23:49.0264935Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:23:49.0268092Z copying torch\include\torch\csrc\inductor\cpp_wrapper\array_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:23:49.0274607Z copying torch\include\torch\csrc\inductor\cpp_wrapper\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:23:49.0281171Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:23:49.0291413Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:23:49.0299301Z copying torch\include\torch\csrc\inductor\cpp_wrapper\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:23:49.0316161Z copying torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:23:49.0322206Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:23:49.0326160Z copying torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:23:49.0333499Z copying torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:23:49.0339785Z copying torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:23:49.0346789Z copying torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:23:49.0352583Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-07-24T05:23:49.0356423Z copying torch\include\torch\csrc\instruction_counter\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-07-24T05:23:49.0362178Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-07-24T05:23:49.0365681Z copying torch\include\torch\csrc\jit\jit_log.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-07-24T05:23:49.0372412Z copying torch\include\torch\csrc\jit\jit_opt_limit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-07-24T05:23:49.0379779Z copying torch\include\torch\csrc\jit\resource_guard.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-07-24T05:23:49.0385380Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-24T05:23:49.0388602Z copying torch\include\torch\csrc\jit\api\compilation_unit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-24T05:23:49.0395497Z copying torch\include\torch\csrc\jit\api\function_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-24T05:23:49.0402388Z copying torch\include\torch\csrc\jit\api\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-24T05:23:49.0408906Z copying torch\include\torch\csrc\jit\api\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-24T05:23:49.0416083Z copying torch\include\torch\csrc\jit\api\object.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-24T05:23:49.0431801Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:23:49.0444444Z copying torch\include\torch\csrc\jit\backends\backend.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:23:49.0455142Z copying torch\include\torch\csrc\jit\backends\backend_debug_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:23:49.0461801Z copying torch\include\torch\csrc\jit\backends\backend_debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:23:49.0468799Z copying torch\include\torch\csrc\jit\backends\backend_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:23:49.0484490Z copying torch\include\torch\csrc\jit\backends\backend_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:23:49.0491721Z copying torch\include\torch\csrc\jit\backends\backend_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:23:49.0498149Z copying torch\include\torch\csrc\jit\backends\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:23:49.0505206Z copying torch\include\torch\csrc\jit\backends\backend_preprocess.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:23:49.0512387Z copying torch\include\torch\csrc\jit\backends\backend_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-24T05:23:49.0518413Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-07-24T05:23:49.0522395Z copying torch\include\torch\csrc\jit\backends\coreml\cpp\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-07-24T05:23:49.0531862Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:23:49.0535372Z copying torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLCompiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:23:49.0542863Z copying torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLExecutor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:23:49.0549803Z copying torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLFeatureProvider.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:23:49.0565735Z copying torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLModelWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:23:49.0573471Z copying torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLTensorSpec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:23:49.0579566Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack 2025-07-24T05:23:49.0582546Z copying torch\include\torch\csrc\jit\backends\xnnpack\xnnpack_graph_builder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack 2025-07-24T05:23:49.0588528Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-07-24T05:23:49.0591903Z copying torch\include\torch\csrc\jit\backends\xnnpack\compiler\xnn_compiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-07-24T05:23:49.0598036Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-07-24T05:23:49.0601153Z copying torch\include\torch\csrc\jit\backends\xnnpack\executor\xnn_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-07-24T05:23:49.0607113Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-07-24T05:23:49.0610600Z copying torch\include\torch\csrc\jit\backends\xnnpack\serialization\serializer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-07-24T05:23:49.0616442Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-07-24T05:23:49.0621979Z copying torch\include\torch\csrc\jit\codegen\cuda\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-07-24T05:23:49.0628243Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:23:49.0631295Z copying torch\include\torch\csrc\jit\codegen\fuser\arg_spec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:23:49.0638953Z copying torch\include\torch\csrc\jit\codegen\fuser\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:23:49.0645322Z copying torch\include\torch\csrc\jit\codegen\fuser\compiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:23:49.0652295Z copying torch\include\torch\csrc\jit\codegen\fuser\executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:23:49.0658903Z copying torch\include\torch\csrc\jit\codegen\fuser\fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:23:49.0665790Z copying torch\include\torch\csrc\jit\codegen\fuser\fused_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:23:49.0683137Z copying torch\include\torch\csrc\jit\codegen\fuser\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:23:49.0689678Z copying torch\include\torch\csrc\jit\codegen\fuser\kernel_cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:23:49.0696614Z copying torch\include\torch\csrc\jit\codegen\fuser\kernel_spec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:23:49.0704073Z copying torch\include\torch\csrc\jit\codegen\fuser\partition_desc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:23:49.0710799Z copying torch\include\torch\csrc\jit\codegen\fuser\tensor_desc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:23:49.0717629Z copying torch\include\torch\csrc\jit\codegen\fuser\tensor_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:23:49.0723405Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:23:49.0726551Z copying torch\include\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:23:49.0734132Z copying torch\include\torch\csrc\jit\codegen\fuser\cpu\resource_strings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:23:49.0774227Z copying torch\include\torch\csrc\jit\codegen\fuser\cpu\temp_file.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:23:49.0780282Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-07-24T05:23:49.0783473Z copying torch\include\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-07-24T05:23:49.0790714Z copying torch\include\torch\csrc\jit\codegen\fuser\cuda\resource_strings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-07-24T05:23:49.0796581Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:23:49.0799681Z copying torch\include\torch\csrc\jit\codegen\onednn\decompose_silu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:23:49.0806909Z copying torch\include\torch\csrc\jit\codegen\onednn\defer_size_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:23:49.0813298Z copying torch\include\torch\csrc\jit\codegen\onednn\graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:23:49.0820001Z copying torch\include\torch\csrc\jit\codegen\onednn\graph_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:23:49.0830616Z copying torch\include\torch\csrc\jit\codegen\onednn\guard_shape.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:23:49.0841457Z copying torch\include\torch\csrc\jit\codegen\onednn\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:23:49.0848165Z copying torch\include\torch\csrc\jit\codegen\onednn\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:23:49.0854885Z copying torch\include\torch\csrc\jit\codegen\onednn\layout_propagation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:23:49.0862175Z copying torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:23:49.0872680Z copying torch\include\torch\csrc\jit\codegen\onednn\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:23:49.0878402Z copying torch\include\torch\csrc\jit\codegen\onednn\prepare_binary.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:23:49.0883773Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-07-24T05:23:49.0886851Z copying torch\include\torch\csrc\jit\cuda\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-07-24T05:23:49.0892776Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.0895892Z copying torch\include\torch\csrc\jit\frontend\builtin_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.0902862Z copying torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.0909259Z copying torch\include\torch\csrc\jit\frontend\concrete_module_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.0925851Z copying torch\include\torch\csrc\jit\frontend\convert_to_ssa.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.0932345Z copying torch\include\torch\csrc\jit\frontend\edit_distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.0938780Z copying torch\include\torch\csrc\jit\frontend\error_report.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.0945581Z copying torch\include\torch\csrc\jit\frontend\exit_transforms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.0951966Z copying torch\include\torch\csrc\jit\frontend\function_schema_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.0958840Z copying torch\include\torch\csrc\jit\frontend\inline_loop_condition.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.0965490Z copying torch\include\torch\csrc\jit\frontend\ir_emitter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.0971870Z copying torch\include\torch\csrc\jit\frontend\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.0979073Z copying torch\include\torch\csrc\jit\frontend\mini_environment.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.0985849Z copying torch\include\torch\csrc\jit\frontend\name_mangler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.0992519Z copying torch\include\torch\csrc\jit\frontend\parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.1016163Z copying torch\include\torch\csrc\jit\frontend\parser_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.1022830Z copying torch\include\torch\csrc\jit\frontend\parse_string_literal.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.1029492Z copying torch\include\torch\csrc\jit\frontend\resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.1040427Z copying torch\include\torch\csrc\jit\frontend\schema_matching.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.1047471Z copying torch\include\torch\csrc\jit\frontend\schema_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.1054345Z copying torch\include\torch\csrc\jit\frontend\script_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.1072689Z copying torch\include\torch\csrc\jit\frontend\source_range.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.1080856Z copying torch\include\torch\csrc\jit\frontend\source_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.1088767Z copying torch\include\torch\csrc\jit\frontend\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.1096110Z copying torch\include\torch\csrc\jit\frontend\sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.1104507Z copying torch\include\torch\csrc\jit\frontend\tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.1112089Z copying torch\include\torch\csrc\jit\frontend\tree.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.1119302Z copying torch\include\torch\csrc\jit\frontend\tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.1126807Z copying torch\include\torch\csrc\jit\frontend\versioned_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-24T05:23:49.1133016Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:23:49.1136115Z copying torch\include\torch\csrc\jit\ir\alias_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:23:49.1143421Z copying torch\include\torch\csrc\jit\ir\attributes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:23:49.1150295Z copying torch\include\torch\csrc\jit\ir\constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:23:49.1156947Z copying torch\include\torch\csrc\jit\ir\graph_node_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:23:49.1177960Z copying torch\include\torch\csrc\jit\ir\graph_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:23:49.1184475Z copying torch\include\torch\csrc\jit\ir\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:23:49.1192436Z copying torch\include\torch\csrc\jit\ir\irparser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:23:49.1199305Z copying torch\include\torch\csrc\jit\ir\ir_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:23:49.1206011Z copying torch\include\torch\csrc\jit\ir\named_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:23:49.1216914Z copying torch\include\torch\csrc\jit\ir\node_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:23:49.1223591Z copying torch\include\torch\csrc\jit\ir\scope.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:23:49.1230314Z copying torch\include\torch\csrc\jit\ir\subgraph_matcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:23:49.1237270Z copying torch\include\torch\csrc\jit\ir\type_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-24T05:23:49.1246918Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1249951Z copying torch\include\torch\csrc\jit\mobile\code.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1256552Z copying torch\include\torch\csrc\jit\mobile\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1263270Z copying torch\include\torch\csrc\jit\mobile\file_format.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1270115Z copying torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1290059Z copying torch\include\torch\csrc\jit\mobile\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1296901Z copying torch\include\torch\csrc\jit\mobile\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1303487Z copying torch\include\torch\csrc\jit\mobile\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1309931Z copying torch\include\torch\csrc\jit\mobile\import_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1316774Z copying torch\include\torch\csrc\jit\mobile\import_export_common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1323233Z copying torch\include\torch\csrc\jit\mobile\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1330391Z copying torch\include\torch\csrc\jit\mobile\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1337056Z copying torch\include\torch\csrc\jit\mobile\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1343652Z copying torch\include\torch\csrc\jit\mobile\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1350200Z copying torch\include\torch\csrc\jit\mobile\parse_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1357584Z copying torch\include\torch\csrc\jit\mobile\parse_operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1364454Z copying torch\include\torch\csrc\jit\mobile\prim_ops_registery.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1371458Z copying torch\include\torch\csrc\jit\mobile\profiler_edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1378240Z copying torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1385081Z copying torch\include\torch\csrc\jit\mobile\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1391958Z copying torch\include\torch\csrc\jit\mobile\register_ops_common_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1398769Z copying torch\include\torch\csrc\jit\mobile\type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1406302Z copying torch\include\torch\csrc\jit\mobile\upgrader_mobile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-24T05:23:49.1422193Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:23:49.1425559Z copying torch\include\torch\csrc\jit\mobile\compatibility\backport.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:23:49.1432160Z copying torch\include\torch\csrc\jit\mobile\compatibility\backport_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:23:49.1439207Z copying torch\include\torch\csrc\jit\mobile\compatibility\model_compatibility.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:23:49.1456235Z copying torch\include\torch\csrc\jit\mobile\compatibility\runtime_compatibility.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:23:49.1462064Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:23:49.1465834Z copying torch\include\torch\csrc\jit\mobile\model_tracer\BuildFeatureTracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:23:49.1472778Z copying torch\include\torch\csrc\jit\mobile\model_tracer\CustomClassTracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:23:49.1479730Z copying torch\include\torch\csrc\jit\mobile\model_tracer\KernelDTypeTracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:23:49.1497087Z copying torch\include\torch\csrc\jit\mobile\model_tracer\MobileModelRunner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:23:49.1504748Z copying torch\include\torch\csrc\jit\mobile\model_tracer\OperatorCallTracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:23:49.1512316Z copying torch\include\torch\csrc\jit\mobile\model_tracer\TensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:23:49.1519759Z copying torch\include\torch\csrc\jit\mobile\model_tracer\TracerRunner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:23:49.1525372Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:23:49.1528465Z copying torch\include\torch\csrc\jit\mobile\nnc\aot_compiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:23:49.1535600Z copying torch\include\torch\csrc\jit\mobile\nnc\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:23:49.1542483Z copying torch\include\torch\csrc\jit\mobile\nnc\registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:23:49.1548276Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:23:49.1551712Z copying torch\include\torch\csrc\jit\mobile\train\export_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:23:49.1558685Z copying torch\include\torch\csrc\jit\mobile\train\random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:23:49.1565669Z copying torch\include\torch\csrc\jit\mobile\train\sequential.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:23:49.1571701Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\optim 2025-07-24T05:23:49.1575668Z copying torch\include\torch\csrc\jit\mobile\train\optim\sgd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\optim 2025-07-24T05:23:49.1581966Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:23:49.1585482Z copying torch\include\torch\csrc\jit\operator_upgraders\upgraders.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:23:49.1629464Z copying torch\include\torch\csrc\jit\operator_upgraders\upgraders_entry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:23:49.1636415Z copying torch\include\torch\csrc\jit\operator_upgraders\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:23:49.1643180Z copying torch\include\torch\csrc\jit\operator_upgraders\version_map.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:23:49.1772257Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1775196Z copying torch\include\torch\csrc\jit\passes\add_if_then_else.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1781782Z copying torch\include\torch\csrc\jit\passes\annotate_warns.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1788376Z copying torch\include\torch\csrc\jit\passes\autocast.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1795092Z copying torch\include\torch\csrc\jit\passes\bailout_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1805658Z copying torch\include\torch\csrc\jit\passes\batch_mm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1812105Z copying torch\include\torch\csrc\jit\passes\canonicalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1818650Z copying torch\include\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1825383Z copying torch\include\torch\csrc\jit\passes\check_strict_fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1831907Z copying torch\include\torch\csrc\jit\passes\clear_profiling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1838533Z copying torch\include\torch\csrc\jit\passes\clear_undefinedness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1846009Z copying torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1852289Z copying torch\include\torch\csrc\jit\passes\concat_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1858851Z copying torch\include\torch\csrc\jit\passes\constant_pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1865315Z copying torch\include\torch\csrc\jit\passes\constant_propagation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1872280Z copying torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1878925Z copying torch\include\torch\csrc\jit\passes\create_functional_graphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1885559Z copying torch\include\torch\csrc\jit\passes\dead_code_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1892292Z copying torch\include\torch\csrc\jit\passes\decompose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1899046Z copying torch\include\torch\csrc\jit\passes\device_type_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1909528Z copying torch\include\torch\csrc\jit\passes\dtype_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1916516Z copying torch\include\torch\csrc\jit\passes\eliminate_no_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1922992Z copying torch\include\torch\csrc\jit\passes\erase_number_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1929817Z copying torch\include\torch\csrc\jit\passes\fixup_trace_scope_blocks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1936548Z copying torch\include\torch\csrc\jit\passes\fold_conv_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1943355Z copying torch\include\torch\csrc\jit\passes\fold_linear_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1950150Z copying torch\include\torch\csrc\jit\passes\freeze_module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1957298Z copying torch\include\torch\csrc\jit\passes\frozen_concat_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1963964Z copying torch\include\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1975067Z copying torch\include\torch\csrc\jit\passes\frozen_conv_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1982081Z copying torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1988728Z copying torch\include\torch\csrc\jit\passes\frozen_linear_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.1995428Z copying torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2002102Z copying torch\include\torch\csrc\jit\passes\frozen_ops_to_mkldnn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2008752Z copying torch\include\torch\csrc\jit\passes\fuse_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2015637Z copying torch\include\torch\csrc\jit\passes\fuse_relu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2022201Z copying torch\include\torch\csrc\jit\passes\graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2032744Z copying torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2044078Z copying torch\include\torch\csrc\jit\passes\guard_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2050712Z copying torch\include\torch\csrc\jit\passes\hoist_conv_packed_params.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2057254Z copying torch\include\torch\csrc\jit\passes\inliner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2064446Z copying torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2075861Z copying torch\include\torch\csrc\jit\passes\inline_forked_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2083274Z copying torch\include\torch\csrc\jit\passes\inline_fork_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2090702Z copying torch\include\torch\csrc\jit\passes\inplace_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2098087Z copying torch\include\torch\csrc\jit\passes\insert_guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2105731Z copying torch\include\torch\csrc\jit\passes\integer_value_refinement.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2122168Z copying torch\include\torch\csrc\jit\passes\lift_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2129167Z copying torch\include\torch\csrc\jit\passes\liveness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2136093Z copying torch\include\torch\csrc\jit\passes\loop_unrolling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2143201Z copying torch\include\torch\csrc\jit\passes\lower_grad_of.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2150531Z copying torch\include\torch\csrc\jit\passes\lower_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2157156Z copying torch\include\torch\csrc\jit\passes\lower_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2163872Z copying torch\include\torch\csrc\jit\passes\metal_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2170530Z copying torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2177364Z copying torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2183910Z copying torch\include\torch\csrc\jit\passes\normalize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2198222Z copying torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2204574Z copying torch\include\torch\csrc\jit\passes\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2211129Z copying torch\include\torch\csrc\jit\passes\pass_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2218073Z copying torch\include\torch\csrc\jit\passes\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2224546Z copying torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2231111Z copying torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2238079Z copying torch\include\torch\csrc\jit\passes\peephole_list_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2245008Z copying torch\include\torch\csrc\jit\passes\peephole_non_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2252030Z copying torch\include\torch\csrc\jit\passes\prepack_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2259305Z copying torch\include\torch\csrc\jit\passes\refine_tuple_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2269536Z copying torch\include\torch\csrc\jit\passes\remove_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2279786Z copying torch\include\torch\csrc\jit\passes\remove_exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2286500Z copying torch\include\torch\csrc\jit\passes\remove_expands.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2293075Z copying torch\include\torch\csrc\jit\passes\remove_inplace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2299685Z copying torch\include\torch\csrc\jit\passes\remove_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2306691Z copying torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2313697Z copying torch\include\torch\csrc\jit\passes\replacement_of_old_operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2320673Z copying torch\include\torch\csrc\jit\passes\requires_grad_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2327189Z copying torch\include\torch\csrc\jit\passes\restore_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2334239Z copying torch\include\torch\csrc\jit\passes\shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2349652Z copying torch\include\torch\csrc\jit\passes\specialize_autogradzero.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2357543Z copying torch\include\torch\csrc\jit\passes\subgraph_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2365515Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2373167Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2381215Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2388414Z copying torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2396377Z copying torch\include\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2403810Z copying torch\include\torch\csrc\jit\passes\value_refinement_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2410823Z copying torch\include\torch\csrc\jit\passes\variadic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2417623Z copying torch\include\torch\csrc\jit\passes\vulkan_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2425583Z copying torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-24T05:23:49.2431671Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-07-24T05:23:49.2435285Z copying torch\include\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-07-24T05:23:49.2441047Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2444244Z copying torch\include\torch\csrc\jit\passes\onnx\cast_all_constant_to_floating.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2451508Z copying torch\include\torch\csrc\jit\passes\onnx\constant_fold.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2470703Z copying torch\include\torch\csrc\jit\passes\onnx\constant_map.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2471520Z copying torch\include\torch\csrc\jit\passes\onnx\deduplicate_initializers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2479395Z copying torch\include\torch\csrc\jit\passes\onnx\eliminate_unused_items.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2486326Z copying torch\include\torch\csrc\jit\passes\onnx\eval_peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2493579Z copying torch\include\torch\csrc\jit\passes\onnx\fixup_onnx_controlflow.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2500104Z copying torch\include\torch\csrc\jit\passes\onnx\function_extraction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2507274Z copying torch\include\torch\csrc\jit\passes\onnx\function_substitution.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2514872Z copying torch\include\torch\csrc\jit\passes\onnx\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2521573Z copying torch\include\torch\csrc\jit\passes\onnx\list_model_parameters.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2528189Z copying torch\include\torch\csrc\jit\passes\onnx\naming.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2534754Z copying torch\include\torch\csrc\jit\passes\onnx\onnx_log.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2541231Z copying torch\include\torch\csrc\jit\passes\onnx\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2547743Z copying torch\include\torch\csrc\jit\passes\onnx\prepare_division_for_onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2554270Z copying torch\include\torch\csrc\jit\passes\onnx\preprocess_for_onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2560949Z copying torch\include\torch\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2571820Z copying torch\include\torch\csrc\jit\passes\onnx\scalar_type_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2578412Z copying torch\include\torch\csrc\jit\passes\onnx\shape_type_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2585297Z copying torch\include\torch\csrc\jit\passes\onnx\unpack_quantized_weights.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:23:49.2595058Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:23:49.2598501Z copying torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:23:49.2604962Z copying torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:23:49.2611330Z copying torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:23:49.2622599Z copying torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:23:49.2628322Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:23:49.2631844Z copying torch\include\torch\csrc\jit\passes\quantization\dedup_module_uses.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:23:49.2638596Z copying torch\include\torch\csrc\jit\passes\quantization\finalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:23:49.2645499Z copying torch\include\torch\csrc\jit\passes\quantization\fusion_passes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:23:49.2651939Z copying torch\include\torch\csrc\jit\passes\quantization\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:23:49.2663276Z copying torch\include\torch\csrc\jit\passes\quantization\insert_observers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:23:49.2670091Z copying torch\include\torch\csrc\jit\passes\quantization\insert_quant_dequant.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:23:49.2677074Z copying torch\include\torch\csrc\jit\passes\quantization\quantization_patterns.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:23:49.2684809Z copying torch\include\torch\csrc\jit\passes\quantization\quantization_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:23:49.2691841Z copying torch\include\torch\csrc\jit\passes\quantization\register_packed_params.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:23:49.2697436Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:23:49.2700608Z copying torch\include\torch\csrc\jit\passes\utils\check_alias_annotation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:23:49.2707325Z copying torch\include\torch\csrc\jit\passes\utils\memory_dag.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:23:49.2714045Z copying torch\include\torch\csrc\jit\passes\utils\optimization_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:23:49.2724709Z copying torch\include\torch\csrc\jit\passes\utils\op_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:23:49.2731362Z copying torch\include\torch\csrc\jit\passes\utils\subgraph_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:23:49.2737296Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2740416Z copying torch\include\torch\csrc\jit\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2746963Z copying torch\include\torch\csrc\jit\python\module_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2753646Z copying torch\include\torch\csrc\jit\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2760711Z copying torch\include\torch\csrc\jit\python\pybind_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2768409Z copying torch\include\torch\csrc\jit\python\python_arg_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2783916Z copying torch\include\torch\csrc\jit\python\python_custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2791156Z copying torch\include\torch\csrc\jit\python\python_dict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2809214Z copying torch\include\torch\csrc\jit\python\python_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2816649Z copying torch\include\torch\csrc\jit\python\python_ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2824042Z copying torch\include\torch\csrc\jit\python\python_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2831614Z copying torch\include\torch\csrc\jit\python\python_sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2859251Z copying torch\include\torch\csrc\jit\python\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2866260Z copying torch\include\torch\csrc\jit\python\python_tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2872805Z copying torch\include\torch\csrc\jit\python\script_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2879741Z copying torch\include\torch\csrc\jit\python\update_graph_executor_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2886323Z copying torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-24T05:23:49.2891893Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.2894940Z copying torch\include\torch\csrc\jit\runtime\argument_spec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.2902302Z copying torch\include\torch\csrc\jit\runtime\autodiff.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.2908997Z copying torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.2916160Z copying torch\include\torch\csrc\jit\runtime\custom_operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.2926895Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.2933622Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.2940121Z copying torch\include\torch\csrc\jit\runtime\exception_message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.2947095Z copying torch\include\torch\csrc\jit\runtime\graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.2957798Z copying torch\include\torch\csrc\jit\runtime\graph_executor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.2964626Z copying torch\include\torch\csrc\jit\runtime\graph_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.2971650Z copying torch\include\torch\csrc\jit\runtime\instruction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.2978689Z copying torch\include\torch\csrc\jit\runtime\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.2985599Z copying torch\include\torch\csrc\jit\runtime\jit_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.2992266Z copying torch\include\torch\csrc\jit\runtime\jit_trace.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.2998840Z copying torch\include\torch\csrc\jit\runtime\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3005465Z copying torch\include\torch\csrc\jit\runtime\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3012184Z copying torch\include\torch\csrc\jit\runtime\operator_options.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3018735Z copying torch\include\torch\csrc\jit\runtime\print_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3025406Z copying torch\include\torch\csrc\jit\runtime\profiling_graph_executor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3032566Z copying torch\include\torch\csrc\jit\runtime\profiling_record.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3043414Z copying torch\include\torch\csrc\jit\runtime\register_ops_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3050885Z copying torch\include\torch\csrc\jit\runtime\script_profile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3057934Z copying torch\include\torch\csrc\jit\runtime\serialized_shape_function_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3064793Z copying torch\include\torch\csrc\jit\runtime\shape_function_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3071432Z copying torch\include\torch\csrc\jit\runtime\simple_graph_executor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3078769Z copying torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3085689Z copying torch\include\torch\csrc\jit\runtime\symbolic_script.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3092723Z copying torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3104360Z copying torch\include\torch\csrc\jit\runtime\symbolic_shape_registry_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3115731Z copying torch\include\torch\csrc\jit\runtime\vararg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3122726Z copying torch\include\torch\csrc\jit\runtime\variable_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-24T05:23:49.3128611Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:23:49.3131820Z copying torch\include\torch\csrc\jit\runtime\interpreter\can_emit_inline.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:23:49.3138811Z copying torch\include\torch\csrc\jit\runtime\interpreter\code_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:23:49.3146343Z copying torch\include\torch\csrc\jit\runtime\interpreter\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:23:49.3153353Z copying torch\include\torch\csrc\jit\runtime\interpreter\preprocess_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:23:49.3164227Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:23:49.3167502Z copying torch\include\torch\csrc\jit\runtime\static\fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:23:49.3173962Z copying torch\include\torch\csrc\jit\runtime\static\impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:23:49.3181450Z copying torch\include\torch\csrc\jit\runtime\static\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:23:49.3188095Z copying torch\include\torch\csrc\jit\runtime\static\memory_planner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:23:49.3195153Z copying torch\include\torch\csrc\jit\runtime\static\ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:23:49.3202231Z copying torch\include\torch\csrc\jit\runtime\static\passes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:23:49.3214032Z copying torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:23:49.3220950Z copying torch\include\torch\csrc\jit\runtime\static\processed_node_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:23:49.3227786Z copying torch\include\torch\csrc\jit\runtime\static\static_method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:23:49.3235433Z copying torch\include\torch\csrc\jit\runtime\static\te_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:23:49.3241308Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3244737Z copying torch\include\torch\csrc\jit\serialization\callstack_debug_info_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3255298Z copying torch\include\torch\csrc\jit\serialization\export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3262481Z copying torch\include\torch\csrc\jit\serialization\export_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3275375Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3282842Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3294110Z copying torch\include\torch\csrc\jit\serialization\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3301253Z copying torch\include\torch\csrc\jit\serialization\import_export_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3308175Z copying torch\include\torch\csrc\jit\serialization\import_export_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3314813Z copying torch\include\torch\csrc\jit\serialization\import_export_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3321693Z copying torch\include\torch\csrc\jit\serialization\import_read.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3332254Z copying torch\include\torch\csrc\jit\serialization\import_source.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3339324Z copying torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3347346Z copying torch\include\torch\csrc\jit\serialization\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3353736Z copying torch\include\torch\csrc\jit\serialization\pickle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3377307Z copying torch\include\torch\csrc\jit\serialization\pickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3384272Z copying torch\include\torch\csrc\jit\serialization\pickler_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3391191Z copying torch\include\torch\csrc\jit\serialization\python_print.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3398378Z copying torch\include\torch\csrc\jit\serialization\source_range_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3405204Z copying torch\include\torch\csrc\jit\serialization\source_range_serialization_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3412529Z copying torch\include\torch\csrc\jit\serialization\storage_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3423494Z copying torch\include\torch\csrc\jit\serialization\type_name_uniquer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3430484Z copying torch\include\torch\csrc\jit\serialization\unpickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-24T05:23:49.3436181Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3439836Z copying torch\include\torch\csrc\jit\tensorexpr\analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3447220Z copying torch\include\torch\csrc\jit\tensorexpr\block_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3453956Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3460596Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3582540Z copying torch\include\torch\csrc\jit\tensorexpr\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3589776Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3596594Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3603431Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3610441Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3617547Z copying torch\include\torch\csrc\jit\tensorexpr\eval.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3625005Z copying torch\include\torch\csrc\jit\tensorexpr\exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3631777Z copying torch\include\torch\csrc\jit\tensorexpr\expr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3638754Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3645691Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3652649Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3660098Z copying torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3666966Z copying torch\include\torch\csrc\jit\tensorexpr\graph_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3673884Z copying torch\include\torch\csrc\jit\tensorexpr\half_support.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3681051Z copying torch\include\torch\csrc\jit\tensorexpr\hash_provider.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3688583Z copying torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.3695343Z copying torch\include\torch\csrc\jit\tensorexpr\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4754728Z copying torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4761705Z copying torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4768603Z copying torch\include\torch\csrc\jit\tensorexpr\ir_printer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4775470Z copying torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4782869Z copying torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4790095Z copying torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4797334Z copying torch\include\torch\csrc\jit\tensorexpr\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4804736Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4812883Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4826344Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4834683Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4848814Z copying torch\include\torch\csrc\jit\tensorexpr\lowerings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4856087Z copying torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4863091Z copying torch\include\torch\csrc\jit\tensorexpr\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4870332Z copying torch\include\torch\csrc\jit\tensorexpr\registerizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4877738Z copying torch\include\torch\csrc\jit\tensorexpr\stmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4885038Z copying torch\include\torch\csrc\jit\tensorexpr\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4892058Z copying torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4898607Z copying torch\include\torch\csrc\jit\tensorexpr\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4905502Z copying torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4912523Z copying torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:23:49.4918606Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:23:49.4921972Z copying torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:23:49.4928561Z copying torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:23:49.4935037Z copying torch\include\torch\csrc\jit\tensorexpr\operators\misc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:23:49.4941749Z copying torch\include\torch\csrc\jit\tensorexpr\operators\norm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:23:49.4948091Z copying torch\include\torch\csrc\jit\tensorexpr\operators\operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:23:49.4961140Z copying torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:23:49.4968180Z copying torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:23:49.4975024Z copying torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:23:49.4981705Z copying torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:23:49.4991280Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-07-24T05:23:49.4994793Z copying torch\include\torch\csrc\jit\testing\file_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-07-24T05:23:49.5003093Z copying torch\include\torch\csrc\jit\testing\hooks_for_testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-07-24T05:23:49.5009647Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-07-24T05:23:49.5014462Z copying torch\include\torch\csrc\lazy\backend\backend_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-07-24T05:23:49.5021574Z copying torch\include\torch\csrc\lazy\backend\backend_device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-07-24T05:23:49.5028786Z copying torch\include\torch\csrc\lazy\backend\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-07-24T05:23:49.5036527Z copying torch\include\torch\csrc\lazy\backend\lowering_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-07-24T05:23:49.5050472Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5053793Z copying torch\include\torch\csrc\lazy\core\cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5060714Z copying torch\include\torch\csrc\lazy\core\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5067494Z copying torch\include\torch\csrc\lazy\core\debug_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5083440Z copying torch\include\torch\csrc\lazy\core\dynamic_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5090308Z copying torch\include\torch\csrc\lazy\core\hash.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5103779Z copying torch\include\torch\csrc\lazy\core\helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5110466Z copying torch\include\torch\csrc\lazy\core\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5117341Z copying torch\include\torch\csrc\lazy\core\ir_builder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5124027Z copying torch\include\torch\csrc\lazy\core\ir_dump_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5130751Z copying torch\include\torch\csrc\lazy\core\ir_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5137612Z copying torch\include\torch\csrc\lazy\core\ir_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5144303Z copying torch\include\torch\csrc\lazy\core\lazy_graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5151022Z copying torch\include\torch\csrc\lazy\core\metrics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5158230Z copying torch\include\torch\csrc\lazy\core\multi_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5164976Z copying torch\include\torch\csrc\lazy\core\permutation_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5171856Z copying torch\include\torch\csrc\lazy\core\shape.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5178576Z copying torch\include\torch\csrc\lazy\core\shape_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5189878Z copying torch\include\torch\csrc\lazy\core\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5196941Z copying torch\include\torch\csrc\lazy\core\tensor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5204665Z copying torch\include\torch\csrc\lazy\core\tensor_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5212147Z copying torch\include\torch\csrc\lazy\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5219596Z copying torch\include\torch\csrc\lazy\core\trie.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5227183Z copying torch\include\torch\csrc\lazy\core\unique.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5234678Z copying torch\include\torch\csrc\lazy\core\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-24T05:23:49.5241232Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\internal_ops 2025-07-24T05:23:49.5251874Z copying torch\include\torch\csrc\lazy\core\internal_ops\ltc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\internal_ops 2025-07-24T05:23:49.5259857Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-07-24T05:23:49.5263615Z copying torch\include\torch\csrc\lazy\core\ops\arithmetic_ir_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-07-24T05:23:49.5270884Z copying torch\include\torch\csrc\lazy\core\ops\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-07-24T05:23:49.5281119Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-07-24T05:23:49.5284549Z copying torch\include\torch\csrc\lazy\generated\LazyIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-07-24T05:23:49.5294603Z copying torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-07-24T05:23:49.5302079Z copying torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-07-24T05:23:49.5308049Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-07-24T05:23:49.5311138Z copying torch\include\torch\csrc\lazy\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-07-24T05:23:49.5317623Z copying torch\include\torch\csrc\lazy\python\python_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-07-24T05:23:49.5323278Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:23:49.5333817Z copying torch\include\torch\csrc\lazy\ts_backend\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:23:49.5340180Z copying torch\include\torch\csrc\lazy\ts_backend\dynamic_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:23:49.5346767Z copying torch\include\torch\csrc\lazy\ts_backend\ir_builder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:23:49.5353424Z copying torch\include\torch\csrc\lazy\ts_backend\tensor_aten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:23:49.5370378Z copying torch\include\torch\csrc\lazy\ts_backend\ts_autograd_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:23:49.5377061Z copying torch\include\torch\csrc\lazy\ts_backend\ts_backend_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:23:49.5383839Z copying torch\include\torch\csrc\lazy\ts_backend\ts_eager_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:23:49.5390615Z copying torch\include\torch\csrc\lazy\ts_backend\ts_lowering_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:23:49.5397588Z copying torch\include\torch\csrc\lazy\ts_backend\ts_node.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:23:49.5404218Z copying torch\include\torch\csrc\lazy\ts_backend\ts_node_lowering.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:23:49.5409728Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:23:49.5412938Z copying torch\include\torch\csrc\lazy\ts_backend\ops\device_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:23:49.5420473Z copying torch\include\torch\csrc\lazy\ts_backend\ops\generic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:23:49.5427366Z copying torch\include\torch\csrc\lazy\ts_backend\ops\to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:23:49.5433084Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-07-24T05:23:49.5436433Z copying torch\include\torch\csrc\monitor\counters.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-07-24T05:23:49.5443217Z copying torch\include\torch\csrc\monitor\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-07-24T05:23:49.5449997Z copying torch\include\torch\csrc\monitor\python_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-07-24T05:23:49.5455628Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-07-24T05:23:49.5458886Z copying torch\include\torch\csrc\mps\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-07-24T05:23:49.5464792Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-07-24T05:23:49.5467732Z copying torch\include\torch\csrc\mtia\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-07-24T05:23:49.5473320Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler 2025-07-24T05:23:49.5477157Z copying torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler 2025-07-24T05:23:49.5482777Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-07-24T05:23:49.5485946Z copying torch\include\torch\csrc\multiprocessing\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-07-24T05:23:49.5491519Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-07-24T05:23:49.5494688Z copying torch\include\torch\csrc\onnx\back_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-07-24T05:23:49.5501490Z copying torch\include\torch\csrc\onnx\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-07-24T05:23:49.5507878Z copying torch\include\torch\csrc\onnx\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-07-24T05:23:49.5513548Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:23:49.5516855Z copying torch\include\torch\csrc\profiler\api.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:23:49.5523404Z copying torch\include\torch\csrc\profiler\collection.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:23:49.5530940Z copying torch\include\torch\csrc\profiler\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:23:49.5537653Z copying torch\include\torch\csrc\profiler\containers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:23:49.5552566Z copying torch\include\torch\csrc\profiler\data_flow.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:23:49.5559490Z copying torch\include\torch\csrc\profiler\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:23:49.5566302Z copying torch\include\torch\csrc\profiler\kineto_client_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:23:49.5572799Z copying torch\include\torch\csrc\profiler\kineto_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:23:49.5579704Z copying torch\include\torch\csrc\profiler\perf-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:23:49.5586420Z copying torch\include\torch\csrc\profiler\perf.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:23:49.5593116Z copying torch\include\torch\csrc\profiler\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-24T05:23:49.5599370Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:23:49.5602627Z copying torch\include\torch\csrc\profiler\orchestration\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:23:49.5609569Z copying torch\include\torch\csrc\profiler\orchestration\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:23:49.5617036Z copying torch\include\torch\csrc\profiler\orchestration\vulkan.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:23:49.5627162Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-07-24T05:23:49.5630453Z copying torch\include\torch\csrc\profiler\python\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-07-24T05:23:49.5637456Z copying torch\include\torch\csrc\profiler\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-07-24T05:23:49.5649544Z copying torch\include\torch\csrc\profiler\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-07-24T05:23:49.5655444Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:23:49.5658876Z copying torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:23:49.5665785Z copying torch\include\torch\csrc\profiler\standalone\itt_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:23:49.5672557Z copying torch\include\torch\csrc\profiler\standalone\nvtx_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:23:49.5686694Z copying torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:23:49.5692518Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-07-24T05:23:49.5695743Z copying torch\include\torch\csrc\profiler\stubs\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-07-24T05:23:49.5701427Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5715578Z copying torch\include\torch\csrc\profiler\unwind\action.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5722448Z copying torch\include\torch\csrc\profiler\unwind\communicate.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5729266Z copying torch\include\torch\csrc\profiler\unwind\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5735997Z copying torch\include\torch\csrc\profiler\unwind\dwarf_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5750022Z copying torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5761344Z copying torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5768479Z copying torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5775101Z copying torch\include\torch\csrc\profiler\unwind\fde.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5781785Z copying torch\include\torch\csrc\profiler\unwind\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5789241Z copying torch\include\torch\csrc\profiler\unwind\line_number_program.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5796255Z copying torch\include\torch\csrc\profiler\unwind\mem_file.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5802890Z copying torch\include\torch\csrc\profiler\unwind\range_table.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5809550Z copying torch\include\torch\csrc\profiler\unwind\sections.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5816509Z copying torch\include\torch\csrc\profiler\unwind\unwind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5823658Z copying torch\include\torch\csrc\profiler\unwind\unwinder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5830577Z copying torch\include\torch\csrc\profiler\unwind\unwind_error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:23:49.5836396Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-07-24T05:23:49.5839408Z copying torch\include\torch\csrc\stable\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-07-24T05:23:49.5846543Z copying torch\include\torch\csrc\stable\ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-07-24T05:23:49.5853906Z copying torch\include\torch\csrc\stable\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-07-24T05:23:49.5860551Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-07-24T05:23:49.5864124Z copying torch\include\torch\csrc\tensor\python_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-07-24T05:23:49.5903283Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.5911006Z copying torch\include\torch\csrc\utils\byte_order.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.5918052Z copying torch\include\torch\csrc\utils\cpp_stacktraces.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.5924457Z copying torch\include\torch\csrc\utils\cuda_enabled.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.5931058Z copying torch\include\torch\csrc\utils\device_lazy_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.5946455Z copying torch\include\torch\csrc\utils\disable_torch_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.5953352Z copying torch\include\torch\csrc\utils\generated_serialization_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.5961890Z copying torch\include\torch\csrc\utils\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.5968361Z copying torch\include\torch\csrc\utils\invalid_arguments.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.5974790Z copying torch\include\torch\csrc\utils\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.5985631Z copying torch\include\torch\csrc\utils\numpy_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.5992115Z copying torch\include\torch\csrc\utils\object_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.5999073Z copying torch\include\torch\csrc\utils\out_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6005700Z copying torch\include\torch\csrc\utils\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6012736Z copying torch\include\torch\csrc\utils\pycfunction_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6020213Z copying torch\include\torch\csrc\utils\pyobject_preservation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6026864Z copying torch\include\torch\csrc\utils\pythoncapi_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6034565Z copying torch\include\torch\csrc\utils\python_arg_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6042369Z copying torch\include\torch\csrc\utils\python_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6049635Z copying torch\include\torch\csrc\utils\python_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6056349Z copying torch\include\torch\csrc\utils\python_numbers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6071229Z copying torch\include\torch\csrc\utils\python_raii.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6078207Z copying torch\include\torch\csrc\utils\python_scalars.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6085002Z copying torch\include\torch\csrc\utils\python_strings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6091745Z copying torch\include\torch\csrc\utils\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6098340Z copying torch\include\torch\csrc\utils\python_symnode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6105352Z copying torch\include\torch\csrc\utils\python_torch_function_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6112051Z copying torch\include\torch\csrc\utils\python_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6118923Z copying torch\include\torch\csrc\utils\schema_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6125635Z copying torch\include\torch\csrc\utils\six.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6132800Z copying torch\include\torch\csrc\utils\structseq.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6147359Z copying torch\include\torch\csrc\utils\tensor_apply.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6154658Z copying torch\include\torch\csrc\utils\tensor_dtypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6161466Z copying torch\include\torch\csrc\utils\tensor_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6168461Z copying torch\include\torch\csrc\utils\tensor_layouts.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6175117Z copying torch\include\torch\csrc\utils\tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6181999Z copying torch\include\torch\csrc\utils\tensor_memoryformats.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6189009Z copying torch\include\torch\csrc\utils\tensor_new.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6196151Z copying torch\include\torch\csrc\utils\tensor_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6203529Z copying torch\include\torch\csrc\utils\tensor_qschemes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6218024Z copying torch\include\torch\csrc\utils\tensor_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6225161Z copying torch\include\torch\csrc\utils\throughput_benchmark-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6232202Z copying torch\include\torch\csrc\utils\throughput_benchmark.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6257567Z copying torch\include\torch\csrc\utils\torch_dispatch_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6264472Z copying torch\include\torch\csrc\utils\variadic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6271266Z copying torch\include\torch\csrc\utils\verbose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-24T05:23:49.6277148Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-07-24T05:23:49.6280497Z copying torch\include\torch\csrc\xpu\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-07-24T05:23:49.6287959Z copying torch\include\torch\csrc\xpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-07-24T05:23:49.6295024Z copying torch\include\torch\csrc\xpu\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-07-24T05:23:49.6301404Z creating build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-07-24T05:23:49.6306323Z copying torch\include\torch\headeronly\macros\cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-07-24T05:23:49.6312869Z copying torch\include\torch\headeronly\macros\Export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-07-24T05:23:49.6319771Z copying torch\include\torch\headeronly\macros\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-07-24T05:23:49.6326152Z creating build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-07-24T05:23:49.6329227Z copying torch\include\torch\headeronly\util\Exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-07-24T05:23:49.6335976Z copying torch\include\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:49.6342554Z copying torch\include\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:49.6349221Z copying torch\include\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:49.6356231Z copying torch\include\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:49.6363191Z copying torch\include\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-07-24T05:23:49.6369991Z copying torch\include\oneapi\dnnl\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:49.6391404Z copying torch\include\oneapi\dnnl\dnnl_common.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:49.6402477Z copying torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:49.6410467Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:49.6417356Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:49.6424152Z copying torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:49.6431559Z copying torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:49.6439124Z copying torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:49.6446032Z copying torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:49.6452656Z copying torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-24T05:23:49.6460630Z copying torch\include\torch\csrc\distributed\c10d\Backend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6467345Z copying torch\include\torch\csrc\distributed\c10d\Backoff.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6473928Z copying torch\include\torch\csrc\distributed\c10d\comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6480779Z copying torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6488079Z copying torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6495126Z copying torch\include\torch\csrc\distributed\c10d\FileStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6501747Z copying torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6509160Z copying torch\include\torch\csrc\distributed\c10d\FlightRecorderDetail.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6516225Z copying torch\include\torch\csrc\distributed\c10d\Functional.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6523057Z copying torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6529803Z copying torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6536293Z copying torch\include\torch\csrc\distributed\c10d\HashStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6551441Z copying torch\include\torch\csrc\distributed\c10d\logger.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6558531Z copying torch\include\torch\csrc\distributed\c10d\NanCheck.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6564887Z copying torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6572198Z copying torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6579037Z copying torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6585791Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6593392Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6601347Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6608935Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6616098Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6632977Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6640313Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6647785Z copying torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6654760Z copying torch\include\torch\csrc\distributed\c10d\RankLocal.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6661668Z copying torch\include\torch\csrc\distributed\c10d\reducer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6669037Z copying torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6676189Z copying torch\include\torch\csrc\distributed\c10d\sequence_num.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6683241Z copying torch\include\torch\csrc\distributed\c10d\Store.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6690445Z copying torch\include\torch\csrc\distributed\c10d\TCPStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6697315Z copying torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6704278Z copying torch\include\torch\csrc\distributed\c10d\Types.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6711134Z copying torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6718299Z copying torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6734100Z copying torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6740781Z copying torch\include\torch\csrc\distributed\c10d\Utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6748258Z copying torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6755007Z copying torch\include\torch\csrc\distributed\c10d\Work.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:23:49.6761286Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-07-24T05:23:49.6764727Z copying torch\include\torch\csrc\distributed\c10d\control_collectives\ControlCollectives.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-07-24T05:23:49.6771799Z copying torch\include\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-07-24T05:23:49.6778189Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane 2025-07-24T05:23:49.6781980Z copying torch\include\torch\csrc\distributed\c10d\control_plane\Handlers.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane 2025-07-24T05:23:49.6789799Z copying torch\include\torch\csrc\distributed\c10d\control_plane\WorkerServer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane 2025-07-24T05:23:49.6797119Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-24T05:23:49.6800794Z copying torch\include\torch\csrc\distributed\c10d\cuda\CUDAEventCache.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-24T05:23:49.6807822Z copying torch\include\torch\csrc\distributed\c10d\cuda\StreamBlock.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-24T05:23:49.6814773Z copying torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-24T05:23:49.6821473Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:23:49.6828869Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryTypes.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:23:49.6843721Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:23:49.6850831Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:23:49.6857986Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\intra_node_comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:23:49.6868504Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:23:49.6875325Z copying torch\include\torch\csrc\jit\testing\catch_utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-07-24T05:23:49.6881903Z copying torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:49.6889073Z copying torch\include\ATen\cuda\AsmUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:49.6895716Z copying torch\include\ATen\cuda\Atomic.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:49.6902999Z copying torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:49.6909721Z copying torch\include\ATen\cuda\cub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:49.6917071Z copying torch\include\ATen\cuda\cub_definitions.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:49.6923894Z copying torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:49.6931246Z copying torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:49.6938340Z copying torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:49.6945023Z copying torch\include\ATen\cuda\DeviceUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:49.6961357Z copying torch\include\ATen\cuda\NumericLimits.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:49.6968117Z copying torch\include\ATen\cuda\PhiloxUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:49.6974546Z copying torch\include\ATen\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-24T05:23:49.6981378Z copying torch\include\ATen\cuda\detail\IndexUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:23:49.6988207Z copying torch\include\ATen\cuda\detail\IntegerDivider.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:23:49.6995114Z copying torch\include\ATen\cuda\detail\OffsetCalculator.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:23:49.7001799Z copying torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:23:49.7008509Z copying torch\include\ATen\cuda\detail\TensorInfo.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:23:49.7015489Z copying torch\include\ATen\cuda\detail\UnpackRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-24T05:23:49.7022317Z copying torch\include\ATen\native\cuda\block_reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7029390Z copying torch\include\ATen\native\cuda\CUDAJitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7036304Z copying torch\include\ATen\native\cuda\CUDALoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7043948Z copying torch\include\ATen\native\cuda\cutlass_common.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7050694Z copying torch\include\ATen\native\cuda\DeviceSqrt.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7057632Z copying torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7064203Z copying torch\include\ATen\native\cuda\ForeachFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7071563Z copying torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7078949Z copying torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7094833Z copying torch\include\ATen\native\cuda\fused_adamw_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7101743Z copying torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7108453Z copying torch\include\ATen\native\cuda\fused_adam_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7115413Z copying torch\include\ATen\native\cuda\fused_adam_utils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7122308Z copying torch\include\ATen\native\cuda\GridSampler.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7129139Z copying torch\include\ATen\native\cuda\GroupMMCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7136079Z copying torch\include\ATen\native\cuda\im2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7142751Z copying torch\include\ATen\native\cuda\JitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7149607Z copying torch\include\ATen\native\cuda\KernelUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7156523Z copying torch\include\ATen\native\cuda\Loops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7163244Z copying torch\include\ATen\native\cuda\Math.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7171663Z copying torch\include\ATen\native\cuda\MemoryAccess.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7179015Z copying torch\include\ATen\native\cuda\MultiTensorApply.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7195292Z copying torch\include\ATen\native\cuda\Normalization.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7203318Z copying torch\include\ATen\native\cuda\PersistentSoftmax.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7210545Z copying torch\include\ATen\native\cuda\Pow.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7217389Z copying torch\include\ATen\native\cuda\Randperm.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7224253Z copying torch\include\ATen\native\cuda\Reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7231914Z copying torch\include\ATen\native\cuda\reduction_template.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7239530Z copying torch\include\ATen\native\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7247244Z copying torch\include\ATen\native\cuda\SortingCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7254277Z copying torch\include\ATen\native\cuda\SortingRadixSelect.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7261263Z copying torch\include\ATen\native\cuda\SortUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7268343Z copying torch\include\ATen\native\cuda\TensorModeKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7275803Z copying torch\include\ATen\native\cuda\UniqueCub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7282585Z copying torch\include\ATen\native\cuda\UpSample.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7290271Z copying torch\include\ATen\native\cuda\vol2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-24T05:23:49.7296783Z creating build\lib.win-amd64-cpython-39\torch\include\THC 2025-07-24T05:23:49.7300314Z copying torch\include\THC\THCAtomics.cuh -> build\lib.win-amd64-cpython-39\torch\include\THC 2025-07-24T05:23:49.7307552Z copying torch\include\THC\THCDeviceUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\THC 2025-07-24T05:23:49.7314135Z creating build\lib.win-amd64-cpython-39\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.7320042Z copying torch\csrc\inductor\aoti_runtime\model.h -> build\lib.win-amd64-cpython-39\torch\csrc\inductor\aoti_runtime 2025-07-24T05:23:49.7341183Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-07-24T05:23:49.7345408Z copying torch\_inductor\codegen\aoti_runtime\interface.cpp -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-07-24T05:23:49.7363137Z copying torch\_inductor\script.ld -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-24T05:23:49.7370093Z copying torch\_export\serde\schema.yaml -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:23:49.7383584Z copying torch\_export\serde\export_schema.thrift -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-24T05:23:49.7396111Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-07-24T05:23:49.7401919Z copying torch\share\cmake\ATen\ATenConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-07-24T05:23:49.7407509Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:23:49.7411153Z copying torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:23:49.7418014Z copying torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:23:49.7424665Z copying torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:23:49.7441200Z copying torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:23:49.7453370Z copying torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:23:49.7460185Z copying torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:23:49.7467250Z copying torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-24T05:23:49.7473105Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:23:49.7476241Z copying torch\share\cmake\Caffe2\public\cuda.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:23:49.7482936Z copying torch\share\cmake\Caffe2\public\gflags.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:23:49.7489559Z copying torch\share\cmake\Caffe2\public\glog.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:23:49.7496101Z copying torch\share\cmake\Caffe2\public\LoadHIP.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:23:49.7511985Z copying torch\share\cmake\Caffe2\public\mkl.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:23:49.7519012Z copying torch\share\cmake\Caffe2\public\mkldnn.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:23:49.7525525Z copying torch\share\cmake\Caffe2\public\protobuf.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:23:49.7532253Z copying torch\share\cmake\Caffe2\public\utils.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:23:49.7539470Z copying torch\share\cmake\Caffe2\public\xpu.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-24T05:23:49.7545335Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-24T05:23:49.7548469Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-24T05:23:49.7555002Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-24T05:23:49.7560830Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:23:49.7574028Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\CMakeInitializeConfigs.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:23:49.7580990Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:23:49.7589455Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageHandleStandardArgs.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:23:49.7610357Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageMessage.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:23:49.7621025Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:23:49.7624387Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\make2cmake.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:23:49.7631341Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\parse_cubin.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:23:49.7638834Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\run_nvcc.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:23:49.7659749Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\select_compute_arch.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:23:49.7665654Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-07-24T05:23:49.7668711Z copying torch\share\cmake\Torch\TorchConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-07-24T05:23:49.7675986Z copying torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-07-24T05:23:49.7682861Z copying torch\utils\benchmark\utils\timeit_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-24T05:23:49.7694512Z copying torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:23:49.7714288Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:23:49.7725584Z copying torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:23:49.7732430Z copying torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:23:49.7743463Z copying torch\utils\model_dump\skeleton.html -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-24T05:23:49.7750362Z copying torch\utils\model_dump\code.js -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-24T05:23:49.7766875Z copying torch\utils\model_dump\htm.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-24T05:23:49.7786885Z copying torch\utils\model_dump\preact.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-24T05:23:49.7799865Z copying torch\_dynamo\graph_break_registry.json -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-24T05:23:49.7858632Z copying torch\lib\aoti_custom_ops.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:49.7877829Z copying torch\lib\asmjit.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:49.7888274Z copying torch\lib\backend_with_compiler.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:49.7897312Z copying torch\lib\c10.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:49.7913902Z copying torch\lib\c10_cuda.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:49.7924571Z copying torch\lib\caffe2_nvrtc.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:49.7931930Z copying torch\lib\fbgemm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:49.7987865Z copying torch\lib\jitbackend_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:49.7996813Z copying torch\lib\torch.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:49.8003523Z copying torch\lib\torchbind_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:49.8015866Z copying torch\lib\torch_cpu.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:50.0284614Z copying torch\lib\torch_cuda.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:50.2489495Z copying torch\lib\torch_global_deps.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:50.2554401Z copying torch\lib\torch_python.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:50.2711098Z copying torch\lib\aoti_custom_ops.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:50.2719371Z copying torch\lib\asmjit.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:50.2728246Z copying torch\lib\backend_with_compiler.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:50.2735728Z copying torch\lib\c10.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:50.2749765Z copying torch\lib\c10_cuda.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:50.2758260Z copying torch\lib\caffe2_nvrtc.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:50.2770254Z copying torch\lib\cpuinfo.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:50.2782759Z copying torch\lib\dnnl.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:52.3916708Z copying torch\lib\fbgemm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:52.3937404Z copying torch\lib\fmt.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:52.3981243Z copying torch\lib\jitbackend_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:52.3988908Z copying torch\lib\kineto.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:52.4867921Z copying torch\lib\libittnotify.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:52.4881517Z copying torch\lib\libprotobuf-lite.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:52.5047979Z copying torch\lib\libprotobuf.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:52.6070450Z copying torch\lib\libprotoc.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:52.7464229Z copying torch\lib\microkernels-prod.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:52.7653082Z copying torch\lib\pthreadpool.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:52.7668056Z copying torch\lib\sleef.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:52.7914278Z copying torch\lib\torch.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:52.7921535Z copying torch\lib\torchbind_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:53.3145475Z copying torch\lib\torch_cpu.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:53.3408508Z copying torch\lib\torch_cuda.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:53.3432345Z copying torch\lib\torch_python.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:53.8735677Z copying torch\lib\XNNPACK.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-24T05:23:53.8736412Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-07-24T05:23:53.8737195Z copying torchgen\packaged\ATen\native\native_functions.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-07-24T05:24:04.4835419Z copying torchgen\packaged\ATen\native\tags.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-07-24T05:24:04.5759212Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.5762506Z copying torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.6060543Z copying torchgen\packaged\ATen\templates\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.6937460Z copying torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.6956174Z copying torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.6970989Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.6984160Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.6996866Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.7005151Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.7012891Z copying torchgen\packaged\ATen\templates\enum_tag.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.7020791Z copying torchgen\packaged\ATen\templates\Function.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.7027963Z copying torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8202712Z copying torchgen\packaged\ATen\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8238463Z copying torchgen\packaged\ATen\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8250834Z copying torchgen\packaged\ATen\templates\LazyIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8258236Z copying torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8265231Z copying torchgen\packaged\ATen\templates\MethodOperators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8595782Z copying torchgen\packaged\ATen\templates\NativeFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8603063Z copying torchgen\packaged\ATen\templates\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8615205Z copying torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8634605Z copying torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8641904Z copying torchgen\packaged\ATen\templates\Operator.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8648832Z copying torchgen\packaged\ATen\templates\Operators.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8655777Z copying torchgen\packaged\ATen\templates\Operators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8667861Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8675217Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8687097Z copying torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8698427Z copying torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8710255Z copying torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8717716Z copying torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8740389Z copying torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8751673Z copying torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8759050Z copying torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8766361Z copying torchgen\packaged\ATen\templates\TensorBody.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8784690Z copying torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8796613Z copying torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8803350Z copying torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8810815Z copying torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8817523Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8840257Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-24T05:24:04.8850254Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:04.8853355Z copying torchgen\packaged\autograd\BUILD.bazel -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:04.8860718Z copying torchgen\packaged\autograd\build.bzl -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:04.8867212Z copying torchgen\packaged\autograd\context.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:04.8878097Z copying torchgen\packaged\autograd\deprecated.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:04.8889793Z copying torchgen\packaged\autograd\derivatives.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:04.8969235Z copying torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:04.8981290Z copying torchgen\packaged\autograd\gen_autograd.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:04.8993264Z copying torchgen\packaged\autograd\gen_autograd_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:05.0002720Z copying torchgen\packaged\autograd\gen_inplace_or_view_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:05.0020603Z copying torchgen\packaged\autograd\gen_python_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:05.0042387Z copying torchgen\packaged\autograd\gen_trace_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:05.0061042Z copying torchgen\packaged\autograd\gen_variable_factories.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:05.0072362Z copying torchgen\packaged\autograd\gen_variable_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:05.0806170Z copying torchgen\packaged\autograd\gen_view_funcs.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:05.0819258Z copying torchgen\packaged\autograd\load_derivatives.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:05.0840498Z copying torchgen\packaged\autograd\README.md -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:05.0847448Z copying torchgen\packaged\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-24T05:24:05.0852614Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.0856132Z copying torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.1466737Z copying torchgen\packaged\autograd\templates\annotated_fn_args.py.in -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.1473662Z copying torchgen\packaged\autograd\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.1928063Z copying torchgen\packaged\autograd\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.1939182Z copying torchgen\packaged\autograd\templates\python_enum_tag.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.1946207Z copying torchgen\packaged\autograd\templates\python_fft_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.1957796Z copying torchgen\packaged\autograd\templates\python_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.2604923Z copying torchgen\packaged\autograd\templates\python_functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.2612611Z copying torchgen\packaged\autograd\templates\python_linalg_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.2624183Z copying torchgen\packaged\autograd\templates\python_nested_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.2635157Z copying torchgen\packaged\autograd\templates\python_nn_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.2645928Z copying torchgen\packaged\autograd\templates\python_return_types.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.2657164Z copying torchgen\packaged\autograd\templates\python_return_types.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.2664221Z copying torchgen\packaged\autograd\templates\python_sparse_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.2675312Z copying torchgen\packaged\autograd\templates\python_special_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.2686611Z copying torchgen\packaged\autograd\templates\python_torch_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.2698305Z copying torchgen\packaged\autograd\templates\python_variable_methods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.3276684Z copying torchgen\packaged\autograd\templates\TraceType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.3288388Z copying torchgen\packaged\autograd\templates\VariableType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.3299840Z copying torchgen\packaged\autograd\templates\VariableType.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.3311616Z copying torchgen\packaged\autograd\templates\variable_factories.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.3323416Z copying torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.3330482Z copying torchgen\packaged\autograd\templates\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-24T05:24:05.3338212Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-24T05:24:05.3346327Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:24:05.3355663Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-24T05:24:05.3364196Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-24T05:24:05.3372618Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-24T05:24:05.3380867Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-07-24T05:24:05.3388728Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-24T05:24:05.4335715Z running build_ext 2025-07-24T05:24:05.4400618Z -- Building with NumPy bindings 2025-07-24T05:24:05.4401125Z -- Detected cuDNN at C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64, 2025-07-24T05:24:05.4401712Z -- Detected CUDA at C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-07-24T05:24:05.4402139Z -- Not using XPU 2025-07-24T05:24:05.4402466Z -- Using MKLDNN 2025-07-24T05:24:05.4402783Z -- Not using Compute Library for the Arm architecture with MKLDNN 2025-07-24T05:24:05.4403153Z -- Not using CBLAS in MKLDNN 2025-07-24T05:24:05.4403397Z -- Not using NCCL 2025-07-24T05:24:05.4403622Z -- Building without distributed package 2025-07-24T05:24:05.4403955Z -- Using ITT 2025-07-24T05:24:11.3426010Z Copying functorch._C from functorch\functorch.pyd to C:\actions-runner\_work\pytorch\pytorch\build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd 2025-07-24T05:24:11.3428280Z copying functorch\functorch.pyd -> C:\actions-runner\_work\pytorch\pytorch\build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd 2025-07-24T05:24:11.3450941Z building 'torch._C' extension 2025-07-24T05:24:11.3469447Z creating build\temp.win-amd64-cpython-39\Release\torch\csrc 2025-07-24T05:24:11.3483408Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /Tctorch/csrc/stub.c /Fobuild\temp.win-amd64-cpython-39\Release\torch\csrc\stub.obj /MD /FS /EHsc 2025-07-24T05:24:11.3621648Z stub.c 2025-07-24T05:24:11.4860453Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" torch_python.lib /EXPORT:PyInit__C build\temp.win-amd64-cpython-39\Release\torch\csrc\stub.obj /OUT:build\lib.win-amd64-cpython-39\torch\_C.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\torch\csrc\_C.cp39-win_amd64.lib /NODEFAULTLIB:LIBCMT.LIB 2025-07-24T05:24:11.5108515Z Creating library build\temp.win-amd64-cpython-39\Release\torch\csrc\_C.cp39-win_amd64.lib and object build\temp.win-amd64-cpython-39\Release\torch\csrc\_C.cp39-win_amd64.exp 2025-07-24T05:24:11.5234149Z Generating code 2025-07-24T05:24:11.5360461Z Finished generating code 2025-07-24T05:24:11.5750682Z copying build\temp.win-amd64-cpython-39\Release\torch\csrc\_C.cp39-win_amd64.lib -> build\lib.win-amd64-cpython-39\torch\lib\_C.lib 2025-07-24T05:24:11.5755187Z The specified environment variable does not exist. 2025-07-24T05:24:11.5869744Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-07-24T05:24:11.5870440Z !! 2025-07-24T05:24:11.5870547Z 2025-07-24T05:24:11.5870661Z ******************************************************************************** 2025-07-24T05:24:11.5871022Z Please avoid running ``setup.py`` directly. 2025-07-24T05:24:11.5871634Z Instead, use pypa/build, pypa/installer or other 2025-07-24T05:24:11.5871969Z standards-based tools. 2025-07-24T05:24:11.5872136Z 2025-07-24T05:24:11.5872433Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-07-24T05:24:11.5872996Z ******************************************************************************** 2025-07-24T05:24:11.5873222Z 2025-07-24T05:24:11.5873291Z !! 2025-07-24T05:24:11.5873479Z self.initialize_options() 2025-07-24T05:24:11.5950832Z installing to build\bdist.win-amd64\wheel 2025-07-24T05:24:11.5951128Z running install 2025-07-24T05:24:11.5973712Z running install_lib 2025-07-24T05:24:11.6058256Z creating build\bdist.win-amd64\wheel 2025-07-24T05:24:11.6063331Z creating build\bdist.win-amd64\wheel\functorch 2025-07-24T05:24:11.6066805Z creating build\bdist.win-amd64\wheel\functorch\compile 2025-07-24T05:24:11.6070444Z copying build\lib.win-amd64-cpython-39\functorch\compile\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\compile 2025-07-24T05:24:11.6076581Z creating build\bdist.win-amd64\wheel\functorch\dim 2025-07-24T05:24:11.6079940Z copying build\lib.win-amd64-cpython-39\functorch\dim\batch_tensor.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:24:11.6085741Z copying build\lib.win-amd64-cpython-39\functorch\dim\delayed_mul_tensor.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:24:11.6091484Z copying build\lib.win-amd64-cpython-39\functorch\dim\dim.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:24:11.6097406Z copying build\lib.win-amd64-cpython-39\functorch\dim\magic_trace.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:24:11.6115546Z copying build\lib.win-amd64-cpython-39\functorch\dim\op_properties.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:24:11.6121241Z copying build\lib.win-amd64-cpython-39\functorch\dim\reference.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:24:11.6127654Z copying build\lib.win-amd64-cpython-39\functorch\dim\tree_map.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:24:11.6133131Z copying build\lib.win-amd64-cpython-39\functorch\dim\wrap_type.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:24:11.6138849Z copying build\lib.win-amd64-cpython-39\functorch\dim\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-24T05:24:11.6144989Z creating build\bdist.win-amd64\wheel\functorch\einops 2025-07-24T05:24:11.6148538Z copying build\lib.win-amd64-cpython-39\functorch\einops\rearrange.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-07-24T05:24:11.6155657Z copying build\lib.win-amd64-cpython-39\functorch\einops\_parsing.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-07-24T05:24:11.6161835Z copying build\lib.win-amd64-cpython-39\functorch\einops\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-07-24T05:24:11.6167676Z creating build\bdist.win-amd64\wheel\functorch\experimental 2025-07-24T05:24:11.6171327Z copying build\lib.win-amd64-cpython-39\functorch\experimental\control_flow.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-07-24T05:24:11.6176729Z copying build\lib.win-amd64-cpython-39\functorch\experimental\ops.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-07-24T05:24:11.6182091Z copying build\lib.win-amd64-cpython-39\functorch\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-07-24T05:24:11.6187304Z copying build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\functorch 2025-07-24T05:24:11.6210400Z creating build\bdist.win-amd64\wheel\functorch\_src 2025-07-24T05:24:11.6213872Z creating build\bdist.win-amd64\wheel\functorch\_src\aot_autograd 2025-07-24T05:24:11.6217385Z copying build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\aot_autograd 2025-07-24T05:24:11.6223107Z creating build\bdist.win-amd64\wheel\functorch\_src\eager_transforms 2025-07-24T05:24:11.6226557Z copying build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\eager_transforms 2025-07-24T05:24:11.6232650Z creating build\bdist.win-amd64\wheel\functorch\_src\make_functional 2025-07-24T05:24:11.6236767Z copying build\lib.win-amd64-cpython-39\functorch\_src\make_functional\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\make_functional 2025-07-24T05:24:11.6242507Z creating build\bdist.win-amd64\wheel\functorch\_src\vmap 2025-07-24T05:24:11.6258672Z copying build\lib.win-amd64-cpython-39\functorch\_src\vmap\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\vmap 2025-07-24T05:24:11.6264743Z copying build\lib.win-amd64-cpython-39\functorch\_src\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src 2025-07-24T05:24:11.6269737Z copying build\lib.win-amd64-cpython-39\functorch\__init__.py -> build\bdist.win-amd64\wheel\.\functorch 2025-07-24T05:24:11.6276889Z creating build\bdist.win-amd64\wheel\torch 2025-07-24T05:24:11.6280272Z creating build\bdist.win-amd64\wheel\torch\accelerator 2025-07-24T05:24:11.6283914Z copying build\lib.win-amd64-cpython-39\torch\accelerator\_utils.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-07-24T05:24:11.6289441Z copying build\lib.win-amd64-cpython-39\torch\accelerator\__init__.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-07-24T05:24:11.6295368Z creating build\bdist.win-amd64\wheel\torch\amp 2025-07-24T05:24:11.6298707Z copying build\lib.win-amd64-cpython-39\torch\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-07-24T05:24:11.6305360Z copying build\lib.win-amd64-cpython-39\torch\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-07-24T05:24:11.6311155Z copying build\lib.win-amd64-cpython-39\torch\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-07-24T05:24:11.6316889Z creating build\bdist.win-amd64\wheel\torch\ao 2025-07-24T05:24:11.6320523Z creating build\bdist.win-amd64\wheel\torch\ao\nn 2025-07-24T05:24:11.6324316Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic 2025-07-24T05:24:11.6327454Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\modules 2025-07-24T05:24:11.6330800Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules\fused.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\modules 2025-07-24T05:24:11.6336613Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\modules 2025-07-24T05:24:11.6342027Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat 2025-07-24T05:24:11.6345490Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:24:11.6348911Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules\conv_fused.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:24:11.6355753Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules\linear_fused.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:24:11.6361466Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:24:11.6367127Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\qat\modules 2025-07-24T05:24:11.6383853Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\qat 2025-07-24T05:24:11.6389609Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized 2025-07-24T05:24:11.6393183Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic 2025-07-24T05:24:11.6396575Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:24:11.6400088Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:24:11.6406286Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:24:11.6411457Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\dynamic 2025-07-24T05:24:11.6416959Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:24:11.6420360Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules\bn_relu.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:24:11.6426075Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules\conv_add.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:24:11.6431647Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules\conv_relu.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:24:11.6437351Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:24:11.6442892Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\modules 2025-07-24T05:24:11.6459701Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized 2025-07-24T05:24:11.6464816Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic 2025-07-24T05:24:11.6470515Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat 2025-07-24T05:24:11.6474004Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic 2025-07-24T05:24:11.6477339Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic\modules 2025-07-24T05:24:11.6480718Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\dynamic\modules 2025-07-24T05:24:11.6486610Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\dynamic\modules 2025-07-24T05:24:11.6491773Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\dynamic 2025-07-24T05:24:11.6497179Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\modules 2025-07-24T05:24:11.6500505Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\modules 2025-07-24T05:24:11.6506084Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\modules 2025-07-24T05:24:11.6515610Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\modules 2025-07-24T05:24:11.6521289Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\modules 2025-07-24T05:24:11.6526408Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat 2025-07-24T05:24:11.6531804Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable 2025-07-24T05:24:11.6535228Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable\modules 2025-07-24T05:24:11.6538646Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable\modules 2025-07-24T05:24:11.6545951Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable\modules 2025-07-24T05:24:11.6552326Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable\modules 2025-07-24T05:24:11.6558273Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable 2025-07-24T05:24:11.6565012Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized 2025-07-24T05:24:11.6581285Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic 2025-07-24T05:24:11.6584289Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:24:11.6588027Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:24:11.6594158Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:24:11.6599916Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:24:11.6606976Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\dynamic\modules 2025-07-24T05:24:11.6616443Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\dynamic 2025-07-24T05:24:11.6622065Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-07-24T05:24:11.6628350Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\modules 2025-07-24T05:24:11.6631880Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:24:11.6637911Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:24:11.6643876Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:24:11.6652781Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:24:11.6662488Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:24:11.6679722Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\functional_modules.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:24:11.6685532Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:24:11.6691426Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:24:11.6699162Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:24:11.6704674Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:24:11.6710327Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-07-24T05:24:11.6716483Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference 2025-07-24T05:24:11.6731373Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference\modules 2025-07-24T05:24:11.6735187Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-07-24T05:24:11.6741299Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-07-24T05:24:11.6767685Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-07-24T05:24:11.6769019Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\sparse.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-07-24T05:24:11.6770206Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-07-24T05:24:11.6771407Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-07-24T05:24:11.6777010Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference 2025-07-24T05:24:11.6782268Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-07-24T05:24:11.6787919Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse 2025-07-24T05:24:11.6791450Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized 2025-07-24T05:24:11.6794876Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized\dynamic 2025-07-24T05:24:11.6798984Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse\quantized\dynamic 2025-07-24T05:24:11.6810467Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse\quantized\dynamic 2025-07-24T05:24:11.6815873Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse\quantized 2025-07-24T05:24:11.6821892Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse\quantized 2025-07-24T05:24:11.6827296Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse\quantized 2025-07-24T05:24:11.6832554Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse 2025-07-24T05:24:11.6837646Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn 2025-07-24T05:24:11.6847850Z creating build\bdist.win-amd64\wheel\torch\ao\ns 2025-07-24T05:24:11.6851242Z creating build\bdist.win-amd64\wheel\torch\ao\ns\fx 2025-07-24T05:24:11.6854521Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_matcher.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:24:11.6895398Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_passes.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:24:11.6901725Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:24:11.6907521Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\ns_types.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:24:11.6912979Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\n_shadows_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:24:11.6926382Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:24:11.6932038Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\qconfig_multi_mapping.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:24:11.6937615Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:24:11.6943800Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\weight_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:24:11.6949516Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-24T05:24:11.6954020Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-07-24T05:24:11.6959937Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-07-24T05:24:11.6970321Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-07-24T05:24:11.6975371Z creating build\bdist.win-amd64\wheel\torch\ao\pruning 2025-07-24T05:24:11.6978782Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\scheduler 2025-07-24T05:24:11.6982253Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\base_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-07-24T05:24:11.6987937Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\cubic_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-07-24T05:24:11.6993581Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\lambda_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-07-24T05:24:11.7010263Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-07-24T05:24:11.7015098Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\sparsifier 2025-07-24T05:24:11.7018479Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\base_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-07-24T05:24:11.7024448Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-07-24T05:24:11.7033468Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-07-24T05:24:11.7051307Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\weight_norm_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-07-24T05:24:11.7057607Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-07-24T05:24:11.7062972Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental 2025-07-24T05:24:11.7067151Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-24T05:24:11.7071113Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-24T05:24:11.7077704Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-24T05:24:11.7082332Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_scheduler 2025-07-24T05:24:11.7086187Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_scheduler 2025-07-24T05:24:11.7091829Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_scheduler 2025-07-24T05:24:11.7097321Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:24:11.7112401Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:24:11.7118380Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:24:11.7124383Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-07-24T05:24:11.7140299Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:24:11.7144260Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\data_sparsity.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:24:11.7150442Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\_data_sparstity_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:24:11.7156540Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-24T05:24:11.7172309Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-07-24T05:24:11.7177031Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:24:11.7182892Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier 2025-07-24T05:24:11.7188453Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\pruner 2025-07-24T05:24:11.7192407Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:24:11.7198415Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\FPGM_pruner.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:24:11.7204095Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:24:11.7225331Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:24:11.7231172Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\parametrization.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:24:11.7236926Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\prune_functions.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:24:11.7243895Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\saliency_pruner.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:24:11.7249576Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-07-24T05:24:11.7259911Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental 2025-07-24T05:24:11.7264595Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-07-24T05:24:11.7280853Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-07-24T05:24:11.7286551Z creating build\bdist.win-amd64\wheel\torch\ao\quantization 2025-07-24T05:24:11.7290322Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\backend_config 2025-07-24T05:24:11.7294189Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\backend_config.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:24:11.7300367Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\executorch.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:24:11.7306612Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\fbgemm.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:24:11.7316056Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\native.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:24:11.7332177Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\observation_type.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:24:11.7336705Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\onednn.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:24:11.7342600Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\qnnpack.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:24:11.7348132Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\tensorrt.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:24:11.7353782Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:24:11.7359300Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\x86.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:24:11.7364971Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\_common_operator_config_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:24:11.7371101Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\_qnnpack_pt2e.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:24:11.7376822Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-07-24T05:24:11.7383032Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7389540Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7409375Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7415512Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx 2025-07-24T05:24:11.7418880Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7425485Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\custom_config.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7432031Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7437661Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7447505Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7464154Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\lower_to_fbgemm.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7469865Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\lower_to_qnnpack.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7475326Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\lstm_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7481222Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7487409Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7493121Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7500385Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\qconfig_mapping_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7506423Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\quantize_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7512315Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\tracer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7517950Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7533122Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_decomposed.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7539693Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7546292Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_lower_to_native_backend.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7554010Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx\_model_report 2025-07-24T05:24:11.7557726Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report\detector.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx\_model_report 2025-07-24T05:24:11.7564601Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report\model_report.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx\_model_report 2025-07-24T05:24:11.7570855Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report\model_report_observer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx\_model_report 2025-07-24T05:24:11.7587661Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report\model_report_visualizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx\_model_report 2025-07-24T05:24:11.7600396Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx\_model_report 2025-07-24T05:24:11.7604993Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-24T05:24:11.7610413Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7617873Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e 2025-07-24T05:24:11.7621367Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\duplicate_dq_pass.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:24:11.7627386Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\export_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:24:11.7633311Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:24:11.7643073Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\lowering.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:24:11.7659290Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\port_metadata_pass.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:24:11.7665071Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:24:11.7670993Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\qat_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:24:11.7677873Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e\representation 2025-07-24T05:24:11.7681578Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation\rewrite.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e\representation 2025-07-24T05:24:11.7687816Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e\representation 2025-07-24T05:24:11.7693402Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:24:11.7699864Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_affine_quantization.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:24:11.7706538Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_numeric_debugger.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:24:11.7712484Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-24T05:24:11.7717242Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7728149Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig_mapping.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7734288Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7740107Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7746553Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\quantizer 2025-07-24T05:24:11.7750124Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\composable_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:24:11.7756343Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\embedding_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:24:11.7761945Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:24:11.7781638Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:24:11.7787615Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\x86_inductor_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:24:11.7794535Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:24:11.7800579Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:24:11.7806847Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\xpu_inductor_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:24:11.7817800Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-24T05:24:11.7823003Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7829721Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7835497Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_pt2e.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7841772Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7847333Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7854042Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7860156Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_correct_bias.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7866044Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7872188Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_learnable_fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7877754Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-24T05:24:11.7883396Z copying build\lib.win-amd64-cpython-39\torch\ao\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao 2025-07-24T05:24:11.7889380Z creating build\bdist.win-amd64\wheel\torch\autograd 2025-07-24T05:24:11.7892796Z copying build\lib.win-amd64-cpython-39\torch\autograd\anomaly_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:24:11.7898395Z copying build\lib.win-amd64-cpython-39\torch\autograd\forward_ad.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:24:11.7904199Z copying build\lib.win-amd64-cpython-39\torch\autograd\function.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:24:11.7910245Z copying build\lib.win-amd64-cpython-39\torch\autograd\functional.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:24:11.7927551Z copying build\lib.win-amd64-cpython-39\torch\autograd\gradcheck.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:24:11.7934823Z copying build\lib.win-amd64-cpython-39\torch\autograd\grad_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:24:11.7940751Z copying build\lib.win-amd64-cpython-39\torch\autograd\graph.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:24:11.7946642Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:24:11.7953322Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_legacy.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:24:11.7959067Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_util.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:24:11.7965363Z copying build\lib.win-amd64-cpython-39\torch\autograd\variable.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:24:11.7975205Z creating build\bdist.win-amd64\wheel\torch\autograd\_functions 2025-07-24T05:24:11.7978630Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\tensor.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-07-24T05:24:11.7984030Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\utils.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-07-24T05:24:11.7989486Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-07-24T05:24:11.7994838Z copying build\lib.win-amd64-cpython-39\torch\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-24T05:24:11.8001415Z creating build\bdist.win-amd64\wheel\torch\backends 2025-07-24T05:24:11.8004772Z creating build\bdist.win-amd64\wheel\torch\backends\cpu 2025-07-24T05:24:11.8008048Z copying build\lib.win-amd64-cpython-39\torch\backends\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cpu 2025-07-24T05:24:11.8013466Z creating build\bdist.win-amd64\wheel\torch\backends\cuda 2025-07-24T05:24:11.8016779Z copying build\lib.win-amd64-cpython-39\torch\backends\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cuda 2025-07-24T05:24:11.8022832Z creating build\bdist.win-amd64\wheel\torch\backends\cudnn 2025-07-24T05:24:11.8026141Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\rnn.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-07-24T05:24:11.8031777Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-07-24T05:24:11.8037826Z creating build\bdist.win-amd64\wheel\torch\backends\cusparselt 2025-07-24T05:24:11.8041224Z copying build\lib.win-amd64-cpython-39\torch\backends\cusparselt\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cusparselt 2025-07-24T05:24:11.8047220Z creating build\bdist.win-amd64\wheel\torch\backends\kleidiai 2025-07-24T05:24:11.8050320Z copying build\lib.win-amd64-cpython-39\torch\backends\kleidiai\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\kleidiai 2025-07-24T05:24:11.8057216Z creating build\bdist.win-amd64\wheel\torch\backends\mha 2025-07-24T05:24:11.8069716Z copying build\lib.win-amd64-cpython-39\torch\backends\mha\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mha 2025-07-24T05:24:11.8075742Z creating build\bdist.win-amd64\wheel\torch\backends\mkl 2025-07-24T05:24:11.8079016Z copying build\lib.win-amd64-cpython-39\torch\backends\mkl\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkl 2025-07-24T05:24:11.8084853Z creating build\bdist.win-amd64\wheel\torch\backends\mkldnn 2025-07-24T05:24:11.8088377Z copying build\lib.win-amd64-cpython-39\torch\backends\mkldnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkldnn 2025-07-24T05:24:11.8094337Z creating build\bdist.win-amd64\wheel\torch\backends\mps 2025-07-24T05:24:11.8097692Z copying build\lib.win-amd64-cpython-39\torch\backends\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mps 2025-07-24T05:24:11.8103729Z creating build\bdist.win-amd64\wheel\torch\backends\nnpack 2025-07-24T05:24:11.8107119Z copying build\lib.win-amd64-cpython-39\torch\backends\nnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\nnpack 2025-07-24T05:24:11.8112971Z creating build\bdist.win-amd64\wheel\torch\backends\openmp 2025-07-24T05:24:11.8116282Z copying build\lib.win-amd64-cpython-39\torch\backends\openmp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\openmp 2025-07-24T05:24:11.8122005Z creating build\bdist.win-amd64\wheel\torch\backends\opt_einsum 2025-07-24T05:24:11.8125525Z copying build\lib.win-amd64-cpython-39\torch\backends\opt_einsum\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\opt_einsum 2025-07-24T05:24:11.8131372Z creating build\bdist.win-amd64\wheel\torch\backends\quantized 2025-07-24T05:24:11.8134906Z copying build\lib.win-amd64-cpython-39\torch\backends\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\quantized 2025-07-24T05:24:11.8140967Z creating build\bdist.win-amd64\wheel\torch\backends\xeon 2025-07-24T05:24:11.8144316Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\run_cpu.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-07-24T05:24:11.8150776Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-07-24T05:24:11.8155802Z creating build\bdist.win-amd64\wheel\torch\backends\xnnpack 2025-07-24T05:24:11.8159125Z copying build\lib.win-amd64-cpython-39\torch\backends\xnnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xnnpack 2025-07-24T05:24:11.8164923Z creating build\bdist.win-amd64\wheel\torch\backends\_coreml 2025-07-24T05:24:11.8168302Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\preprocess.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-07-24T05:24:11.8174380Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-07-24T05:24:11.8179219Z creating build\bdist.win-amd64\wheel\torch\backends\_nnapi 2025-07-24T05:24:11.8182648Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\prepare.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-07-24T05:24:11.8188325Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\serializer.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-07-24T05:24:11.8200365Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-07-24T05:24:11.8205183Z copying build\lib.win-amd64-cpython-39\torch\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends 2025-07-24T05:24:11.8211128Z creating build\bdist.win-amd64\wheel\torch\bin 2025-07-24T05:24:11.8214724Z copying build\lib.win-amd64-cpython-39\torch\bin\asmjit.dll -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:24:11.8223904Z copying build\lib.win-amd64-cpython-39\torch\bin\fbgemm.dll -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:24:11.8289093Z copying build\lib.win-amd64-cpython-39\torch\bin\FileStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:24:11.8299231Z copying build\lib.win-amd64-cpython-39\torch\bin\ProcessGroupGlooAsyncTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:24:11.8324238Z copying build\lib.win-amd64-cpython-39\torch\bin\ProcessGroupGlooTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:24:11.8334653Z copying build\lib.win-amd64-cpython-39\torch\bin\protoc.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:24:11.8364835Z copying build\lib.win-amd64-cpython-39\torch\bin\TCPStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:24:11.8374597Z copying build\lib.win-amd64-cpython-39\torch\bin\test_api.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:24:11.8460393Z copying build\lib.win-amd64-cpython-39\torch\bin\test_jit.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:24:11.8516856Z copying build\lib.win-amd64-cpython-39\torch\bin\test_lazy.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:24:11.8552063Z copying build\lib.win-amd64-cpython-39\torch\bin\test_nativert.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:24:11.8576110Z copying build\lib.win-amd64-cpython-39\torch\bin\test_tensorexpr.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:24:11.8634732Z copying build\lib.win-amd64-cpython-39\torch\bin\tutorial_tensorexpr.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-24T05:24:11.8643165Z creating build\bdist.win-amd64\wheel\torch\compiler 2025-07-24T05:24:11.8657301Z copying build\lib.win-amd64-cpython-39\torch\compiler\config.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-07-24T05:24:11.8662660Z copying build\lib.win-amd64-cpython-39\torch\compiler\_cache.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-07-24T05:24:11.8682374Z copying build\lib.win-amd64-cpython-39\torch\compiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-07-24T05:24:11.8688541Z creating build\bdist.win-amd64\wheel\torch\contrib 2025-07-24T05:24:11.8691913Z copying build\lib.win-amd64-cpython-39\torch\contrib\_tensorboard_vis.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-07-24T05:24:11.8697572Z copying build\lib.win-amd64-cpython-39\torch\contrib\__init__.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-07-24T05:24:11.8702763Z creating build\bdist.win-amd64\wheel\torch\cpu 2025-07-24T05:24:11.8705567Z creating build\bdist.win-amd64\wheel\torch\cpu\amp 2025-07-24T05:24:11.8709044Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-07-24T05:24:11.8715048Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-07-24T05:24:11.8720706Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-07-24T05:24:11.8725785Z copying build\lib.win-amd64-cpython-39\torch\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu 2025-07-24T05:24:11.8731602Z creating build\bdist.win-amd64\wheel\torch\csrc 2025-07-24T05:24:11.8736607Z creating build\bdist.win-amd64\wheel\torch\csrc\inductor 2025-07-24T05:24:11.8738695Z creating build\bdist.win-amd64\wheel\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:11.8742103Z copying build\lib.win-amd64-cpython-39\torch\csrc\inductor\aoti_runtime\model.h -> build\bdist.win-amd64\wheel\.\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:11.8748150Z creating build\bdist.win-amd64\wheel\torch\cuda 2025-07-24T05:24:11.8751781Z creating build\bdist.win-amd64\wheel\torch\cuda\amp 2025-07-24T05:24:11.8755258Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-07-24T05:24:11.8761410Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\common.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-07-24T05:24:11.8766958Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-07-24T05:24:11.8772898Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-07-24T05:24:11.8778496Z copying build\lib.win-amd64-cpython-39\torch\cuda\comm.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8784322Z copying build\lib.win-amd64-cpython-39\torch\cuda\error.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8789159Z copying build\lib.win-amd64-cpython-39\torch\cuda\gds.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8794760Z copying build\lib.win-amd64-cpython-39\torch\cuda\graphs.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8800704Z copying build\lib.win-amd64-cpython-39\torch\cuda\jiterator.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8816830Z copying build\lib.win-amd64-cpython-39\torch\cuda\memory.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8823140Z copying build\lib.win-amd64-cpython-39\torch\cuda\nccl.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8828441Z copying build\lib.win-amd64-cpython-39\torch\cuda\nvtx.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8833825Z copying build\lib.win-amd64-cpython-39\torch\cuda\profiler.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8839463Z copying build\lib.win-amd64-cpython-39\torch\cuda\random.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8844938Z copying build\lib.win-amd64-cpython-39\torch\cuda\sparse.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8850224Z copying build\lib.win-amd64-cpython-39\torch\cuda\streams.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8855645Z copying build\lib.win-amd64-cpython-39\torch\cuda\tunable.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8861883Z copying build\lib.win-amd64-cpython-39\torch\cuda\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8867382Z copying build\lib.win-amd64-cpython-39\torch\cuda\_memory_viz.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8874338Z copying build\lib.win-amd64-cpython-39\torch\cuda\_pin_memory_utils.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8900528Z copying build\lib.win-amd64-cpython-39\torch\cuda\_sanitizer.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8901351Z copying build\lib.win-amd64-cpython-39\torch\cuda\_utils.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8902200Z copying build\lib.win-amd64-cpython-39\torch\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-24T05:24:11.8902803Z creating build\bdist.win-amd64\wheel\torch\distributed 2025-07-24T05:24:11.8905704Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms 2025-07-24T05:24:11.8908964Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:24:11.8946629Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:24:11.8953741Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:24:11.8959491Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:24:11.8970918Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:24:11.8976723Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:24:11.8982656Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:24:11.8988698Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:24:11.8995230Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:24:11.9001338Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-07-24T05:24:11.9006578Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\join.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-07-24T05:24:11.9012587Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\model_averaging 2025-07-24T05:24:11.9016046Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging\averagers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\model_averaging 2025-07-24T05:24:11.9022259Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\model_averaging 2025-07-24T05:24:11.9028070Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\model_averaging 2025-07-24T05:24:11.9044838Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\model_averaging 2025-07-24T05:24:11.9049753Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_checkpoint 2025-07-24T05:24:11.9064183Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-07-24T05:24:11.9070344Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-07-24T05:24:11.9075096Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_comm_hooks 2025-07-24T05:24:11.9078778Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks\default_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_comm_hooks 2025-07-24T05:24:11.9085575Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_comm_hooks 2025-07-24T05:24:11.9091112Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_optimizer_overlap 2025-07-24T05:24:11.9094646Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_optimizer_overlap 2025-07-24T05:24:11.9100510Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_optimizer_overlap 2025-07-24T05:24:11.9105943Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_quantization 2025-07-24T05:24:11.9109475Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\quantization.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-07-24T05:24:11.9115421Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-07-24T05:24:11.9119936Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-07-24T05:24:11.9125195Z copying build\lib.win-amd64-cpython-39\torch\distributed\argparse_util.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:11.9130892Z creating build\bdist.win-amd64\wheel\torch\distributed\autograd 2025-07-24T05:24:11.9134160Z copying build\lib.win-amd64-cpython-39\torch\distributed\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\autograd 2025-07-24T05:24:11.9139556Z copying build\lib.win-amd64-cpython-39\torch\distributed\c10d_logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:11.9156000Z creating build\bdist.win-amd64\wheel\torch\distributed\checkpoint 2025-07-24T05:24:11.9159486Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9165445Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\default_planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9171309Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9181236Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\format_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9197230Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\hf_storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9202862Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9208614Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9214304Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9239632Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9245367Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9251523Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner_helpers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9258433Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\resharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9264976Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\staging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9273460Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\stateful.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9279900Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9287428Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_loader.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9294013Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_saver.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9301004Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9306751Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9313320Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9323737Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_process_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9329582Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_thread_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9335492Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_checkpointer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9351587Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_consolidate_hf_safetensors.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9357963Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_save_plans.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9363496Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_tensors.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9381707Z creating build\bdist.win-amd64\wheel\torch\distributed\checkpoint\_experimental 2025-07-24T05:24:11.9382783Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\barriers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:24:11.9384115Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\builder.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:24:11.9388651Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpointer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:24:11.9394293Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpoint_process.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:24:11.9413499Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpoint_reader.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:24:11.9419078Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpoint_writer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:24:11.9424671Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\config.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:24:11.9430118Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\staging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:24:11.9435884Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:24:11.9441327Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:24:11.9447040Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-24T05:24:11.9452923Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_extension.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9458857Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_fsspec_filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9464770Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_hf_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9474505Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_nested_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9480221Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_pg_transport.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9495954Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9506014Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_state_dict_stager.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9512080Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_storage_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9517908Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_traverse.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9523659Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_version.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9529134Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-24T05:24:11.9534109Z copying build\lib.win-amd64-cpython-39\torch\distributed\collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:11.9539714Z copying build\lib.win-amd64-cpython-39\torch\distributed\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:11.9545314Z copying build\lib.win-amd64-cpython-39\torch\distributed\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:11.9552230Z copying build\lib.win-amd64-cpython-39\torch\distributed\distributed_c10d.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:11.9560800Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic 2025-07-24T05:24:11.9564197Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent 2025-07-24T05:24:11.9568044Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent\server 2025-07-24T05:24:11.9571955Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent\server 2025-07-24T05:24:11.9578018Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server\health_check_server.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent\server 2025-07-24T05:24:11.9583496Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server\local_elastic_agent.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent\server 2025-07-24T05:24:11.9589628Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent\server 2025-07-24T05:24:11.9595351Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent 2025-07-24T05:24:11.9599880Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\control_plane.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-07-24T05:24:11.9605422Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\events 2025-07-24T05:24:11.9608921Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-07-24T05:24:11.9615230Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-07-24T05:24:11.9620428Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-07-24T05:24:11.9626321Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\metrics 2025-07-24T05:24:11.9629612Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-07-24T05:24:11.9635129Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-07-24T05:24:11.9640642Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing 2025-07-24T05:24:11.9654517Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-07-24T05:24:11.9660933Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:24:11.9664515Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors\error_handler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:24:11.9670238Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors\handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:24:11.9675542Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\errors 2025-07-24T05:24:11.9681284Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\redirects.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-07-24T05:24:11.9687052Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:24:11.9700575Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:24:11.9706522Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:24:11.9712205Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-24T05:24:11.9720372Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\tail_log.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-07-24T05:24:11.9725737Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-07-24T05:24:11.9731399Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\rendezvous 2025-07-24T05:24:11.9734893Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:24:11.9740994Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:24:11.9746320Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:24:11.9763590Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:24:11.9770118Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:24:11.9775736Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_server.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:24:11.9781126Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:24:11.9786742Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:24:11.9793385Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:24:11.9799747Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:24:11.9810643Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:24:11.9817023Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-24T05:24:11.9823677Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\timer 2025-07-24T05:24:11.9827492Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-07-24T05:24:11.9834351Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\debug_info_logging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-07-24T05:24:11.9840443Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\file_based_local_timer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-07-24T05:24:11.9846644Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\local_timer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-07-24T05:24:11.9866689Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-07-24T05:24:11.9872648Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils 2025-07-24T05:24:11.9875842Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-24T05:24:11.9881414Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils\data 2025-07-24T05:24:11.9884850Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data\cycling_iterator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils\data 2025-07-24T05:24:11.9890590Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data\elastic_distributed_sampler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils\data 2025-07-24T05:24:11.9895967Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils\data 2025-07-24T05:24:11.9901505Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\distributed.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-24T05:24:11.9907265Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\logging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-24T05:24:11.9912952Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\log_level.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-24T05:24:11.9928082Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-24T05:24:11.9932955Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-24T05:24:11.9941732Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-07-24T05:24:11.9947427Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp 2025-07-24T05:24:11.9950670Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:11.9956772Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:11.9963374Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\sharded_grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:11.9969291Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\wrap.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:11.9974966Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:11.9994691Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0001850Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_dynamo_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0007612Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_exec_order_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0013925Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_flat_param.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0021003Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fsdp_extensions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0026867Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp\_fully_shard 2025-07-24T05:24:12.0030487Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:24:12.0036749Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:24:12.0042711Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_common.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:24:12.0058229Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_init.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:24:12.0063638Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_param.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:24:12.0070017Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:24:12.0076336Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_state.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:24:12.0082235Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fully_shard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:24:12.0088165Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-07-24T05:24:12.0093375Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_init_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0099519Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_limiter_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0109278Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_optim_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0116092Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0122569Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_shard_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0128099Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0134162Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_trace_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0140048Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_traversal_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0145624Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_unshard_param_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0161623Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_wrap_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0167107Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-24T05:24:12.0172731Z copying build\lib.win-amd64-cpython-39\torch\distributed\launch.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:12.0182386Z creating build\bdist.win-amd64\wheel\torch\distributed\launcher 2025-07-24T05:24:12.0185799Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-07-24T05:24:12.0191756Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-07-24T05:24:12.0197279Z copying build\lib.win-amd64-cpython-39\torch\distributed\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:12.0203070Z creating build\bdist.win-amd64\wheel\torch\distributed\nn 2025-07-24T05:24:12.0206765Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\api 2025-07-24T05:24:12.0211322Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\remote_module.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-07-24T05:24:12.0217737Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-07-24T05:24:12.0221580Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-07-24T05:24:12.0227675Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit 2025-07-24T05:24:12.0231241Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\instantiator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-07-24T05:24:12.0237765Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit\templates 2025-07-24T05:24:12.0241685Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates\remote_module_template.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit\templates 2025-07-24T05:24:12.0247521Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit\templates 2025-07-24T05:24:12.0253311Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-07-24T05:24:12.0256759Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-07-24T05:24:12.0276853Z creating build\bdist.win-amd64\wheel\torch\distributed\optim 2025-07-24T05:24:12.0277668Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\apply_optimizer_in_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0278797Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adadelta.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0284463Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adagrad.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0303308Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adam.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0314293Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamax.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0320300Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamw.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0326296Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0332328Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0338004Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_sgd.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0343835Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\named_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0350288Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0356156Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\post_localSGD_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0361983Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0367804Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0374716Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0380615Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\_deprecation_warning.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0386047Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-24T05:24:12.0396721Z creating build\bdist.win-amd64\wheel\torch\distributed\pipelining 2025-07-24T05:24:12.0400529Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\microbatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:24:12.0406628Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\schedules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:24:12.0413452Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\stage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:24:12.0419750Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:24:12.0434963Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_debug.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:24:12.0440465Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_IR.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:24:12.0446685Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_schedule_visualizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:24:12.0452101Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_unflatten.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:24:12.0457396Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:24:12.0462658Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-24T05:24:12.0467919Z copying build\lib.win-amd64-cpython-39\torch\distributed\remote_device.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:12.0473481Z copying build\lib.win-amd64-cpython-39\torch\distributed\rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:12.0479291Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc 2025-07-24T05:24:12.0482522Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:24:12.0488781Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\backend_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:24:12.0497828Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:24:12.0503446Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\functions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:24:12.0522695Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\internal.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:24:12.0528226Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\options.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:24:12.0533752Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\rref_proxy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:24:12.0540077Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\server_process_global_profiler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:24:12.0545958Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc\_testing 2025-07-24T05:24:12.0549509Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing\faulty_agent_backend_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc\_testing 2025-07-24T05:24:12.0555198Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc\_testing 2025-07-24T05:24:12.0560343Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:24:12.0566144Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-24T05:24:12.0571879Z copying build\lib.win-amd64-cpython-39\torch\distributed\run.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:12.0578584Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor 2025-07-24T05:24:12.0581956Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\debug 2025-07-24T05:24:12.0585377Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_comm_mode.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-07-24T05:24:12.0591916Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_op_coverage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-07-24T05:24:12.0597403Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_visualize_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-07-24T05:24:12.0602680Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-07-24T05:24:12.0617742Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:24:12.0623341Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\experimental 2025-07-24T05:24:12.0626862Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_attention.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-07-24T05:24:12.0633548Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_func_map.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-07-24T05:24:12.0639230Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_register_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-07-24T05:24:12.0654540Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_tp_transform.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-07-24T05:24:12.0661292Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-07-24T05:24:12.0667014Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\parallel 2025-07-24T05:24:12.0670382Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:24:12.0711018Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\ddp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:24:12.0716457Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\fsdp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:24:12.0722023Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\input_reshard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:24:12.0727496Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\loss.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:24:12.0733636Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\style.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:24:12.0744423Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\_data_parallel_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:24:12.0750016Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-24T05:24:12.0759793Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:24:12.0776887Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:24:12.0784515Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:24:12.0833740Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:24:12.0834816Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dtensor_spec.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:24:12.0835601Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\_ops 2025-07-24T05:24:12.0836490Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:24:12.0839470Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_common_rules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:24:12.0840579Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_conv_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:24:12.0841667Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_einsum_strategy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:24:12.0846308Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:24:12.0859694Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_math_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:24:12.0865964Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_matrix_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:24:12.0872232Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_pointwise_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:24:12.0880088Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_random_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:24:12.0884156Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:24:12.0890363Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_view_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:24:12.0896462Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-24T05:24:12.0901604Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_op_schema.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:24:12.0908387Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_random.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:24:12.0914506Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_redistribute.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:24:12.0920742Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_sharding_prop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:24:12.0927057Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_shards_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:24:12.0937352Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_tp_conv.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:24:12.0942662Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:24:12.0948597Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-24T05:24:12.0954068Z copying build\lib.win-amd64-cpython-39\torch\distributed\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:12.0959470Z copying build\lib.win-amd64-cpython-39\torch\distributed\_checkpointable.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:12.0965587Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable 2025-07-24T05:24:12.0980288Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\checkpoint_activation.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-07-24T05:24:12.0985834Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\contract.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-07-24T05:24:12.0991181Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable\fsdp 2025-07-24T05:24:12.0994603Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\fully_shard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-07-24T05:24:12.1000111Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-07-24T05:24:12.1005395Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\replicate.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-07-24T05:24:12.1021746Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-07-24T05:24:12.1027046Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable_state.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:12.1032850Z copying build\lib.win-amd64-cpython-39\torch\distributed\_dist2.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:12.1038424Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:12.1044980Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives_impl.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:12.1050646Z copying build\lib.win-amd64-cpython-39\torch\distributed\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:12.1057147Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard 2025-07-24T05:24:12.1060348Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-24T05:24:12.1066310Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\checkpoint 2025-07-24T05:24:12.1069975Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\checkpoint 2025-07-24T05:24:12.1075657Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\common_op_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-24T05:24:12.1081393Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-24T05:24:12.1087101Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\op_registry_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-24T05:24:12.1104437Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_optim 2025-07-24T05:24:12.1107761Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_optim 2025-07-24T05:24:12.1113822Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_optim 2025-07-24T05:24:12.1119577Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor 2025-07-24T05:24:12.1123203Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:24:12.1129910Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:24:12.1135613Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:24:12.1140977Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:24:12.1146520Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\reshard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:24:12.1162896Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\shard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:24:12.1168745Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:24:12.1174887Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:24:12.1178666Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:24:12.1184808Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\init.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:24:12.1190433Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:24:12.1195894Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:24:12.1201739Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\_common.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:24:12.1217947Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-07-24T05:24:12.1227826Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-07-24T05:24:12.1233767Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharder.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-24T05:24:12.1239969Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_plan 2025-07-24T05:24:12.1243477Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_plan 2025-07-24T05:24:12.1249549Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_plan 2025-07-24T05:24:12.1255152Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec 2025-07-24T05:24:12.1258654Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec 2025-07-24T05:24:12.1264639Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec 2025-07-24T05:24:12.1291909Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:24:12.1293095Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:24:12.1294687Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding_bag.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:24:12.1298196Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\_common.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:24:12.1314790Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-24T05:24:12.1319172Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\_internals.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec 2025-07-24T05:24:12.1325292Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec 2025-07-24T05:24:12.1330377Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-24T05:24:12.1335810Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-24T05:24:12.1341584Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharded_tensor 2025-07-24T05:24:12.1345044Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharded_tensor 2025-07-24T05:24:12.1350633Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharding_spec 2025-07-24T05:24:12.1354253Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharding_spec 2025-07-24T05:24:12.1359880Z copying build\lib.win-amd64-cpython-39\torch\distributed\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:12.1366682Z creating build\bdist.win-amd64\wheel\torch\distributed\_symmetric_memory 2025-07-24T05:24:12.1590998Z copying build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory\_nvshmem_triton.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_symmetric_memory 2025-07-24T05:24:12.1597335Z copying build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_symmetric_memory 2025-07-24T05:24:12.1604390Z creating build\bdist.win-amd64\wheel\torch\distributed\_tensor 2025-07-24T05:24:12.1607932Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-07-24T05:24:12.1613582Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-07-24T05:24:12.1619531Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-07-24T05:24:12.1624981Z creating build\bdist.win-amd64\wheel\torch\distributed\_tools 2025-07-24T05:24:12.1628760Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:24:12.1634545Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fake_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:24:12.1640194Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fsdp2_mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:24:12.1646349Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\ilp_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:24:12.1663023Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\memory_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:24:12.1668928Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:24:12.1675693Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mod_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:24:12.1681555Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\runtime_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:24:12.1691822Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:24:12.1698448Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_ilp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:24:12.1704084Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-24T05:24:12.1709356Z copying build\lib.win-amd64-cpython-39\torch\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-24T05:24:12.1716270Z creating build\bdist.win-amd64\wheel\torch\distributions 2025-07-24T05:24:12.1719923Z copying build\lib.win-amd64-cpython-39\torch\distributions\bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1725620Z copying build\lib.win-amd64-cpython-39\torch\distributions\beta.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1731357Z copying build\lib.win-amd64-cpython-39\torch\distributions\binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1737105Z copying build\lib.win-amd64-cpython-39\torch\distributions\categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1753399Z copying build\lib.win-amd64-cpython-39\torch\distributions\cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1758948Z copying build\lib.win-amd64-cpython-39\torch\distributions\chi2.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1764836Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraints.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1771977Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraint_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1778506Z copying build\lib.win-amd64-cpython-39\torch\distributions\continuous_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1784873Z copying build\lib.win-amd64-cpython-39\torch\distributions\dirichlet.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1790840Z copying build\lib.win-amd64-cpython-39\torch\distributions\distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1797245Z copying build\lib.win-amd64-cpython-39\torch\distributions\exponential.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1802959Z copying build\lib.win-amd64-cpython-39\torch\distributions\exp_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1812936Z copying build\lib.win-amd64-cpython-39\torch\distributions\fishersnedecor.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1818605Z copying build\lib.win-amd64-cpython-39\torch\distributions\gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1824208Z copying build\lib.win-amd64-cpython-39\torch\distributions\generalized_pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1829898Z copying build\lib.win-amd64-cpython-39\torch\distributions\geometric.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1835821Z copying build\lib.win-amd64-cpython-39\torch\distributions\gumbel.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1841356Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1847053Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1852984Z copying build\lib.win-amd64-cpython-39\torch\distributions\independent.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1858553Z copying build\lib.win-amd64-cpython-39\torch\distributions\inverse_gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1874644Z copying build\lib.win-amd64-cpython-39\torch\distributions\kl.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1880619Z copying build\lib.win-amd64-cpython-39\torch\distributions\kumaraswamy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1886004Z copying build\lib.win-amd64-cpython-39\torch\distributions\laplace.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1891893Z copying build\lib.win-amd64-cpython-39\torch\distributions\lkj_cholesky.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1897393Z copying build\lib.win-amd64-cpython-39\torch\distributions\logistic_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1902774Z copying build\lib.win-amd64-cpython-39\torch\distributions\log_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1908515Z copying build\lib.win-amd64-cpython-39\torch\distributions\lowrank_multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1914905Z copying build\lib.win-amd64-cpython-39\torch\distributions\mixture_same_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1925674Z copying build\lib.win-amd64-cpython-39\torch\distributions\multinomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1931480Z copying build\lib.win-amd64-cpython-39\torch\distributions\multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1947541Z copying build\lib.win-amd64-cpython-39\torch\distributions\negative_binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1953407Z copying build\lib.win-amd64-cpython-39\torch\distributions\normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1959137Z copying build\lib.win-amd64-cpython-39\torch\distributions\one_hot_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1970772Z copying build\lib.win-amd64-cpython-39\torch\distributions\pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1976619Z copying build\lib.win-amd64-cpython-39\torch\distributions\poisson.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1982418Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1988180Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.1994191Z copying build\lib.win-amd64-cpython-39\torch\distributions\studentT.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.2000008Z copying build\lib.win-amd64-cpython-39\torch\distributions\transformed_distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.2005880Z copying build\lib.win-amd64-cpython-39\torch\distributions\transforms.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.2012697Z copying build\lib.win-amd64-cpython-39\torch\distributions\uniform.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.2017954Z copying build\lib.win-amd64-cpython-39\torch\distributions\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.2023572Z copying build\lib.win-amd64-cpython-39\torch\distributions\von_mises.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.2041087Z copying build\lib.win-amd64-cpython-39\torch\distributions\weibull.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.2046972Z copying build\lib.win-amd64-cpython-39\torch\distributions\wishart.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.2052880Z copying build\lib.win-amd64-cpython-39\torch\distributions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-24T05:24:12.2059268Z creating build\bdist.win-amd64\wheel\torch\export 2025-07-24T05:24:12.2062503Z copying build\lib.win-amd64-cpython-39\torch\export\custom_obj.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2068008Z copying build\lib.win-amd64-cpython-39\torch\export\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2084890Z copying build\lib.win-amd64-cpython-39\torch\export\decomp_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2091215Z copying build\lib.win-amd64-cpython-39\torch\export\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2108793Z creating build\bdist.win-amd64\wheel\torch\export\experimental 2025-07-24T05:24:12.2112543Z copying build\lib.win-amd64-cpython-39\torch\export\experimental\_utils.py -> build\bdist.win-amd64\wheel\.\torch\export\experimental 2025-07-24T05:24:12.2118350Z copying build\lib.win-amd64-cpython-39\torch\export\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\experimental 2025-07-24T05:24:12.2125003Z copying build\lib.win-amd64-cpython-39\torch\export\exported_program.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2134232Z copying build\lib.win-amd64-cpython-39\torch\export\graph_signature.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2139485Z creating build\bdist.win-amd64\wheel\torch\export\passes 2025-07-24T05:24:12.2142874Z copying build\lib.win-amd64-cpython-39\torch\export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\passes 2025-07-24T05:24:12.2148983Z creating build\bdist.win-amd64\wheel\torch\export\pt2_archive 2025-07-24T05:24:12.2152714Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\constants.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-07-24T05:24:12.2158477Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\_package.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-07-24T05:24:12.2164588Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\_package_weights.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-07-24T05:24:12.2175669Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-07-24T05:24:12.2192652Z copying build\lib.win-amd64-cpython-39\torch\export\unflatten.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2199548Z copying build\lib.win-amd64-cpython-39\torch\export\_draft_export.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2206225Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_auto_functionalized_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2211975Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_effect_tokens_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2218329Z copying build\lib.win-amd64-cpython-39\torch\export\_safeguard.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2223825Z copying build\lib.win-amd64-cpython-39\torch\export\_swap.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2229819Z copying build\lib.win-amd64-cpython-39\torch\export\_trace.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2236944Z copying build\lib.win-amd64-cpython-39\torch\export\_tree_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2247441Z copying build\lib.win-amd64-cpython-39\torch\export\_unlift.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2253520Z copying build\lib.win-amd64-cpython-39\torch\export\_wrapper_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2259392Z copying build\lib.win-amd64-cpython-39\torch\export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-24T05:24:12.2266016Z creating build\bdist.win-amd64\wheel\torch\fft 2025-07-24T05:24:12.2269335Z copying build\lib.win-amd64-cpython-39\torch\fft\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fft 2025-07-24T05:24:12.2276666Z creating build\bdist.win-amd64\wheel\torch\func 2025-07-24T05:24:12.2280195Z copying build\lib.win-amd64-cpython-39\torch\func\__init__.py -> build\bdist.win-amd64\wheel\.\torch\func 2025-07-24T05:24:12.2286181Z copying build\lib.win-amd64-cpython-39\torch\functional.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:12.2293520Z creating build\bdist.win-amd64\wheel\torch\futures 2025-07-24T05:24:12.2296841Z copying build\lib.win-amd64-cpython-39\torch\futures\__init__.py -> build\bdist.win-amd64\wheel\.\torch\futures 2025-07-24T05:24:12.2302945Z creating build\bdist.win-amd64\wheel\torch\fx 2025-07-24T05:24:12.2306626Z copying build\lib.win-amd64-cpython-39\torch\fx\annotate.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.2315977Z copying build\lib.win-amd64-cpython-39\torch\fx\config.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.2321762Z creating build\bdist.win-amd64\wheel\torch\fx\experimental 2025-07-24T05:24:12.2325247Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\accelerator_partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2331760Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\const_fold.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2337270Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\debug.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2352636Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\graph_gradual_typechecker.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2358859Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\merge_matmul.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2364297Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\meta_tracer.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2370065Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:24:12.2373513Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\constraint.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:24:12.2379663Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\constraint_generator.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:24:12.2386200Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\constraint_transformation.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:24:12.2402556Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\operation.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:24:12.2407976Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\transform_to_z3.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:24:12.2414160Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\util.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:24:12.2420366Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\z3_types.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:24:12.2430664Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-07-24T05:24:12.2437309Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\normalize.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2443019Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\optimization.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2449553Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\partitioner_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2455990Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\proxy_tensor.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2463009Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\recording.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2469178Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\refinement_types.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2475067Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2480749Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\schema_type_annotation.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2486583Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\symbolic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2499763Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\sym_node.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2506777Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification 2025-07-24T05:24:12.2510318Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\core.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:24:12.2516719Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\dispatch.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:24:12.2522026Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\match.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:24:12.2527455Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\more.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:24:12.2533507Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:24:12.2547271Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\conflict.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:24:12.2552890Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\core.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:24:12.2558723Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\dispatcher.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:24:12.2564658Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:24:12.2570368Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\variadic.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:24:12.2586349Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-07-24T05:24:12.2591775Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\unification_tools.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:24:12.2598496Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:24:12.2603849Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\variable.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:24:12.2609277Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-24T05:24:12.2614668Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unify_refinements.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2620378Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\validator.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2636312Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_backward_state.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2642056Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_config.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2647979Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_constant_symnode.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2653901Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_dynamism.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2664383Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-24T05:24:12.2668906Z copying build\lib.win-amd64-cpython-39\torch\fx\graph.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.2675996Z copying build\lib.win-amd64-cpython-39\torch\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.2692090Z copying build\lib.win-amd64-cpython-39\torch\fx\immutable_collections.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.2697741Z copying build\lib.win-amd64-cpython-39\torch\fx\interpreter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.2708385Z copying build\lib.win-amd64-cpython-39\torch\fx\node.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.2753506Z copying build\lib.win-amd64-cpython-39\torch\fx\operator_schemas.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.2760278Z creating build\bdist.win-amd64\wheel\torch\fx\passes 2025-07-24T05:24:12.2764157Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\annotate_getitem_nodes.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2771060Z creating build\bdist.win-amd64\wheel\torch\fx\passes\backends 2025-07-24T05:24:12.2774457Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-07-24T05:24:12.2780420Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-07-24T05:24:12.2785718Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect 2025-07-24T05:24:12.2789133Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect\common 2025-07-24T05:24:12.2792771Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common\cse_pass.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\dialect\common 2025-07-24T05:24:12.2798694Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\dialect\common 2025-07-24T05:24:12.2803737Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\dialect 2025-07-24T05:24:12.2808330Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\fake_tensor_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2814451Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_drawer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2826292Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_manipulation.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2832605Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_transform_observer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2838722Z creating build\bdist.win-amd64\wheel\torch\fx\passes\infra 2025-07-24T05:24:12.2842282Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-07-24T05:24:12.2848749Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-07-24T05:24:12.2854373Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-07-24T05:24:12.2864953Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-07-24T05:24:12.2880628Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\net_min_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2887751Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\operator_support.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2893409Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\param_fetch.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2899224Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2905150Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2912023Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\runtime_assert.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2918520Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\shape_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2924611Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\splitter_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2931362Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_module.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2937664Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2943922Z creating build\bdist.win-amd64\wheel\torch\fx\passes\tests 2025-07-24T05:24:12.2947900Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tests\test_pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\tests 2025-07-24T05:24:12.2953776Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\tests 2025-07-24T05:24:12.2958687Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tools_common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.2964954Z creating build\bdist.win-amd64\wheel\torch\fx\passes\utils 2025-07-24T05:24:12.2979543Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-24T05:24:12.2985595Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\fuser_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-24T05:24:12.2991778Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\matcher_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-24T05:24:12.2998262Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\matcher_with_name_node_map_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-24T05:24:12.3023820Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\source_matcher_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-24T05:24:12.3030054Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-24T05:24:12.3035422Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\_tensorify_python_scalars.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.3041962Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-24T05:24:12.3047393Z copying build\lib.win-amd64-cpython-39\torch\fx\proxy.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.3053863Z copying build\lib.win-amd64-cpython-39\torch\fx\subgraph_rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.3060227Z copying build\lib.win-amd64-cpython-39\torch\fx\tensor_type.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.3065717Z copying build\lib.win-amd64-cpython-39\torch\fx\traceback.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.3071508Z copying build\lib.win-amd64-cpython-39\torch\fx\_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.3077206Z copying build\lib.win-amd64-cpython-39\torch\fx\_graph_pickler.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.3083956Z copying build\lib.win-amd64-cpython-39\torch\fx\_lazy_graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.3089907Z copying build\lib.win-amd64-cpython-39\torch\fx\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.3095643Z copying build\lib.win-amd64-cpython-39\torch\fx\_symbolic_trace.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.3103981Z copying build\lib.win-amd64-cpython-39\torch\fx\_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.3108589Z copying build\lib.win-amd64-cpython-39\torch\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-24T05:24:12.3114472Z copying build\lib.win-amd64-cpython-39\torch\hub.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:12.3121500Z creating build\bdist.win-amd64\wheel\torch\include 2025-07-24T05:24:12.3125176Z copying build\lib.win-amd64-cpython-39\torch\include\advisor-annotate.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:12.3136092Z creating build\bdist.win-amd64\wheel\torch\include\asmjit 2025-07-24T05:24:12.3139347Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\a64.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-24T05:24:12.3145351Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\arm 2025-07-24T05:24:12.3149213Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:24:12.3154805Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:24:12.3160624Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:24:12.3166409Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:24:12.3183046Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:24:12.3190714Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64instdb.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:24:12.3196661Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:24:12.3203108Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armglobals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:24:12.3208491Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armoperand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:24:12.3214826Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armutils.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-24T05:24:12.3224129Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-24T05:24:12.3231796Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit-scope-begin.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-24T05:24:12.3237266Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit-scope-end.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-24T05:24:12.3252367Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-24T05:24:12.3258401Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\core 2025-07-24T05:24:12.3261895Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\api-config.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3268721Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\archcommons.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3275157Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\archtraits.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3281049Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3298670Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3305990Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\codebuffer.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3312498Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\codeholder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3319019Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3325323Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\compilerdefs.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3331433Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\constpool.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3336894Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\cpuinfo.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3344819Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3350899Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\environment.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3357383Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\errorhandler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3363421Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\formatter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3368988Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\func.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3375647Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3381330Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\inst.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3387416Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\jitallocator.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3393824Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\jitruntime.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3400086Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\logger.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3405504Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3412217Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\osutils.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3417794Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\string.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3427337Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\support.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3433969Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\target.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3449267Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\type.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3455152Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\virtmem.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3460931Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zone.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3466879Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonehash.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3472382Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonelist.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3477928Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonestack.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3483738Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonestring.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3489278Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonetree.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3494892Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonevector.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-24T05:24:12.3501020Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-24T05:24:12.3513185Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\x86 2025-07-24T05:24:12.3516515Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-24T05:24:12.3522535Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-24T05:24:12.3528079Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-24T05:24:12.3535478Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-24T05:24:12.3554505Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-24T05:24:12.3567949Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86instdb.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-24T05:24:12.3574639Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-24T05:24:12.3580895Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-24T05:24:12.3588475Z creating build\bdist.win-amd64\wheel\torch\include\ATen 2025-07-24T05:24:12.3592254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\AccumulateType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3598127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3603299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ATen.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3612639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\autocast_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3618924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3633706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3639746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\BlasBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3650920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CachedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3651919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ceil_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3657175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\code_template.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3663163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CollapseDims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3669216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3675289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3682057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3688540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3695014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3701445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3708145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3714456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3730307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3735984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.3743975Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core 2025-07-24T05:24:12.3747694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\alias_info.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3753545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3759270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3768435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenOpList.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3783300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_fwd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3791618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\aten_interned_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3807193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_pch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3812991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3818593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3824830Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing 2025-07-24T05:24:12.3828356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\BoxedKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing 2025-07-24T05:24:12.3834586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\BoxedKernel_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing 2025-07-24T05:24:12.3840960Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing\impl 2025-07-24T05:24:12.3844441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl\boxing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing\impl 2025-07-24T05:24:12.3850497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl\make_boxed_from_unboxed_functor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing\impl 2025-07-24T05:24:12.3856717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl\test_helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing\impl 2025-07-24T05:24:12.3862294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing\impl 2025-07-24T05:24:12.3881953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing\impl 2025-07-24T05:24:12.3887613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\KernelFunction.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing 2025-07-24T05:24:12.3902640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\KernelFunction_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing 2025-07-24T05:24:12.3908487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\OperatorKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing 2025-07-24T05:24:12.3914213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\builtin_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3921875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3928128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CheckMemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3935141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\class_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3940962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3946679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3952648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3958152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3963724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3969121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3974515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.3980552Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\dispatch 2025-07-24T05:24:12.3984139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\CppSignature.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-07-24T05:24:12.3990062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\Dispatcher.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-07-24T05:24:12.3996546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\DispatchKeyExtractor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-07-24T05:24:12.4002148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\ObservedOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-07-24T05:24:12.4017191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\OperatorEntry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-07-24T05:24:12.4023199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\OperatorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-07-24T05:24:12.4028697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\RegistrationHandleRAII.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-07-24T05:24:12.4034451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DistributionsHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4049569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dynamic_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4055271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_tag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4060361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4065994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4071540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4077039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4087279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function_schema.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4096923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function_schema_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4102850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4108878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4114717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\grad_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4130212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4136372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4142282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\interned_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4148452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\interned_strings_class.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4154403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4160941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4168045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4174199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\jit_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4181115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\jit_type_base.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4187584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\LegacyTypeDispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4203258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4209385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4220098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\MT19937RNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4226072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4232083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4237937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\operator_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4244036Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\op_registration 2025-07-24T05:24:12.4247593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration\adaption.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\op_registration 2025-07-24T05:24:12.4253273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration\infer_schema.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\op_registration 2025-07-24T05:24:12.4258961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration\op_allowlist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\op_registration 2025-07-24T05:24:12.4265096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration\op_registration.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\op_registration 2025-07-24T05:24:12.4282811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PhiloxRNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4289690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonFallbackKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4296249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4302435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\qualified_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4317829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\QuantizerBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4323642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4329076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Reduction.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4334518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\rref_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4340288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4346028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4351435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4357240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\symbol.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4362730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4368178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4373582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4379894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBody.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4408154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TorchDispatchUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4413514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TransformationHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4419372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4424688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_factory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4430354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4436192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4441553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UnsafeFromTH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4447431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\VariableHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4453075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Variadic.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4458516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Vitals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-24T05:24:12.4464349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpp_custom_type_hack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.4470686Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu 2025-07-24T05:24:12.4474403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\FlushDenormal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-07-24T05:24:12.4479645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-07-24T05:24:12.4485495Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec 2025-07-24T05:24:12.4488881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:24:12.4494338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\functional_base.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:24:12.4500900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\functional_bfloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:24:12.4506965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\intrinsics.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:24:12.4522981Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\sve 2025-07-24T05:24:12.4526516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\sve_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-07-24T05:24:12.4532514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_bfloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-07-24T05:24:12.4538762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_common_sve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-07-24T05:24:12.4544507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-07-24T05:24:12.4593057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-07-24T05:24:12.4599376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-07-24T05:24:12.4605786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_qint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-07-24T05:24:12.4611984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:24:12.4618571Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:24:12.4621708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:24:12.4627298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:24:12.4633712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128_convert.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:24:12.4639720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:24:12.4659915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:24:12.4666476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128_reduced_precision_common_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-07-24T05:24:12.4672905Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:24:12.4676638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:24:12.4682684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:24:12.4688164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:24:12.4693982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:24:12.4709790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:24:12.4715924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:24:12.4722418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:24:12.4728708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_convert.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:24:12.4734816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:24:12.4740720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:24:12.4747237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_half.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:24:12.4753379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:24:12.4765055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:24:12.4771236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_qint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-07-24T05:24:12.4778608Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:24:12.4782645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_bfloat16_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:24:12.4788973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_common_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:24:12.4795778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_double_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:24:12.4812072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_float_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:24:12.4819047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_double_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:24:12.4825401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_float_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:24:12.4831858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int16_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:24:12.4837963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int32_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:24:12.4843640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int64_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:24:12.4849262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint32_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:24:12.4861150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint8_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:24:12.4870305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_quint8_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:24:12.4877094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vsx_helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-24T05:24:12.4883682Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\zarch 2025-07-24T05:24:12.4887529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\zarch\vec256_zarch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\zarch 2025-07-24T05:24:12.4894678Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:24:12.4898299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:24:12.4903923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:24:12.4910676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:24:12.4916926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:24:12.4934474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_convert.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:24:12.4940290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:24:12.4950347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:24:12.4956744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_float8.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:24:12.4963377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:24:12.4975084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:24:12.4981036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_qint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-24T05:24:12.4987721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_base.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:24:12.4998540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_convert.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:24:12.5004203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_half.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:24:12.5009767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:24:12.5015590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_n.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:24:12.5020787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_quant.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-24T05:24:12.5026456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vml.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-07-24T05:24:12.5032489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUApplyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5038706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFixedAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5044601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5052649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5059125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5065621Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda 2025-07-24T05:24:12.5069264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5075188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\AsmUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5080805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5086248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Atomic.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5092945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5108518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5114563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5121268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5126642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub_definitions.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5132569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5138894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDABlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5145029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5150910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5157307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContextLight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5163138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADataType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5168932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5174557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5180371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5186265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraph.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5192286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5198065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5217792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5223876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5229635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5240079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5246071Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\detail 2025-07-24T05:24:12.5249548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\CUDAHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:24:12.5255378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\DeviceThreadHandles.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:24:12.5261217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\IndexUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:24:12.5266937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\IntegerDivider.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:24:12.5291455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\KernelUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:24:12.5298150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\LazyNVRTC.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:24:12.5304018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\OffsetCalculator.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:24:12.5310029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:24:12.5315962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\TensorInfo.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:24:12.5321673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\UnpackRaw.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-07-24T05:24:12.5327787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\DeviceUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5333345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5338938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5344736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5351162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5366943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\llvm_jit_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5376177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\NumericLimits.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5382062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PeerToPeerAccess.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5387485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxCudaState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5392949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5398453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5403734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ScanUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5409595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Sleep.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5414954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ThrustAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-24T05:24:12.5420674Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\tunable 2025-07-24T05:24:12.5434198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\GemmCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-07-24T05:24:12.5440622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\GemmHipblaslt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-07-24T05:24:12.5447065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\GemmRocblas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-07-24T05:24:12.5452652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\StreamTimer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-07-24T05:24:12.5471980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\Tunable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-07-24T05:24:12.5477704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\TunableGemm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-07-24T05:24:12.5483401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\TunableOp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-07-24T05:24:12.5489291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5504547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5511435Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cudnn 2025-07-24T05:24:12.5514936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\cudnn-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-24T05:24:12.5520271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-24T05:24:12.5526333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-24T05:24:12.5531128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handles.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-24T05:24:12.5536504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-24T05:24:12.5555815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-24T05:24:12.5561519Z creating build\bdist.win-amd64\wheel\torch\include\ATen\detail 2025-07-24T05:24:12.5565544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:24:12.5571468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\CUDAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:24:12.5577162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\FunctionTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:24:12.5592384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HIPHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:24:12.5598850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:24:12.5604730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\IPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:24:12.5610644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MAIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:24:12.5616475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MPSHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:24:12.5622457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MTIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:24:12.5628477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:24:12.5638293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\XPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-24T05:24:12.5644142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5650114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5655486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5661128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5666484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5675902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5682712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch_v2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5689570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\div_rtn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5694958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DLConvertor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5700779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\dlpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5717133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DynamicLibrary.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5727172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5732709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5738276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5744566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5750931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalStorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5756867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalTensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5766912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Functions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5774446Z creating build\bdist.win-amd64\wheel\torch\include\ATen\functorch 2025-07-24T05:24:12.5778018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\ADInterpreters.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:24:12.5783719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:24:12.5789350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:24:12.5805468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:24:12.5811146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchRulesHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:24:12.5817544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\DynamicLayer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:24:12.5823494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:24:12.5829077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Interpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:24:12.5835201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:24:12.5840621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:24:12.5846091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\PlumbingHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:24:12.5851807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\TensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:24:12.5857430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\VmapInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-24T05:24:12.5863248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FuncTorchTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5878765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5884430Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip 2025-07-24T05:24:12.5887882Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip\impl 2025-07-24T05:24:12.5891358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\hip\impl 2025-07-24T05:24:12.5901524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\hip\impl 2025-07-24T05:24:12.5906417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\hip\impl 2025-07-24T05:24:12.5921826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\hip\impl 2025-07-24T05:24:12.5927318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InferSize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5933189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InitialTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5938740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jiterator_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5944499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jit_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5949938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5955215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5960759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5966395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5991082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.5997151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LinalgBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.6002701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MapAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.6008322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MatrixRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.6014108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MemoryOverlap.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.6019762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.6025430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.6031910Z creating build\bdist.win-amd64\wheel\torch\include\ATen\metal 2025-07-24T05:24:12.6035234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\metal\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\metal 2025-07-24T05:24:12.6040581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.6046708Z creating build\bdist.win-amd64\wheel\torch\include\ATen\miopen 2025-07-24T05:24:12.6060210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-24T05:24:12.6065889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-24T05:24:12.6071367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-24T05:24:12.6076513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\miopen-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-24T05:24:12.6092198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-24T05:24:12.6097211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-24T05:24:12.6102730Z creating build\bdist.win-amd64\wheel\torch\include\ATen\mps 2025-07-24T05:24:12.6106084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:24:12.6111872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\IndexKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:24:12.6121818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:24:12.6128329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocatorInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:24:12.6144691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:24:12.6154343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:24:12.6159882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:24:12.6165607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:24:12.6171478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:24:12.6176896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:24:12.6183091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSStream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-24T05:24:12.6188864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.6194654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:12.6206544Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native 2025-07-24T05:24:12.6210253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6215945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AdaptivePooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6221687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AmpKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6227963Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse 2025-07-24T05:24:12.6240719Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized 2025-07-24T05:24:12.6244674Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:24:12.6252633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:24:12.6258237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu\packed_params.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:24:12.6263995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu\qnnpack_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-24T05:24:12.6269671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BatchLinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6275803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6281541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BinaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6287389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BucketizationUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6293427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CanUse32BitIndexMath.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6304066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ComplexHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6310654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6316888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6322761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvolutionMM3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6328772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6335445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6345042Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6348540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\AtomicAddFloat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6354476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\avx_mathfun.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6360472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\CatKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6366085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\ChannelShuffleKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6381195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\CopyKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6386592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\DepthwiseConvKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6392405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\DistributionTemplates.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6398939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\Elu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6404492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\Gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6443244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\GridSamplerKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6448960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\IndexKernelUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6454656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\Intrinsics.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6460201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\int_mm_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6465716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\IsContiguous.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6471257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\LogAddExp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6481862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\LogSoftmaxKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6487324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\Loops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6492853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\MaxUnpoolKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6498184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\mixed_data_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6503807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\moments_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6513518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\PixelShuffleKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6518784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\Reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6524591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6530187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\ReduceUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6540744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\SampledAddmmKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6546121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\SerialStackImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6552295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\SoftmaxKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6558711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\SpmmReduceKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6564380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\StackKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6570099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6586730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6592864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\WeightNormKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6598374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\zmath.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-24T05:24:12.6604133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6609878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6615655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.6621981Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6625550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6631245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\BinaryInternal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6637065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\block_reduce.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6643242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\CompositeRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6664349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6672001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\CUDAJitLoops.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6680964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\CUDALoops.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6690071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\CuFFTPlanCache.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6696955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\CuFFTUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6702817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\cutlass_common.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6716871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\DeviceSqrt.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6722103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Distributions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6728005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\DistributionTemplates.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6734922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6740419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ForeachFunctors.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6746813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6752666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.6758572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adamw_impl.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9243952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9249860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adam_impl.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9256346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adam_utils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9262196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\GridSampler.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9268143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\GridSampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9274233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\GroupMM.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9279802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\GroupMMCommon.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9285679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\im2col.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9291543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\IndexKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9297271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\IndexKernelUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9315803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\JitLoops.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9321908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\jit_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9328521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\KernelUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9335029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\LaunchUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9341346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Loops.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9347686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Math.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9356162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\MemoryAccess.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9363106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\MiscUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9369117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\MultiTensorApply.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9375192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Normalization.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9382716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\PersistentSoftmax.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9400298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Pow.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9406546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Randperm.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9412121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Reduce.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9418711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9424290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\reduction_template.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9430465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9436252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\RowwiseScaledMM.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9441685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ScaledGroupMM.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9447174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ScanKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9452870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ScanUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9459126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Sort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9464418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Sorting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9482013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\SortingCommon.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9491927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\SortingRadixSelect.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9497792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\SortStable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9503310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\SortUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9509088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\TensorModeKernel.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9515374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\TensorModeKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9520816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\TensorTopK.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9529978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\thread_constants.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9535540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\UniqueCub.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9562891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\UpSample.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9568287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\vol2col.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-24T05:24:12.9574220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DilatedConvolutionUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9590587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DispatchStub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9597626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9603211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distributions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9609838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DistributionTemplates.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9615859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\EmbeddingBag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9621514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9626751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ForeachUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9632948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FractionalMaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9638846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9644435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9650311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9667681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedSGD.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9673143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9678956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9684893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSamplerUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9690831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9697724Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip 2025-07-24T05:24:12.9701548Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip\bgemm_kernels 2025-07-24T05:24:12.9705279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_collection.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip\bgemm_kernels 2025-07-24T05:24:12.9711410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_template.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip\bgemm_kernels 2025-07-24T05:24:12.9717233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\ck_bgemm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip 2025-07-24T05:24:12.9726877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\ck_gemm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip 2025-07-24T05:24:12.9732480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\ck_gemm_template.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip 2025-07-24T05:24:12.9738283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\ck_types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip 2025-07-24T05:24:12.9755537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9761062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9766865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\im2col_shape_check.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9772752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9778850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9785091Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\kleidiai 2025-07-24T05:24:12.9800344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai\kai_kernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\kleidiai 2025-07-24T05:24:12.9805845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai\kai_pack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\kleidiai 2025-07-24T05:24:12.9811475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai\kai_ukernel_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\kleidiai 2025-07-24T05:24:12.9817364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9823763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9830156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9836594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebraUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9843754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LossMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9849549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Math.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9861826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitFallThroughLists.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9867628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitsFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9873744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:12.9879730Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn 2025-07-24T05:24:12.9883184Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu 2025-07-24T05:24:12.9887062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\Conv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu 2025-07-24T05:24:12.9892471Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:24:12.9895935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\Attr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:24:12.9901925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:24:12.9912574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:24:12.9918120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:24:12.9924301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:24:12.9929520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-24T05:24:12.9945974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\FusionUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu 2025-07-24T05:24:12.9951998Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps 2025-07-24T05:24:12.9955205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-07-24T05:24:12.9960613Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps\kernels 2025-07-24T05:24:12.9964005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels\Pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\kernels 2025-07-24T05:24:12.9969753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels\UpSample.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\kernels 2025-07-24T05:24:12.9975320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\MetalShaderLibrary.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-07-24T05:24:12.9983652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\MPSGraphSequoiaOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-07-24T05:24:12.9989077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\MPSGraphSonomaOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-07-24T05:24:13.0005894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\MPSGraphVenturaOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-07-24T05:24:13.0012116Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps\operations 2025-07-24T05:24:13.0015568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\BinaryKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-07-24T05:24:13.0020968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-07-24T05:24:13.0026597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-07-24T05:24:13.0043076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-07-24T05:24:13.0048783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-07-24T05:24:13.0054638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\MultiTensorApply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-07-24T05:24:13.0060984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\OperationUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-07-24T05:24:13.0067217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\TensorFactory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-07-24T05:24:13.0073229Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mtia 2025-07-24T05:24:13.0087540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mtia\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mtia 2025-07-24T05:24:13.0093767Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\nested 2025-07-24T05:24:13.0097389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested\NestedTensorBinaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\nested 2025-07-24T05:24:13.0102906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested\NestedTensorMath.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\nested 2025-07-24T05:24:13.0108950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\nested 2025-07-24T05:24:13.0126662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested\NestedTensorTransformerUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\nested 2025-07-24T05:24:13.0132400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested\NestedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\nested 2025-07-24T05:24:13.0138584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonEmptyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0144444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonSymbolicBC.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0160982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0166812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Padding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0172619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PixelShuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0178522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PointwiseOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0184837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0191090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0197919Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized 2025-07-24T05:24:13.0202361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\AffineQuantizer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:24:13.0209155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\AffineQuantizerBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:24:13.0215372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:24:13.0232385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:24:13.0238162Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0243414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\ACLUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0249470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\BinaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0254919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\conv_serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0261049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0277069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\fbgemm_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0283437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\init_qnnpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0288644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\OnednnUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0294762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\qconv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0300504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\qembeddingbag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0306185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0311791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\qlinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0323115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\QnnpackUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0324417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\QuantizedOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0329637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\QuantUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0335554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\RuyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0340832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\XnnpackUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-07-24T05:24:13.0351190Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cudnn 2025-07-24T05:24:13.0355120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cudnn 2025-07-24T05:24:13.0361531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\FakeQuantAffine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:24:13.0367892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\IndexKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:24:13.0374193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\library.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:24:13.0379998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\PackedParams.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-07-24T05:24:13.0386602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0397669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0425385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceAllOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0430682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0436603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0443273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReductionType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0449031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0458781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0464766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ResizeCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0470194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RNN.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0476050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ScatterGatherChecks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0482140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SegmentReduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0487856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SharedReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0508420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SobolEngineOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0514302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Sorting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0519630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SortingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0525448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SparseTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0531283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SpectralOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0537081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\StridedRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0543136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0549029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0554879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorCompare.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0572243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorConversions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0578398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorDimApply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0583819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0589730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0595641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0601623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0607163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorShape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0613547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorTransformations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0619338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TopKImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.0625327Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers 2025-07-24T05:24:13.0629353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers 2025-07-24T05:24:13.0635344Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda 2025-07-24T05:24:13.0638980Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\flash_attn 2025-07-24T05:24:13.0642756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn\flash_api.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\flash_attn 2025-07-24T05:24:13.0648868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn\static_switch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\flash_attn 2025-07-24T05:24:13.0654845Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:24:13.0658841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\debug_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:24:13.0665394Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:24:13.0668973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_pipelined.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:24:13.0675538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_rescale_output.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:24:13.0681472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_thread_apply_logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-24T05:24:13.0698196Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:24:13.0702038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:24:13.0707997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_base.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:24:13.0714093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_multistage.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:24:13.0720555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_pipelined.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:24:13.0743037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\find_default_mma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:24:13.0784312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_accum_lambda_iterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:24:13.0824611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_from_smem.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-24T05:24:13.0832645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm_kernel_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:24:13.0847552Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:24:13.0851751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\default_warp_iterator_from_smem.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:24:13.0857873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\epilogue_predicated_tile_iterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:24:13.0864295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\make_residual_last.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:24:13.0881510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_access_iterator_residual_last.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:24:13.0888467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_iterator_residual_last.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:24:13.0895579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\transpose_warp_iterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:24:13.0901555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\warp_iterator_from_smem.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-24T05:24:13.0907447Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-07-24T05:24:13.0911010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-07-24T05:24:13.0918540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-07-24T05:24:13.0924881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:24:13.0932392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:24:13.0939220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\pytorch_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-24T05:24:13.0945052Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-07-24T05:24:13.0948974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform\tile_smem_loader.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-07-24T05:24:13.0954532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\sdp_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda 2025-07-24T05:24:13.0960287Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip 2025-07-24T05:24:13.0963874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\aotriton_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\hip 2025-07-24T05:24:13.0969862Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn 2025-07-24T05:24:13.0973323Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-07-24T05:24:13.0976853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\ck\me_ck_api.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-07-24T05:24:13.0982506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\flash_api.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\hip\flash_attn 2025-07-24T05:24:13.0989032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\sdp_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers 2025-07-24T05:24:13.1005754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\sdp_utils_cpp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers 2025-07-24T05:24:13.1012170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TransposeType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.1018049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TriangularOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.1023922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.1029818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.1035786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.1041441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.1047247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnfoldBackward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.1053352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UpSample.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.1059848Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\utils 2025-07-24T05:24:13.1063502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils\Factory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\utils 2025-07-24T05:24:13.1069087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils\ParamsHash.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\utils 2025-07-24T05:24:13.1075055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils\ParamUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\utils 2025-07-24T05:24:13.1080898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\verbose_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.1086979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\vol2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-24T05:24:13.1093175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:13.1100214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:13.1107290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NestedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:13.1114144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NumericUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:13.1120087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpaqueTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:13.1126098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Operators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:13.1133225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpMathType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:13.1305909Z creating build\bdist.win-amd64\wheel\torch\include\ATen\ops 2025-07-24T05:24:13.1309464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1315936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1321933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1327694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1345273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1351229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1357164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1363018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1368772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1374415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1379913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1385293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1391799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1397614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1403459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1409135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1414723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1420543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1426371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1432655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1449207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1455521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1461321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1467128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1473003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1478595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1484224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1490427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1496639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1513502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1523398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1529224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1535525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1541531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1547603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1553776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1559920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1576328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1582441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1588690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1595268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1601270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1607361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1613611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1619590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1625998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1632233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1638505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1668932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1675366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1681728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1687757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1693775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1699818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1706633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1712732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1719001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1725370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1731614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1748417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1758889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1765603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1771745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1777847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1783896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1790002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1805996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1812129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1818240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1824750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1831596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1848273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1854488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1861228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1867592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1873903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1879882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1892100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1897974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1903962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1910195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1916619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1922786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1928732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1934718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1940239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1945992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1952033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1957798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1963504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1969289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1975281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1981282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1987032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.1993073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2009683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2015581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2021424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2027314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2033875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2039887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2045584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2051978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2057864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2063780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2069726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2076110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2082083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2088380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2094137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2100457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2106469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2112699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2118650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2125049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2131137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2137357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2154823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2161137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2166996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2173172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2179251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2185329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2191853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2197958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2203872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2210244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2216258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2222287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2228470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2234686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2240428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2246484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2259031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2264739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2270667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2276689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2282596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2288341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2294448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2300228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2306493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2312815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2319121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2325209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2331380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2338326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2355907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2362120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2368195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2373871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2379954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2386274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2392753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2398736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2404488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2410434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2415978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2421764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2427601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2433549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2439294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2445338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2451752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2457606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2463498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2469338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2475065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2481375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2487581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2493609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2499408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2505558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2511558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2522375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2528990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2535265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2541532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2547218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2553155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2559134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2564976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2570913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2577062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2582888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2589184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2595142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2626990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2633070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2639130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2645242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2651270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2657219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2663434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2670027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2676964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2682497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2688157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2700215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2706400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2712722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2718754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2725305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2731359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2737353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2751648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2754781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2796390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2802153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2808142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2814143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2820127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2825816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2832012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2838364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2844945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2851988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2858222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2865197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2871792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2877755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2884023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2890256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2896785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2902938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2909183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2915438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2926990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2932896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2938805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2944370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2949938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2955929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2961833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2973253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2979275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2985215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2991433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.2998342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3004258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3010162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3015952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3021905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3028149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3034186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3040253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3046196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3051769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3057614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3063631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3069326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3075606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3088291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3094414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3100302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3106335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3112374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3118104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3124805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3131187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3137982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3144915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3151701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3158721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3165492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3172530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3179222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3186095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3192348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3198660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3204814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3210927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3217161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3223087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3229228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3235679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3241728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3247729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3253764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3259887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3265881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3272177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3278711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3284671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3290841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3296624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3302550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3308209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3314493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3320174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3326039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3331709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3337873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3343735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3349933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3355908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3361629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3367579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3387222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3393730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3399806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3405699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3411884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3418329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3424676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3431050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3437368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3444358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3450978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3458346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3465288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3471438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3489919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3496113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3509672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3515561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3525463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3532596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3538229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3544587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3550849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3556668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3562598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3568546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3573899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3579619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3585039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3590960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3596694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3602540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3608042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3620327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3626586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3632699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3638816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3644910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3650998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3656931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3663006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3668974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3675503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3681332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3687500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3693506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3699273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3705477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3711519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3717371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3723659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3729648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3735707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3741882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3748325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3754409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3760384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3766602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3773156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3779427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3785182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3791317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3798118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3803972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3810020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3815969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3822482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3828835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3835580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3841558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3848165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3854615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3862637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3868095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3874341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3881052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3887118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3893142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3899091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3905254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3911478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3917540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3923462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3929452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3935872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3941915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3948397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3954592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3960574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3966583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3985452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3992036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.3997884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4004032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4009901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4016143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4021926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4027804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4033944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4040131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4045891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4051780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4057719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4063728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4069561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4075659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4081566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4087827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4093541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4100567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4106723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4112681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4119098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4125343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4131643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_elemt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4138083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4144208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4150490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_elemt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4157496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_elemt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4163580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4169999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4176240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4182919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4189435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4195881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_reduce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4202286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_reduce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4208697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4214718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_elemt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4220928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4227058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_elemt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4233292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_elemt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4239395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4246133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4252364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4258487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4264870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4271472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4278370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4284828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4291016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4297230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4303228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4309454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4315905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_stats.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4322528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4328485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4334472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_stats_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4340593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_stats_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4346970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4354309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4361228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4367572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4373844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4379919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4386039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4392485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4398864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4404825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4410932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4432827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4438781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4445075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4451199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4457189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4462877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4501207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4507288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4513343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4519626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4531572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4532809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4537842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4544034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4549899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4555970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4561773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4568433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_with_logits.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4574565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4580482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4586446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4592405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4598256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4604301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4610187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4615889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4621805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4627716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4634224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4639987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4645884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4651715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4657643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4663732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4669713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4675803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4681823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4688383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4693984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4699991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4705634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4711643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4717689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4723900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4730129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4736101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4742069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4748045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4754236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4760276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4766705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4772930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4779232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4785265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4791330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4797314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4803469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4822213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4828801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4835649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4843076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4849995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4856694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4863678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4870032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4876747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4882834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4888988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4894502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4901228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4907195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4913506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4919990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4926142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4932026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4937950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4944213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4950470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4956944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4963202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4968958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4975486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4981511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4987353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4993622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.4999473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5012252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5018641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5024540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5030792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5037246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5043569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5049471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5055302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5061220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5067388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5073719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5079583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5085956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5095854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5101915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5108121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5113983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5120347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5126502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5132429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5138414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5144723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5150840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5156979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5163008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5169953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5175444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5181895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5187867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5193744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5199639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5205437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5211796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5217587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5223338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5229442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5235504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5241484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5264124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5270216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5282633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5286223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5292350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5298090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5303853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5309668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5315912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5321861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5327888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5334600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5340566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5347179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5363802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5369190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5375304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5381341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5386964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5393624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5399962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5405894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5411935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5418541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5424117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5429817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5435855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5441404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5446820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5453018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5459059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5464876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5470656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5477183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5482534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5488622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5494149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5499551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5505502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5511917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5517328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5522882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5529036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5535069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5540515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5546451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5552084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5557883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5563266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5569204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5575315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5581153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5587249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5593394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5599157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5604975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5620012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5625786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5631673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5637779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5643612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5649839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5655822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5661921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5668372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5674644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5680836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5687020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5692995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5698781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\choose_qparams_optimized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5705118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5710989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\choose_qparams_optimized_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5717025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\choose_qparams_optimized_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5723074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5728985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5735278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5741017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5746661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5752789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5758510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5764389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5770826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5777103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5782815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5788835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5794796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5800816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5806637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5812521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5818650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5824883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5830882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5837369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5843355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5849393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5855225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5861331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5867247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5873604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5880050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5886348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5893117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5899864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5906767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5913919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5920441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5927238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5933662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5940322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5946408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5952507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5958526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5964366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5970428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5976112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5982253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5988567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.5994568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6000468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6006580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6012518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6018426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6024406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6030247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6036358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6042647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6048674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6054872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6060951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6066927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6073073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6078925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6084999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6091033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6097010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6102849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6108566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6114531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6155068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6161039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6167082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6173208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6179537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6185955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6192167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6198136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6204356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6210357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6216321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6222520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6228285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6234530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6240169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6245911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6252273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6258817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6264898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6270937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6277107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6283545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6289255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\constant_pad_nd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6295610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6302059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\constant_pad_nd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6308051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\constant_pad_nd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6314152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6330452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6336440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6342162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6348317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6354527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6360687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6367065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6373182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6379818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6386324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6393035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6399027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6405206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6411406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6417188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6423218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6429124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6435441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6456505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6462943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6469936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6476235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_overrideable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6482717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6488842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_overrideable_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6494917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_overrideable_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6501363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6507312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6513529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6519746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6526433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6532440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6538528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6544864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6551139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6557098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6563087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6569031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6574941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6580687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6587046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6593167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6599387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6605541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6611436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6617267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6623348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6629692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6635800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6641777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6647912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6654045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6659926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6666205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6672335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6679889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6688067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6694739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6700886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6706870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6713149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6719495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6725753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6731851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6737884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6744863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6751129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6757502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6764755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6770711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6776708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6782754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6788687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6794670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_sparse_to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6801247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6807286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6813387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_sparse_to_sparse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6819703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_sparse_to_sparse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6825748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6831647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6837675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6843774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6849781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6855524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6861668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6867671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6874313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6881105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6887325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6893874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6899895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6905810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_embedding_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6912237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6918312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_embedding_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6924411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_embedding_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6930370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6937175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6944026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6950486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6957926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6964413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6971356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6978160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6984443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.6991004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7003395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7009332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7015832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7022230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7028229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7034671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7040635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7046507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7052568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7058377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7064190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7069758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7075771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7081791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_entropy_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7088451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7094400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_entropy_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7100377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_entropy_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7106336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7112470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7118434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7124586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7130536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7137143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7147742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7154323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7160412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7167414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7174089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7180798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7187587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7194247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7201036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7208108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7234829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7241423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7247276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7253401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7259451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7266214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7272563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7278923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7285080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7291164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7297294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7304285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7311013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7317344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7323492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7329779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7336020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7342367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7348455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7354886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7361326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_add_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7367754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7373844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7380107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_add_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7386382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7392588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7398631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7404681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7410735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7417217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7423868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7429966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7436181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7442472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7448901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7455320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7461528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7467510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7473554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7479658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7486259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7492303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7498614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7504846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7511380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7517532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7523830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7529836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7535857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_is_acceptable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7542091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7547746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_is_acceptable_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7553439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_is_acceptable_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7559105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7564920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7571168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7577073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7582926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7589033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7601303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7607021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7612897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7618898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7624849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7631209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7637167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7643097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7649052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7655045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7661273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7667067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7672803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7679222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7685708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7691811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7697818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7703802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7709805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7715895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7721818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7727809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7734027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7740178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7745910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7751937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7757930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7763969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7769902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7775996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7782394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7788838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7795329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7801506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7841053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7847143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7853059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7859138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7864925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7871257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7877848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7884549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7891192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7898082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7904557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7911604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7918563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7925861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7932450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7939323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7946219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7952673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7959275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7964851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7970999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7977060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7983553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.7989811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8002384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8007229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8013093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8018824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8025074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8031187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8036892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8042344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8047947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8053605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8059712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8065274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8071471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8077201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8083311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8089213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8095490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8101772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8107719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8113906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8120335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8131453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8137770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8143643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8149602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8155557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8161383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8174757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8180743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8187024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8193460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8199788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8205553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8211993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8218034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8224465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8230503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8236471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8257854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8263489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8269420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8275353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8281091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8286761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8293003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8310316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8311660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8312706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8316775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8322744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8328590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8334700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8340595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8346539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8352750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8358265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8364047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8370274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8376472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8383095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8390541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8397189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8403799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8410510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8417174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8424095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8430211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8436557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8442525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8448778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8454532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8460662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8466551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8472544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8478237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8484263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8490264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8496383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8501896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8508179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8513935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8523684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8529387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8535720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8541770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8547308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8553649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8559277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8564942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8570743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8576505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8582371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8588598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8594705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8600654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8606732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8613125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8618800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8624975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8631660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8637509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8643358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8649491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8654928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8660705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8666688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8672598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8678567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8684975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8691182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8697382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8703413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8709811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8732288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8738381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8744988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8751231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8758659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8765053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8771676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8777899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8783946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8789831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8796202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8802330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8808761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8815152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8821348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8827600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8833959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8840102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8846307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_sparse_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8853050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8859205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_sparse_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8865288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_sparse_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8871420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8878104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8884214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8891051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8898118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8904704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8911793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8917901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8925216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8931410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8937438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8943784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8950036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8956690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8962672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8968687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8974710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8980930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8987295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8993761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.8999621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9005989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9011992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9018489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9026374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9032824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9039118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9045107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9050605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9055842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9061811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9067783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9074008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9080481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9086382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9092202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9098054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9103804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9109678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9115597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9121240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9127007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9133078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9155229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9161293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9167299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9173131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9179142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9185143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9191194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9197571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9203369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9209766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9215702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9221476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9227522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9233794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9240480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9246449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9252538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9258604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9268929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9275083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9281319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9292866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9298727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9305085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9310651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9316945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9322993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9328800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9334697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9340627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9346783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9352694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9358894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9364894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9371196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9377284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9383931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9391172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9398337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9404714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9410984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9417339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9423068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9428949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9435459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9441386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9447231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9453521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9459263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9465234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9471172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9477172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9483596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9489693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9527576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9533607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9539550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9545682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9552385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9558063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9563902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9569694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9575164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9581177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9586859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9592623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9598617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9604672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9610915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9616767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9622574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9628433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9634436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9640533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9646945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9654010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9660264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9666921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9673593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9680125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9686782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9693085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9699312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9706122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9712410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9718810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9725171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9731572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9738240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9755528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9762769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9769686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9776256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9782867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9789252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9795884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9802610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9809184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9815507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9822126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9828443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9835028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9841767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9848401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9854765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9861146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9867486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9874179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9880585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9887468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9894650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9902042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9908679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9915379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9921687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9927832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9934299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_quantize_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9940646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9947160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9953648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9959834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9966531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9972496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9978887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9985054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9991558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:13.9997933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0004117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0010258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_alpha_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0016786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0023114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_alpha_dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0028969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_alpha_dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0035372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0041819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0047817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0054545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0060002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0065709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0071641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0077542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0084053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0089910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0095989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0102292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0108207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0114223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0120254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0125984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0131832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0137786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0162171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0168117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0173859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0180036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0185992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0191912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0197812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0204536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0210969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0217032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0223040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0229130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0235710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0242036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0249100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0255706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0261779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0267849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0274086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0279879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0286389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0292122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0298083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0304449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0311065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0317340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0323695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0329807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0335930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0342144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0348359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0355103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0361079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0383671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0389814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0396474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0403024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0409590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0416010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0422313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0428705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0435800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0442009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0448287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0454843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0460611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0466654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0472988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0479044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0484951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0491081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0497785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0503982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0510090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0516263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0522409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0528376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0534375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0540149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0545825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0552609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0558461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0564366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0570445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0576689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0583112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0589431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0595650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0602310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0608261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0614165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0620446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0626694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0632582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0638633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0644671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0651143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0657196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0663047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0669562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0675549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0681514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0687851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0694049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0699927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0705832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0712109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0718031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0724029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0730274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0736570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0742725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_dense_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0749034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0755195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_dense_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0760922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_dense_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0771387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0777481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0783881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0789696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0795762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0801852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0807609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0813724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0819542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0825535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0832037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0838246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0844591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0850690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0856984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0862945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0868742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0875066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0881437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0892418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0898877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0905704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0912468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0927474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0929086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0935601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0941906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0948309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0955261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0962167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0969160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0976645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0983494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0990434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.0996674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1002772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1009094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1015156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1021538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1027616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1033678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1039563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1045523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1051082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1085909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1091907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1097997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1104054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1126431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1132296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1138082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1143975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1150091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1156109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1161948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1168065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1173931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1179839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1185958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1191640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1197285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1203017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1208984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1215592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1221680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1261310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1268276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1274308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1280738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1287042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1293650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1299748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1306096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1329486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1336193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1342419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1348637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1354918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1361245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1367870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1374547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1380817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1387030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1393783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1400243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1407660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1414517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1421572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1428601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1434918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1441619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1447931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1454744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1460598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1466535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1472648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1478410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1484262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1490107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1496527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1502445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1508194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1514515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1520595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1526631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1532737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1538644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1544604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1550468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1556737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1562692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1568491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1595280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1601101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1607117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1613373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1619485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1625322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1631359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1637295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1643101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1649396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1655975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1662000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1668295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1674222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1680188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1686434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1692385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1698421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1704813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1710834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1717204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1723133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1729087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1735594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1741649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1747590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1767107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1773294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1779310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1785649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1791650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1797487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1803488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1809385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1815129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1820909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1826691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1833246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1839494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1845739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1851891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1858381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1864409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1870395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1877018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1882871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1889235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1895478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1901500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1907761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1914367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1920695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1927882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1934637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1941573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1959625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1965958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1971934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1978100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1983894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1990013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.1996253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2002489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2008345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2014116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2020028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2025962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2032242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2038091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2043948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2050343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2056079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2065514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2071441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2077131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2082828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2088862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2094768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2100841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2107051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2113345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2119404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2125419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2131266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2137496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2143661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2150175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2155998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2161873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2167876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2173777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2179734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2185890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2203680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2209625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2215730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2221130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2226929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2232939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2238468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2244380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2250669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2256827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2262647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2268658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2274556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2280929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2287008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2292951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2299055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2305297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2311269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2317207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2323121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2329348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2335657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2341729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2347768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2353907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2360202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2366291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2372729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2378854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2385037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2391310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2397633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2404233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2410620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2417176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2423856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2430741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2437949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2444822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2451962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2458571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2465421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2472493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2478971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2485368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2491687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2498292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2504458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2510400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2516683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2522295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2528360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2534530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2540307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2561630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2562926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2563865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2568523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2574513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2580311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2586132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2592098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2598282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2604479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2609763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2615681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2622410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2628350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2634464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2640628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2646899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2652757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2658641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2664754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2671216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2677950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2684424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2690658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2707778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2714093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2720555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2727176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2733829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2739793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2745847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2755305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2761569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2767499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2773538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2779720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2785712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2792170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2798062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2803945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2810109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2816128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2822357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2828630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2835337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2841445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2847743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2854001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2860436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2866822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2873336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2879470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2885816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2892277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2898636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2905126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2911361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2918051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2925139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2932035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2938781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2975608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2982160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2988168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.2994447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3001028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3006945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3013223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3019225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3025201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3031643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3037786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3043927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3049895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3055867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3062120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3095177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3101339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3107192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3113439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3119369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3125348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3131478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hinge_embedding_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3137723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3144481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hinge_embedding_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3150513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hinge_embedding_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3156410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3162065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3167900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3173873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3179653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3185591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3191732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3197912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3207785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3213724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3219723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3225717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3231935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3238068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3244323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3250154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3256098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3262200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3267942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3273966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3280447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3286579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3292708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3298370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3304283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3310244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3316811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3322833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3329100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3335808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3342093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3348285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3354570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3360754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3366999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3373231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3380000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3386251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3392459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3399150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3405376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3411508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3417613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3424022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3430514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3436840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3443452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3449638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3455227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3461433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3467145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3472868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3478482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3484836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3490710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3496872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3502843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3508915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3515018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3521186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3527922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3533928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3539997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3545945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3552277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3558241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3564121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3570174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3576427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3582267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3588233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3594272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3600378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3606359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3617610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3622604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3628456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3634211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3640538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3646778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3652723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3658690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3664747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3671130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3677210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3683239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3689689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3696098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3702510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3708692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3714974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3721112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3727059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3733441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3739367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3745379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3751511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3758302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3764277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3770682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3776943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3783421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3789573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3795823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3802000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3808090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3814179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3820311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3826343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3832815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3838916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3845406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3852226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3858227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3864260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3870849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3877455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3883665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3890098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3896281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3902469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3908838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3915270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3921379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3938709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3945580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3952412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3959490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3966313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3972556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3978780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3984922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3991225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.3997164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4003193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4009626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4015714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4021771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4028612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4034810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4040580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4047127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4053681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4059917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4067137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4073299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4079427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4085479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4092169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4098300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4104904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4111417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4117676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4123797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4129889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4136120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4142197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4148439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4163078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4169438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4175137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4181354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4187441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4193483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4206853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4212915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4218684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4225205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4230740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4243890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4249613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4255617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4261527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4267557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4274065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4280220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4287056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4293394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4299535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4305478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4311437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4317238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4323401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4329575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4335522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4341483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4347559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4354089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4360245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4366284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4372984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4378551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4384349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4390369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4396446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4402511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4408752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4414736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4420711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4426819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4432762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4438714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4444966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4451109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4456897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4463162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4473277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4479183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4485022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4490845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4496707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4502842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4508766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4514984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4520624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4526549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4532820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4538588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4544343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4550540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4556547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4562668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4568523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4574723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4581198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4587788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4593890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4600339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_floating_point.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4607073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4613116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_floating_point_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4619013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_floating_point_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4655355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4661654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4667708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4673916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4680052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4685986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4692139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4697947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4704182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4710038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4716332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4722210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4728377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4734771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4740812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4746685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4753156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4759293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4766008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4772106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4778239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_same_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4784610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4791146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_same_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4797406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_same_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4803803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_set_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4809617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_set_to_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4815875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_set_to_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4822125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_set_to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4834999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_set_to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4841328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4847809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4853633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4859648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4866361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_vulkan_available.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4872982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4879004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_vulkan_available_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4884853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_vulkan_available_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4890705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4896389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4902205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4908219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4913892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4920072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4926158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4932159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4938076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4944002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4950389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4955959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4962539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4968203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4974162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4980607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4986251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4992498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.4998982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5005171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5011063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5016934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5026769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5033014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5038841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5044621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5050754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5056799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5067792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5073739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5079752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5085961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5092171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5098098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5104961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5110411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5116334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5122102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5128254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5133838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5139766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5145712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5151936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5157921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5163469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5169425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5175818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5181883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5187905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5194266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5200351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5206439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5212485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5218848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5224745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5231203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5237394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5243600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5249804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5255840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5261880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5273049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5279164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5285343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5291728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5297837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5303964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5310313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5316167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5322299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5328273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5334842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5341190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5347418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5353624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5359661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5365989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5372164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5378385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5384374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5390191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5396290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5402672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5417898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5423983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5430161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5436989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5443604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5453616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5459628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5465879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5472098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5478050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5483864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5490401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5496200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5502857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5508894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5514960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5520968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5531844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5537665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5543618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5549224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5555077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5561468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5567330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5573823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5579878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5586409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5592550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5598639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5604754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5610772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5617146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5623214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5629441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5636018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5641929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5647883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5653815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5660398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5666367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5672560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5678647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5684831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5690859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5696912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5704275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5711168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5717315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5723147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5729306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5735676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5741993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5748156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5754452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5760791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5767224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5773586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5780029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5786288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5792802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5799389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5805454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5834100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5840663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5847472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5853730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5860040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5865965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5872335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5878617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5884685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5890867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5897136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_householder_product.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5903650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5910434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5917578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_householder_product_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5923856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_householder_product_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5930305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5937346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5943856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5950993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5957175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5963294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5969430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5975686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5981879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5988286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.5994434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6000252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6006569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6012925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6019087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6025621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6032015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6038393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6044417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6050539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6066712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6073098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6079536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6085828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6096017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6102570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6108587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6114860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6121186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6127499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6133719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6140287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6146314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6152519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6158771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6164876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6170905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6176905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6182955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6189474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6195597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6201904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6208084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6214459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6221198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6227731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6234260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6240242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6246699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6252914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6258960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6265088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6271276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6277360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6289086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6293773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6299548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6305642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6312463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6350261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6356167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6362460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6368487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6374655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6381336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6387616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6394029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6400477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6406702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6412950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6419613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6426113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6432588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6438765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6445376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6452769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6461171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6468881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6524547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6532004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6538834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6545757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6552013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_power_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6558261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_power_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6575664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_rank.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6582723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6589106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_rank_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6595806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_rank_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6601908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_multi_dot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6608353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6614367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_multi_dot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6621111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_multi_dot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6652011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6658573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6665624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6672470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6678836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6685795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6692155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6698366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6704876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6712653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6718889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6725403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6731670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6737887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6744166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6752118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6758015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6764171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6770429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6776956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6783100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6789393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6795951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6803235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6809766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6816355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6822514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6828692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6834940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6841299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6847559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_triangular.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6853925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6860704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6867035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_triangular_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6873671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_triangular_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6879882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6886340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6892883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6899373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6905781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6912393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6918597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6925624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6932214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6939191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6945461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6952356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6958302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6964904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6971346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6978333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6984462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6991187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.6997401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.7003199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.7009303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.7015951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9807480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9814124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9837521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9844230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9853444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9860895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9888242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9894551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9900918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9907114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9913282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9919278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9926032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9931806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9937838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9944270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9950536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9956695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9963216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9969758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9975875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9982032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9988394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:14.9994667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0007950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0014871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0022181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0028248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0035331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0042010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0048776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0059768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0065902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0072511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0078981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0089745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0091773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0097317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0103280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0109418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0116301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0122259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0128421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0134723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0140879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0146650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0152759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0158840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0164514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0175230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0181444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0187076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0193529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0200462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0206542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0212687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0219021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0225608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0232170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0238372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0245262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0251236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0257583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0264064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0270369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0276846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0283249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0289502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0295788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0302176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0308390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0314786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0321484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0327108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0333643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0339635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0346147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0368817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0375086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0385111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0391405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0398078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0404451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0411002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0417778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0427874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0434624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0440682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0447134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0453649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0459782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0466454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0473222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0480041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0486243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0492790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0499133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0505421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0511926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0518726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0524171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0530291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0536755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0543123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0556987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0562954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0569145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0575497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0581761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0587958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0594361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0600818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0606641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0612825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0619270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0625685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0632114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0638305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0644273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0650292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0656724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0662683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0669238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0675523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0697317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0703406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0709851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0716167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0722173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0728465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0734673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0740637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0746600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0752951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0759725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0766437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0772460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0778939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0785065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0791398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0797663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0803534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0809738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0816041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0822299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0828953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0835497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0841946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0848039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0854509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0861563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0868081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0874378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0881001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0887064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0893118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0899443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0905681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0912133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0918270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0924357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0930433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0936410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0947437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0953660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.0959928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1152055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1158183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1163955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1170306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1176048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1181975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1188319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1194650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_mps_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1200942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1206971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_mps_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1212964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_mps_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1219214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1225193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1230805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1237148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1243042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1249048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1254900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1260627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1266258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1276691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1282543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1288988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1294999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1300969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1306884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1313335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1319443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1325436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1331608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1337752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1343868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1349861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1356122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\margin_ranking_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1362403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1368271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\margin_ranking_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1374599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\margin_ranking_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1381093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1387345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1393621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1399676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1405761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1411793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1417896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1424352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1430646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1437305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1443648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1450111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1456595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1463116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1469690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1476666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1483103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1489991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1496970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1503927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1511030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1517457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1524833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1531947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1538538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1545038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1551646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1557979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1563755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1570143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1576062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1582379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1588715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1595022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1601198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1607441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1614049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1620563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1632079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1637928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1644451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1650419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1656247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1662336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1674095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1680207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1685918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1692690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1699080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1705198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1711378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1717464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1723151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1729288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1735244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1741524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1747496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1753738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1759785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1765862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1772852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1778889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1785309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1791346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1797291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1802978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1808831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1814679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1820494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1827314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1833939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1840484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1846558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_with_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1852853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1859552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_with_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1865660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_with_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1881457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1882530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1887906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1893677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1899587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1905772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1911836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1935324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1941780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1948032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1954806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1960966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1967101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1973515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1979793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1986299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1992561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.1999261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2005498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2011833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2018496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2024827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2031161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2037526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2043513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2056921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2062961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2069089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2075490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2081676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2088615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2095238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2124732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2131094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2137437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2143945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2150320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2156771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2163076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2169373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2175569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2181826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2188046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2194727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2201179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2207610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2213821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2220210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2226346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2232716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2239100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2245355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2251516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2257800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2263940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2270038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2276288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2282862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2288954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2295322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2315369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2321505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2327156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2333200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2339374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2345883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2352052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2358580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2364679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2370437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2376208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2382392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2387770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2393676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2399507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2405640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2416126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2422263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2428388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2434615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2440557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2447050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2464584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2470631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2476978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2483069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2489007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2494742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2505111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2511118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2516995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2523216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2529580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2535594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2545509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2552510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2559002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2565009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2571297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2577335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2587526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2594033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_add_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2600408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2607687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_add_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2614547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_add_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2621489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2632363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2638963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2645349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2668663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2675799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2682264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2694430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2700787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2707874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2714540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2720905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2727370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2738117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_depthwise_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2745161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2751622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2758079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_depthwise_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2768288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_depthwise_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2771578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2782361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2789060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2795567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2801824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2808243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2814763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2825229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2832071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2838446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2844648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2850498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2856887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2867514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2873734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2879927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2886015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2892543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2898403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2937001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2942911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2948816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2955167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2962082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2971610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2977856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2984255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2990394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.2996915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3003070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3013134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3019406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3025746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3031853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3038237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3044306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3054714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3061264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3067314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_input.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3074422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3080928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_input_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3087048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3097518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3104111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3110236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_weights.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3121805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3127777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3134172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3145344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3151320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3157497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3163667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3171268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3177956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3189854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3196281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3202714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3208955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3215092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3221406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3231925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3254802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3260545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3266749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3274304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3280159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3292133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3299161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3305318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3311958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3318156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3324609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3336180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3342589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3349046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3355759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3362169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3369031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3379810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3386494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3392992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3399712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3410175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3416671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3428070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3434428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3440784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3447067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3453282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3459779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3469914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3476294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3482651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3489494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3496368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3503429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3510324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3516874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3523801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3530490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3536361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3542569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3548869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3555091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3561413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3567366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3573245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3579462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3590076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3607221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3613324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3619801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3625940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_transpose_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3633159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3639999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_transpose_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3646094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3652577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3658329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3664355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3670554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3688628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3694569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3701150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3707353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3713654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3719815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3725979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3732058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3738230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3743996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3750052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3756063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3761768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3767723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3773433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3779308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3784944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3790971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3797301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3804159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3810378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3816722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3823458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3829855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3836726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3843002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3849656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3856395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3862579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3868799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3875525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3881846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3888196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3894804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3901015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3907339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3913713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3920104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3948210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3954221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3960234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3966299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3972770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3979046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3985896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3992707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.3999446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4006007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4012284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4018579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4024765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4031417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4037605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4043622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4049742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4057020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4062706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4068530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4271223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4276859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4282537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4288489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4318849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4325000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4330908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4337042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4344087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4349787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4356134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4362060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4368156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4374619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4380674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4386753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4393824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4400109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4406182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4412499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4418858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4425022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4431323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4438061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4444087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4450325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4456403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4462306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4468601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4475420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4481320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4497572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4498764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4500827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4507687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4514609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4521481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4528136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4534615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4540883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4547567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4554058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4560317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4566382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4572647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4578864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4584778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4590802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4597285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4604063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4610265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4616712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4623003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4629081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4635347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4641515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4647716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4654000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_channel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4660759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4666916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4673229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_channel_shuffle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4679442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_channel_shuffle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4685670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4691916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4698705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4704865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4711135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4717347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4723459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4730064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4736482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4742667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4749821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4760668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4766284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4772817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4779565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4785732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4792090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4798325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4804743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4811050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4817486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4823632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4829827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4836060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4857540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4863506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4870323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4876852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4883012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4889214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4895321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4901892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4908485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4914815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4920938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4957976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4969032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4975570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4981870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4988083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.4994301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5000045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5006199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5012141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5018087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5023978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5030614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5036588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5056167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5061912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5068083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5074185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5080173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5085994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nested_to_padded_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5112748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5118667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nested_to_padded_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5124748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nested_to_padded_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5130636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5137065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5142997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5149778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5156091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5162810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5169009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5174983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_strided_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5181020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_strided_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5187224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5193585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5199448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5205366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5211341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5217418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5223438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5229378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5235879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5242323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5248620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5254418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5260675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5267160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5273280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5279872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5286105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5292466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5303494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5309327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5316061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5322250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5328362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5334466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5340346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5346401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5352798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5358667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5364468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5370606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5381713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5595049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5604076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5610233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5616621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5622684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5629098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5635816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5643037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5649721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5656624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5663174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5669453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5676263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5682629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5688800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5694838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5701256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5707374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5713569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5719836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5726079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5732730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5738714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5744914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5751080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5757349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5763746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5769956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5776030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5782034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_nd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5788365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5794456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_nd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5800496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_nd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5806769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5813297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5819188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5825350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5831863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5837949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5844317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5850430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5856558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5862910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5868987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5875309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5881394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5887508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5893649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5900084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5905776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5912176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5918335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5924523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5930723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5936991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5943545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5950988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5956958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5963397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5969702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5976001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5982200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_except_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5988617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.5995092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_except_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6001290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_except_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6008396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6015309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6022147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6029304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6035924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6042848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6049222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6055396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6061618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6067698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6074084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6080126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6086316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6092485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6098396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6104155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6109999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6116156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6122171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6128409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6134552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6140628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6146801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6152725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6158512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6164534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6170392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6176131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6182199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6188087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6194200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6200063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6211734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6218214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6223996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6229904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6235945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6242025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6248236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6254808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6259886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6265457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6271451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6277351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6283387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6289559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6295443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6301280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6314556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6320645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6326762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6332741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6338588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6344751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6351323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6357627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6363809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6370017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6376434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6382649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6393800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6400025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6405811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6412064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6422473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6428592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6434585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6440669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6447547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6453860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6460004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6466392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6472722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6478888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6485005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6491129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6497093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6503133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6509815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6516789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6538104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6544470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6551068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6557736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6565935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6572615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6579332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6585316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6591501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6598432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6604889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6610937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6616964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6623043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6629113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6635480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6641712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6647781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6653761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6659879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_nll_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6666580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6672967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_nll_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6679308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_nll_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6685355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6691270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6697250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6703135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6709410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6715573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6721710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6728074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6734296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6740324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6746257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6752517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6758486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6764818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6771177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6777456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6783413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6789140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6795181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6801007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6807341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6813475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6819504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6825447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6831405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6837149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6878943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6884878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6890616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6896434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6902719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6908631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6914603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6920692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6926709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6932847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6938900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6944954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6951081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6957143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6963153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6970131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6976346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6983533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6990693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.6997447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7004268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7011185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7017963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7024080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7030173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7036642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7042909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7054365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7060404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7066150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7079744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7081982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7087862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7093518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7100000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7106305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7112461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7118424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7124524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7130999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7137112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_batch_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7143291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_batch_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7149735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_gru_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7156423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7162534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_gru_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7168768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_gru_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7174922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_lstm_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7181318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7187594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_lstm_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7193898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_lstm_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7200088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7212102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7218435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7224504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7230669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7237148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7243219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7249374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7255761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7262476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7269855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7276343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7283158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_relu_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7289745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7296002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_relu_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7308761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7315072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_tanh_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7321863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7328091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7334461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7341411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7347834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7367234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7373781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7380205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7386275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7392671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7399269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7405550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7412445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7418946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7425830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7432215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7438716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7445342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7451598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7457840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7468984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7475416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_axis.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7481629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_axis_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7487590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_axis_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7494015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_scales.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7500599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7506742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_scales_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7513105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_scales_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7519781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_zero_points.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7526997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7533930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_zero_points_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7540092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_zero_points_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7546276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7552160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_scale_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7558019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_scale_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7563993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_zero_point.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7570468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_zero_point_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7576480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_zero_point_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7582648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7589225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7595209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7601122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7607141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7622863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7629618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7635808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7642527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7648838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7654965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7661501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7667625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7673713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7680302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7686706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7692556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7698774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7705068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7711166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7717289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7723558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7729983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7735991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7746462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7752496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7758558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7764559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7770955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7776868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7782931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7789033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7795092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7801410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7807616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7814227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7820592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7827047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7833669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7840179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7846169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7852305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7858664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7864696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7870870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7877053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7883235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7889494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7895682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7901838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7908386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7914517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7920694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7931537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7937465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7943547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7949450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7960829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7966883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7972843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7979684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7985998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7992473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.7998899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8004999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8011155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8018085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8025204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8031954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8038331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8044969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8051818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8058381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8064460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8075809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8082107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8089351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8096462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8122493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8128780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8135332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8141898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8148047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8154369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8161350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8167392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8174021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8180172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8186356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8192708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8198849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8205028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8211341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8218001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8224292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8230673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8236939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8243100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8249296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8255606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8261688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8267843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8274079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8280747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8286935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8293415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8299667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8306100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8312949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8319270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8325820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8332426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8339111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8345448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8352000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8358272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8364574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8370929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8376996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8383164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8389456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8395581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8430144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8436519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8442853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8448997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8455487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8461691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8467619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8474424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8480746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8487118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8493883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8499917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8506238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8512671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8519113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8525949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8532660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8539151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8545537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8552707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8559742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8566043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8572967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8579458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8585768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8592227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8598820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8604830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8611821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8658168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8659518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8661037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8667153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8673775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8680523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8686200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8692239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8698337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8704449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8710476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8717355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8723489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8729792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8735934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8742167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8748555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8754903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8761397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8767532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8773801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8779897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8786474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8812144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8818317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8824545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8830986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8838119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8844063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8850798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8857104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8863799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8870163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8876785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8883370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8890306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8897240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8903326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8909685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8916423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8922961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8929530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8935920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8942344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8949037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8955590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8961952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8969026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8975213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8981766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8988284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.8994689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9000941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9007401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9013717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9019911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9026331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9033484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9040757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9046985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9053626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9060421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9067019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9073241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9079457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9085579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9092116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9098397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9104564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9128084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9134156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9140595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9147256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9153744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_sparse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9160100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_sparse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9166485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9172558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9178889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9185247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9191620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9197916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9204182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9211717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9217888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9234988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9241179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9278392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9284786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9290798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9297449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9303824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9309873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9316593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9322612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9328801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9334947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9341269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9347605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9354011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9360681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9366737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9373030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9379197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9385301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9391473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9397634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9403640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9414710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9421402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9427616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9438018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9461553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9467834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9483826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9489492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9496089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9502269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9508566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9515197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9525945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9532342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9538546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9544676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9550664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9557109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9563137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9569266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9575229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9581219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9587661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9593492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9599510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9605904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9611669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9617821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9623799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9629959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9636123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9642263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9648219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9654138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9660142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9667207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9673322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9679449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9685589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9691743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9698116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9704389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9710670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9716823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9722532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9728663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9734570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9740422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9746393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9753046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9762012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9769023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9775245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9781219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9791466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9797980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9804218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9810763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9817063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9823527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9830003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9836164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9842438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9848966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9854865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9861106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9867380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9873767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9880085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9886567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9892938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9899049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9905098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9911365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9917611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9924004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9929817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9936594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9942786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9949764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9956241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9962137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9968627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9974697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9981108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9987903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scaled_dot_product_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:15.9994532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0000733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scaled_dot_product_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0007066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scaled_dot_product_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0013318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0019352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0025931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0033062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0039382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0046323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0052691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0059177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0065597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0072345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0079013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0085152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0091323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0097637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0103692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0109853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0116280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0122400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0152483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0159942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0166951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0173685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0180117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0186474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0192921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0199543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0205758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0211969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0218195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0224383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0231384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0237674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0243972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0250147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0256320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0262442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0268738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0275486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0281177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0287891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0294124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0300243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0306502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0313124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0319450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0325419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0332062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0338284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0344196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0350316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0356514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0362852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0368940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0375526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0381623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0395713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0402037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0408380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0413956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0420028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0459658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0465818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0476342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0482285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0488490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0494718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0500477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0506326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0512295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0523102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0536605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0543743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0550152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0556352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0563539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0568714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0580485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0586807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0592978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0599796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0606468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0620450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0622010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0629177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0637212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0644438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0652564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0663450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0675612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0686397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0700834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0709765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0716867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0723258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0729067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0735094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0740989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0752066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0758030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0763899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0770182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0776779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0784220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0790473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0801473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0808606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0817028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0823413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0830252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0862614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0868265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0879897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0886689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0892539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0898193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0904699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0911372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0917493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0923850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0931462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0937872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0944203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0950976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0957561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0963494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0981514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0987372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0993317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.0999471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1005599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1011704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1017481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1023732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1029984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1036300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1042679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1049088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1056554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1063275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1069571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1076692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1083343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1090176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1096966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1102936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1109008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1123840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1130120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1136291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1142415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1148568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1154274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1160059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1166156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1172106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1178460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1184564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1190113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1221040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1226685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1234004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1240890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1246499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1252665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1258808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1265177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1271343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1278323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1284418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1290562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1296910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1302974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1309155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1315378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1339224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1345918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1353052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1359825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1399061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1405901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1412231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1423155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1569140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1577744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1584320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1591475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1619116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1625167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1644116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1651157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1657189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1663383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1669837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1688719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1702117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1710815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1718719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1725269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1731389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1738109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1744138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1750922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1757625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1763477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1769634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1776487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1822916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1829302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1835900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1856777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1863092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1869382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1875844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1882671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1889093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1895346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1901826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1908112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1914200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1920299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1926138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1932223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1938886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1945688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1952029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1958471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1964886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1971090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1978197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1984477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.1997506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2003578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2010087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2016297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2022899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2029118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2035172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2041501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2051873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2058768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2066292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2073276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2080557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2087328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2093823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2100093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2107007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2113765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2119971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2126700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2132574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2139032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2145208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2151344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2157836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2163668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2169831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2176014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2182362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2188312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2194455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2200810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2207039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2213707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2219792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2226271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2232185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2243582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2249383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2255377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2261328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2267315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2273722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2279789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2286107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2293023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2299133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2305413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2311596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2317888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2323884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2330242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2336266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2342437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2348414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2354652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2361059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2367126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2373851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2379731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2385530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsc_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2392095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2398094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsc_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2404425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsc_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2410768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsr_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2417485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2423864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsr_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2430258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsr_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2436729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_compressed_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2443565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2449702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_compressed_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2456387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_compressed_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2462775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_coo_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2469848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2476602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2482873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_coo_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2489207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_coo_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2495764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csc_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2502339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2508687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csc_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2515296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csc_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2521949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csr_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2528718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2535011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csr_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2542077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csr_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2548754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2596636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2946729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2953057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2959089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2965511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2972059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2978006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2983928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2990191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_and_clear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.2996858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3002939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3009474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_and_clear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3015937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_and_clear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3022456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3028269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3034451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3040497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3046966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_sampled_addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3053043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_sampled_addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3059219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_sampled_addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3065284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3071951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3078034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3084147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3090735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3096570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3102570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3109119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3116484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3124044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3130806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3138346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3171964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3179161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3186067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3192560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3199071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3205657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3213445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3219970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3226059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3232475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3238608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3245195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3251853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3258177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3264240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3270632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3276852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3283068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3289353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3295544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3301603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3308115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3314330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3321118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3327213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3333411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3339628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3345743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3352029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3358686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3365234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3371458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3377701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3383963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3390253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3397247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3403693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3409923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3422750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3429860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3436577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3442851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3449073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3455418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3461778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3468289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3474880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3481572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3487812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3494075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3500499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3506731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3513156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3519396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3525855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3532169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3539129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3545602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3552156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3558434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3564811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3571214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3577353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3583521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3589619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3596296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3602597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3608811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3614968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3621662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3628331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3634688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3640939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3647577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3653616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3659681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3665805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3671972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3678052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3684716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3690947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3697232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3703436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3709986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3716316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3727623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3734017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3740270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3746158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3752517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3758852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3764767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3770645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3777014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3783918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3789739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3795983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3802403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3808401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3814395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3830630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3832019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3833528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3839195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3845261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3851654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3864144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3870156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3876331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3882433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3888926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3894961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3900982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3907560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3914094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3920133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3926215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3932606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3938890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3944938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3951619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3958109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3965375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3972026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3978208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3984602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3991232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.3997721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4003981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4010464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4017404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4024023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4030800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4037580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4044050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4050329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4057522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4066399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4074796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4081858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4089019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4095741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4102727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4109770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4116023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4121781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4128088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4134411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4140513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4147058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4153391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4159675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4166417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4172577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4178797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4184870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4191001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4197444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4203517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4210369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4226301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4232692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4238820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4244835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4251294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4257598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4263966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4270638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4277095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4283644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4289902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4296155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4302580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4308878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4315321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4322193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4328482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4335087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4341430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4348184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4354877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4361897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4368329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4374870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4381266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4388029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4394795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4400957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4407313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4414309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4420913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4427493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4433799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4440486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4446939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4453279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4459585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4467471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4473944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4481091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4487261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4493473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4499798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4506114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4517055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4523747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4530198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4559751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4566832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4574544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4580530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4588175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4595566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4602968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4610070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4617601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4624514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4632794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4642999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4650706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4656601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4663008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4669927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4676076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4682272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4716220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4722457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4729032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4735716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4742216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4748725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4755086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4765543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4772402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4778979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4785307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4791806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4798275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4804632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4811239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4818084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4824817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4831659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4854887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4861032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4867260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4876033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4882700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4888565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4896514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4903538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4909526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4917456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4924960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4936651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4943358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4950407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4958316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4973857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4980544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4986931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4993538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.4999815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5005762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5012334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5018683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5025256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5031616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5037984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5044933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5051063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5057667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5064057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5070344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5077106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5083288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5089527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5096465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5102988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5109265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5115612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5122070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5128732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5135016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5141678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5159661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5166101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5172643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5184883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5191329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5197766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5204493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5210830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5217714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5224686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5231301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5237936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5247269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5253590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5259987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5266546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5273115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5279542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5286382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5293141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5299680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5306150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5327391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5333838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5344014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5351495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5357728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5365056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5371620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5378449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5385126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5391676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5398312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5404995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5412187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5419053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5425571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5432229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5438471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5444978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5451840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5458373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5464497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5471791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5478566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5485232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5492333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5498844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5505543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5512113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5519069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5525391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5532349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5538708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5545098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5551728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5558302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5565790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5572682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5579163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5585499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5592232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5598456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5605301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5611369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5618838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5624851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5631065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5637626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5643821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5650948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5657233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5663530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5669627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5675933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5682207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5688066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5694418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5700997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5706981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5713780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5720113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5726236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5732401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5738877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5745122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5752005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5758321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5764507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5770579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5776978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5783370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5789510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5795668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5801858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5807985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5814474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5820843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5826742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5833084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5839114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5844842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5851003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5856979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5863144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5869250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5875751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5882513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5888685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5895331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5901587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5907676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5914258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5920514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5926647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5938930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5945534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5951747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5958035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5964307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5975519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5981672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5987876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5994001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.5999879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6006011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6015530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6021852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6028248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6034433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6040727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6046924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6053346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6059648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6065643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6072930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6080860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6088047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6094546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6101316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6108583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6115220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6121064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6127357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6133967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6139707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6146062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6151833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6157787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6163877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6174163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6180723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6188226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6194409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6200510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6206342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6211821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6222163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6227978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6234001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6240153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6246301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6252347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6258308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.6264359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8661521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8667222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8673541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8679600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8685543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_to_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8692321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8698119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_to_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8704082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_to_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8710073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8716278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8722379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8728306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8733718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8748543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8754649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8760797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8767034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8773039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8782218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8788132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8794462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8800774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8806761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_for_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8813228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8819596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_for_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8825725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_for_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8831908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8842793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8849162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8855536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8896183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8902016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8908264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8914533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8921002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8926978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8933238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_storage_offset.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8939749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8946213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_storage_offset_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8952805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_storage_offset_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8958627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8965168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8971576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8977494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8983815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8989558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.8995614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_along_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9001981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9008003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_along_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9014924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_along_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9021193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9027264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9033764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9039979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9046177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9052362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9058182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9064672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9070885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9077192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9083572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9090722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9097332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9103962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9110567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9116676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9122646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9129017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9134724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9140673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9146870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9153103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9158882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9164980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9170736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9176663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9182567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9188314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9216389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9221845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9228009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9234487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9240515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9246722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9253053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9259023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9264996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9271095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9277916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9283209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9289422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9295426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9329231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9336326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9342326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9348393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9354585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9361049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9367163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9373308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9379889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9385791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9391961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9398100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9408480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9414574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9420632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9426575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9433063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9439088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9445137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9450753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9456406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9462641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9468719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9475848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9482043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9488191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9494315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9500290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9506308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9531951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9537672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9544121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9550320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9556482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9562928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9569267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9575592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9581912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9588722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9596501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9611142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9617162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9625090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9630552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9637117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9643339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9649313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9655211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9661364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_padded_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9667570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9673853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_padded_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9679963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_padded_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9685977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9691951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9698300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9703918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9709877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9716055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9722117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9728105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9733942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9740366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9746769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9753010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9758995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9764915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9771072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9776945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9783063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9788856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9795262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9801259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9807441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9813164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9819352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9825292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9831255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9837747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9844059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9850668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9856698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9862748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9869434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9875971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9882196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9888391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9895060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9901455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9907505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9918782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9924979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9932384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9938528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9944847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9951122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9957250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9963321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9969529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9975741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9981959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9988024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:16.9994664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0000836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0006979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0013542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0019916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0026225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0032975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0039219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0045435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0051491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0057657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0063975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0070763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0076898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0083151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0089558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0096512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0102831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0109376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0116273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0122754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0128633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triplet_margin_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0135146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0146513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triplet_margin_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0152480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triplet_margin_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0158518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0165224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0171013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0176999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0183029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0194046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0200083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0206228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0212497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0218712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0234338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0235483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0240567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0247224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0252835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0259113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0265365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0271541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0277475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0283622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0289639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0295608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0301504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0307463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0313628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0320128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0326193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0331925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0337805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0343802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0350144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0356456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0386250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0392550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0398653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0404495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0410693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0416900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0422762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0428992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0435465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0449502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0456062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0462320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0468594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0475235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0481437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0487604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0493808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0500172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0506351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_dense_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0513048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0519757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_dense_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0525464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_dense_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0531851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0538186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0544241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0549864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0557181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0563267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0569418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0575446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0581623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0588602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0596369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0603525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0609434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0615203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0650087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0656111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0667382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0668421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0674437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0680800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0686750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0692815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0698865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0704854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0710946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0717312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0723655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0729935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0736628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0742807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0749328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0788304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0794730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0801492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0807451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0814098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0820432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0826788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0833471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0840012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0846315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0852712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0859111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0865703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0872472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0879579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0886389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0893871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0900113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0906786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0913617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0920022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0926612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_with_sizes.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0933259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0939361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_with_sizes_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0945941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_with_sizes_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0952282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0958645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0964651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0971461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0977805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0984023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0990219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.0996581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1002827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1009262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1016389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1022944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1028866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1035178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1041611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1048199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1054550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1061065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1067553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1074078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1080528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1086923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1093129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1099368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1105522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1111847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1118331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1124963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1131633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1137663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1143830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1149932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1156484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1162724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1168862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1177016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1184037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1191479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1198693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1205706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1212529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1219608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1226623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1259430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1266063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1272262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1279329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1285386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1291511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1297922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1304335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1310936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1317234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1323992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1330463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1336917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1343192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1349425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1355862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1362018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1368452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1374791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1380971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1387688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1393901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1400280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1406618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1413955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1420192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1426257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1432995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1439308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1445619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1451867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1458114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1464307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1470799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1477189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1483731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1490522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1497021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1503080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1509466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1515731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1522275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1528551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1534980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1541653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1548245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1567763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1573704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1580324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1586662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1593087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1599788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1606359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1613089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1619410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1626205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1632677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1638958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1645905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1652356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1659282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1665824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1678341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1685789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1692577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1699877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1706913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1714783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1721104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1728994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1736208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1742798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1750278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1765398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1771888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1778778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1785147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1796019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1802316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1809197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1820043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1826247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1832781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1839750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1845833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1852054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1881229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1887474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1893689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1900465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1907438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1913773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1920690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1926865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1933175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1940051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1946378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\value_selecting_reduction_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1953028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1960098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\value_selecting_reduction_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1966886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\value_selecting_reduction_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1973126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1979516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1985615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.1991453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2002215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2008933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2015115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2021125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2027173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2033578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2039845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2046175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2052747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2059359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2065852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2072305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2078577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2084328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2090580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2096746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2102869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2110805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2117479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2124276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2130857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2136892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2143850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2151013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2157473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2165567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2170501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2176920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2183329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2189703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2196204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2202302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2208638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2214973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2220967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2227097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2233728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2240408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2246964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2252995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2259666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2265946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2272618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2279061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2285816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2291940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2298161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2304028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2310798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2316989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2323031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2329479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2335522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2341583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2347970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2354220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2360177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2366114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2372503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2379587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2385878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2392554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2398915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2404987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2411162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2418055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2425841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2461393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2467604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2473969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2480440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2486802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2493238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2499250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2505638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2512622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2518747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2525967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2532116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2538385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2544647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2551116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2557199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2563384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2569455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2575517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2581903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2588150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2594911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2601741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2609082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2616329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2623500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2630015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2637118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2643545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2649499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2661454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2671946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2678136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2683975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2690370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2701172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2707625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2714387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2720852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2727123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2733577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2739986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2746587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2753077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2759744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2766334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2772813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2779376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2785934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2792535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2798853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2805067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2817863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2824426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2830993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2837276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2843644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2849786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2856706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2863316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2869761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2876204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2882822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2889284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2895788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2902109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_batch_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2915136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2921392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_batch_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2927427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_batch_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2933877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2940747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2946983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2953363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2960092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2966727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2973067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2979912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2986459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2992299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.2998672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3005051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3011603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3018491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3030484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3037139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3043994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3050938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3056782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3063313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3071021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3077591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3084068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3090573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3097337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3103305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3111405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3118152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3124338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3130936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3137190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3143821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3150306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3156667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3163206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_tensor_metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3170138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3176455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3182672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_tensor_metadata_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3189089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_tensor_metadata_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3195897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_full_precision.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3202209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3215087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_full_precision_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3221195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_full_precision_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3227385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_reduced_precision.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3233917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3240302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_reduced_precision_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3246781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3253362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3259667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3265898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3272304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3278028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3283981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3290627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3296937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3303520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3337235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3343193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3349774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3356199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_no_update.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3363832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3370564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_no_update_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3382194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_no_update_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3387019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3404609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3411309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3418675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3426565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3433246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3440697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3447413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3453659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3460912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3467109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3473796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3480250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3486284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3492762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3499280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3506220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3512738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3519058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3525612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3531674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3537711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3544337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3551384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3557637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3563615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3569770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3592984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3599408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3605783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3613331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3620820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3626417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3633175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3639397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3646994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3657648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3663693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3670359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3676898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3683235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3689357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3695439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3701770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3708499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3715214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3721318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3727629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3733888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3739924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3746283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3752923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3759359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3765949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3772207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3778198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3784710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_choose_qparams_per_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3791924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3802774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_choose_qparams_per_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3808610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3814945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3821467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3827540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3834203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3840464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3846529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3852577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3859083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3865189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3871522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3877605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3884525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3890743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3896791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3903237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_compute_linear_combination.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3932078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3938525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3944938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_compute_linear_combination_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3951203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_compute_linear_combination_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3957799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3963757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3970045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3976747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3983041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3989893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.3996479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4003176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4008956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4015599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4022011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4028137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4034994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4041676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4048368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4054546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4060989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4067653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4075243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4081609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4087734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4094180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4101329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4107938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4115542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4122648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4129891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4137379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4143485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4150000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4156703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4163164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4169677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4176369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4182609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4189362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4195339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4205748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4212359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4219554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4225019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_double_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4232173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4238607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_double_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4244713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_double_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4250893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4286770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4292847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4299199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4305604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4312139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4318532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4325246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4331496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4337968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4344023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4349998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_and_resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4357091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4363195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_and_resize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4369534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_and_resize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4376852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4382857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4388575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4394883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4412031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4418325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4424502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4430671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4437510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4443456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4449624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4455909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_search.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4462170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4468680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_search_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4475133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4481640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4487778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4494273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4500326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4506781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4513535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4519740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4526485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4532653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4538923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4545380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4552205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4559042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4565319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4571499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4577757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4584214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4590977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4598152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4604412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4610633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_ctc_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4618054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_ctc_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4625111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_init_dropout_state.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4632732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4640216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4647490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_init_dropout_state_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4653373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4660937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4668394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4676560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4682624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4689849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4699200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4711083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4717143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4723308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4730473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4742727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4744525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4749769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4755940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4762450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4768883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_clear_plan_cache.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4776203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4782364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_clear_plan_cache_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4788345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4794968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4801672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4807838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4814437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4820999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4828053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4835012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4842071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4849384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4857430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4864577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4871364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4884807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4886002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4892130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4898804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4904979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4911130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4917779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4923909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4930544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4936884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4943331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_debug_has_internal_overlap.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4969047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4975259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_debug_has_internal_overlap_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4981281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_debug_has_internal_overlap_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4987361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4993036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.4999202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5005220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5010940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5017023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5023112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5029690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5035877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5041743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5048111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5054792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5060593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5066815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5073504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5079696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5085677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_matmul_4bit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5092222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5098398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5104533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5110825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5117293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5128489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5135641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5143156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5151534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5158949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5165510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5172781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5180129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5187121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5194499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5201978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5209180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5216310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5223226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5229703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5237018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5243818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5249992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5255841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5265286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5271679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5278168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5284537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5291011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5297064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5303629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5310120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5317009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5323546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5330132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5336589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5343190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5349774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5356446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5362838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5369418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5375444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5381951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5388013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5394310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5400940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5407739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5414369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5420665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5427234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5434005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5440477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_sparse_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5447356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5454290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5460700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5467107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_affine_quantized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5474263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5481220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5487678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_affine_quantized_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5494010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_affine_quantized_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5500558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_per_channel_affine_quantized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5507980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5514624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5521517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5528184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5534469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5541313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5547436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5554264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5560582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5567267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5573857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5580942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5587807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5594571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5601551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5608257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5615033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5621926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5630158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5637618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5644945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5652357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5658935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5670121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5689506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5696105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5702995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5709748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5716355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5723182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5733959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5741774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5748654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5755872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5762818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5769645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5776046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5787530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5793977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5800961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5808176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5814745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5821226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5827495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5834230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5841351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5848134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5853919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5860409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5866577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5873293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5879888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5886180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5892752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5899579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5905995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5912969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5919950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5926855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5933748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5940203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5947475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5954364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5961174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5967513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5974406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5980671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5987026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.5993848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6000674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6007161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6013242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6019942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6026472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6032986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6039670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6046574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6081636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6088106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6094896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6101585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6108667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6116030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6122490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6129449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6136594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6144548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6151991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6158866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6165538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6172739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6179207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6185844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6192388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6199061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6206131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6212553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6218859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6225275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6231760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6238457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6244843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6251419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6258079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6264423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6271176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6277560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6284085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6290238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6296732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6303940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6310476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6316768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6323137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6330023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6336634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6343556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6350010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_min_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6356695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_min_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6363110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6369980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6387732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6394186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6400600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6407228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6413837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6420368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6426621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6433112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6440041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6448200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6455669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6462980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6470200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6477538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6484879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6491870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6498819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6505102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6511815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6517964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6524398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6530647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6536881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6543333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6549975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6556246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6564123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6572267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6578147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6626992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6634328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6641087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6647895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6654570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6661239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6667519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6674288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6680423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6686463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6693004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6699108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6705318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6711652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6717917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6724436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6730589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6736900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6743087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6749338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6755842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6762130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6768233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6774387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6780502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6787138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6793771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6807191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6809941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6816087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6822361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6828935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6835163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6841159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6847457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6853677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6859989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6866183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6872300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6878310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6884404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6890831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6897448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6903607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6909704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6916367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6922396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6928422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6934817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6941012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6947206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6953700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6959853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6965850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6972353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6978348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6984698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6990866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.6997390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7004380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7011110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7018064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7025359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7032546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7039657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7046889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7053659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7060692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7067234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7073946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7080633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7086956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7093086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7099266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7105468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7112088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7122726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7129030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7135132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7141368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7147874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7154148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7160321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7173941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7180163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7186543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7192746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7199524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7205442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7211460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7218124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7224335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7230801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7237354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7295919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7302783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7309029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7315311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7321526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7327695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7334924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7340459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7346584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7353051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7359161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7582985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7589272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7595893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7602856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7609053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7615460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7622171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7628382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7634799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7641667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7648899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7656056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7663521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7670815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7678105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7685497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7692523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7699571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7706082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7712681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7723960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7730193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7736394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7742596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7748996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7755228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7761844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7773724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7780169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7786426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7793130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7799390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7805654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7811956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7818190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7824840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7831064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7837247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7843338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7849524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7856100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7862317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7868487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7874912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7881198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_async.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7887343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7893804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_async_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7899821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_async_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7905987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7912628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7926191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_scalar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7932487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_scalar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7938992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7945604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7952058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7958834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7965123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7972103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7978663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7985137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7991587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.7998081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8004272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8010849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8017701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8024023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8030434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8037271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8043711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8050048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8056508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8062700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8069282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8075622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8081923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8088857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8095035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8107742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8488811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8495143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8501490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8507813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8514403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8521372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8528017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8534537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8540984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8547278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8558789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8565565Z 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-07-24T05:24:17.8572098Z 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-07-24T05:24:17.8583129Z 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-07-24T05:24:17.8589786Z 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-07-24T05:24:17.8596403Z 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-07-24T05:24:17.8602563Z 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-07-24T05:24:17.8609153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8615696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8622050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8628536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8635032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8641507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8648371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8655611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8662439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8669167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8675560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8682019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8688113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8694435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8700677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8706933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8713307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8719665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8725756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8731716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8737588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8744084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8749773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8756158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_gather_sparse_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8762959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8768963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_gather_sparse_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8775120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_gather_sparse_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8781403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8787480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8793983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8800348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8806542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8813183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8819530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8825903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8832101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8838214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8844055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8850075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8856516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_compatible_shallow_copy_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8862899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8868843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8875147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8881127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_same_storage_numel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8887583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8893523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_same_storage_numel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8899514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_same_storage_numel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8905797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_bin_edges.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8912538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8918730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8925386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_bin_edges_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8932167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_bin_edges_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8938463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_cts.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8945091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8951554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8957968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8964449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8970551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8977309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8983443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8989962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.8996634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9002933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9009440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9015605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9021990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9028329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9034780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9041187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9047510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9053160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9059634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9065878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9072117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9078308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9084653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9090659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9096939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9103433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9109752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9115897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9122774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9128955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_all_true.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9135523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9141633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_all_true_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9147970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_all_true_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9154883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_any_true.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9161636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9167959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_any_true_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9173923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_any_true_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9180348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9186568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9192772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9198568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9204826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_jagged_to_padded_dense_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9211095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9217598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9223722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9229869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9236207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9242473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9248252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9254300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9260461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_check_errors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9266954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9273518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_check_errors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9279215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_check_errors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9285248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9291876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9298244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9304411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9310642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9316758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9322773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9328822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9335008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9341729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9347782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9353999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9360093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9366231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9372376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9378804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9385190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9391560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9397624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9403729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9409724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9416001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9422532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9428769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9435087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9441841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9448101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9454294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9461213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9468204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9475947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9482646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9489677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9496762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9504080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9511093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9517747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9539885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9546387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9552542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9558826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9564867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9571042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9577346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9583726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9589885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_local_scalar_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9596190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9602208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9608314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_local_scalar_dense_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9614360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_local_scalar_dense_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9631403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9632633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9633769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9639343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9645773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9652488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9658874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9666787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9673846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9681102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9688028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9695854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9702853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9709962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9716869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9723161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9729615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9735760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9742045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9748530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9754757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9761256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9767375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9773251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9779224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9785281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lu_with_info.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9791873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9797934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lu_with_info_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9803983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lu_with_info_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9810303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dep_token.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9824447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9830468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dep_token_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9836634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dep_token_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9842638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9849172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9855189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9861912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9868005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9874136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9880432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9886752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9899985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9902438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9909042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9915439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9939339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9946320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9952803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9958789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9965616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9971589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9990845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:17.9997226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0003482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0009564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0015991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0022576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0028666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0034735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0040889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0047070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0053524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0060202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0066531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0073655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0080033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0100207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0106558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0113082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0119709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0126050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0132376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mixed_dtypes_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0138681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0144923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mixed_dtypes_linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0151555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mixed_dtypes_linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0158966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0166282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0173000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0180042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0186869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0194355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0201344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0237042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0243475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0249941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0256628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0262587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0268594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0275118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0281923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0288117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0294345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0303046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0309521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0316130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0322315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0328431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0334685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_no_training.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0341144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0347233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0353979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0360379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0367289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0373707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0379899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0386222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0393141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0398847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0404955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0411234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0417057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0423642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0430597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0436716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0442489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0448523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0454289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0460912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0467859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0474421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0480839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0487419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0493628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0500336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_and_nested_example.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0507321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0513575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0520083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0526553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0533081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0540164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0546504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0553044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0559382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0565725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0579824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0586220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_jagged_dummy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0592742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_jagged_dummy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0599160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0605589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_lengths.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0612402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_lengths_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0618452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_lengths_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0625039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_max_seqlen.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0631446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_max_seqlen_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0637718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_max_seqlen_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0644113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_min_seqlen.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0651113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_min_seqlen_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0656929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_min_seqlen_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0663735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_offsets.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0671057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_offsets_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0677815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_offsets_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0684137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_ragged_idx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0690676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_ragged_idx_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0696647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_ragged_idx_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0702909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0709326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0716274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0722600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0729110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0735238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0741365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0747478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0753827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0760193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_select_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0766414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_select_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0772514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_sum_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0778777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_sum_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0785222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_sum_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0792971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0799601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0805865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0812378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0818622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0824977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0831647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0837878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0844289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0850438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0856786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0863276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_tensor_list.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0869780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0876129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0882483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0889261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0895754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0902047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0908187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0914670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0920837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0927018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0933255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_storage_offsets.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0940030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0946191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0953278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0959485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_strides.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0966211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0972360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_strides_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0978577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_strides_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0984828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0991042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.0997783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1005209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1011533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1017831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1028235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1034757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1041271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1047835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1053989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1060398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1067241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1073989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1080590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1087063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1093490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1099802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1106257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1113143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1119947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1126314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1132554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1138989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1145055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1151365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1158245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_spatial_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1165266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1172504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_spatial_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1179457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1186094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1191897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1197932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1204014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1210129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1216763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1223090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1229324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1236429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1242401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1248709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1254991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_padded_dense_to_jagged_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1261155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1267353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1273862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1280147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1286319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1292597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1298646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1304433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1310834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1317277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1323215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1329002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1335150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_packed_sequence.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1341608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1347692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_packed_sequence_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1354100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_packed_sequence_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1360191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1366450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1372376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1387959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1394221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1400383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1406781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1413173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1419281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1425372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1431650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1437808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1443879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1450395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1456394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1462396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1468726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1475270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1481476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1487759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1494145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1500444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1506528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1512897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1519259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1525558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1531851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1537990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1571503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1577434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1583784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_propagate_xla_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1595212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1601553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_propagate_xla_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1607597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_propagate_xla_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1614184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_remove_batch_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1645023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1651381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_remove_batch_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1657501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_remove_batch_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1664479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1670899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1678160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1685487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1691838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1698268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1704734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1711400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1718264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1724501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1730361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1736909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1743312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1749396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1755583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1761932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_from_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1768675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1774864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_from_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1781226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_from_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1787506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1793999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1800107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1806475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1812668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1818770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1825031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1831093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1837373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1843613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1850118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1856127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1861921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1868007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1874513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1880519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1887217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1893528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1899780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1905862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_saturate_weight_to_fp16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1912276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1918316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_saturate_weight_to_fp16_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1924321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1930597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1937077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1943634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1980117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1986536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1993456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.1999891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2006556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2013135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2019893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2026935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2033671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2040245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2046813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2053505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2060361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2067076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2074021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2080629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2087201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2114229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2120874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2127480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2134071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2140482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2147292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2154024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2160780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2168046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2175457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2183086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2191044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2198446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2205707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2212508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2219128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2225639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2232484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2238825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2245308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2252030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2258710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2265041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2271490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2278319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2284777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2291147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2297325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_grouped_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2303648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2310647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_grouped_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2316948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_grouped_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2323000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2329230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2335400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2341568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2347876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2354530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2360990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2367166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2373239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2379528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2385941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2392043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_shape_as_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2398285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2404072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_shape_as_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2409776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_shape_as_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2415773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2422773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2429099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2435447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2441574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2447681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2454040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2460241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2466678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2473129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2479406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2485625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_draw.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2491983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2498025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_draw_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2518925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_draw_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2525642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_ff.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2531729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2537959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_ff_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2544242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_ff_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2550686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_initialize_state.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2557439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2563931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_initialize_state_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2570124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2576452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_scramble.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2583089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2589565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_scramble_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2596085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_scramble_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2602309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2608290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2614849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2621106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2627196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2634449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2640812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2647379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2653673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2660337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2666864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2673741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2680528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2686807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2693033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2699868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2706799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2714275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2721081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2728377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2735456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2742584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2769363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2776027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2782107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2788502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2795032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2800919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2807088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2813568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2820029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2826480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2833207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2839415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2845556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2851858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2858307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2865019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2871374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2877731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2883965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2890509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2896918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2903241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2909371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2916089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2922377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2928660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2935363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2941581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2948328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2954798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2961027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2967514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2974351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2980602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2987169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.2993682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3000483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3007222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3013857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3027977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3034252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3040946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3047348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_prod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3053632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_prod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3060032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3066620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3073198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_sum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3079733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_sum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3086244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3093317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3099727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3106155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3112655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3119122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_backward_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3125944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3132430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3138901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3145469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3152086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3158660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3165282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3172365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mask_projection.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3179815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3186929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mask_projection_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3193898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mask_projection_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3200178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3207013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3213202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3219525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3225668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3231944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3238462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3244913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3250884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3257035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3263253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3269892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3276151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3282608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3288928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3295170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3301572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3308069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3314458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3321474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3327843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3334058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3340320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3346758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3353228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3359735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3365992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3372548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3378814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3384855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3391166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_tile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3397889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3404060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_tile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3410635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3416889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3423570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_backward_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3430352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3437330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_backward_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3443643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3450154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3456920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3462998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3469599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3476088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sparse_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3482833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3489264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sparse_matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3495881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sparse_matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3502206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3508675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3520091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3526433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3533305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3539957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3546470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3552884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3559720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3565817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3572031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3578309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3584230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3600186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3606481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3612965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3623211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3627982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3634171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3640135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3646157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3652121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3658410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3664778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3671098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3677819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3684023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3690711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3696829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3703167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3709579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3716110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3752587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3758595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3764924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_ambiguous_defaults.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3771336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3777658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_ambiguous_defaults_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3784038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_ambiguous_defaults_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3790748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3797390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3803841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3810225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3816885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3823579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3830574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3837130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3844247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3851046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3857480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3864051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3871322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3877526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3884047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_check_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3891165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3897422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_check_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3903989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_check_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3911450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_functorch_fallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3918205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3924632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3931530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_functorch_fallback_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3937956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_functorch_fallback_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3944523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_filled_intlist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3951767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3958142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3964636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_filled_intlist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3972289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_filled_intlist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3979200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_floatlist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3985920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3992960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.3999207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_floatlist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4005711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_floatlist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4012039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_intlist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4018694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4025132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4031740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_intlist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4038429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_intlist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4044683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_parallel_materialize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4051357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4057956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_parallel_materialize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4075334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_parallel_materialize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4076753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_serialization_subcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4078033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4083942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_serialization_subcmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4090163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_serialization_subcmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4096338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_string_default.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4103282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4109517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_string_default_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4115635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_string_default_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4122144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_warn_in_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4134123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4140447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_warn_in_autograd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4147022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_warn_in_autograd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4154054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4160964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4167477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4174189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4180819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4201001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4207321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4213561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4219734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4226359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4233628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4240049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4246342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4252532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4259222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4265905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4272523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4278837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4285502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4292077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4298731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4305902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4312834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4319363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4325937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4332766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4339106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4345233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4351847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4358292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4364450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4371308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4377456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4383575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4389886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4396184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4402519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4408325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4414522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4420256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4426282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4432739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4438619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4445195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4451116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4457306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4463884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4469836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4476143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4482557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4489042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4495327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4502053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4508415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4515065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4521505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4527951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4547716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4554036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4560509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4567355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4573576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4579982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4586609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4593562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4599876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4606763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4613127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4619778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4626231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4632548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4639036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4645689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4652072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4658545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_semi_structured.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4665285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4671927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_semi_structured_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4678182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_semi_structured_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4685498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4692816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4700297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4707815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4714521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4721054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4727263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4734768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4741090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4747853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4754827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4761439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4767652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4774272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4784791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4790643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4796817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4802819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_multi_head_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4809117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4815341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4821448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_multi_head_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4827552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_multi_head_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4834115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_scaled_dot_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4840627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4846861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4852954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_scaled_dot_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4859077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4865473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4871221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4877261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4883592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4889872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4895972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4902309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4908561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4915026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4921100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4927135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4933755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4940471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4946312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4953270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4960117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4966869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4973223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4979413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4985306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4991861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.4998439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5004683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_put_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5010995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_put_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5017547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5024535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5031047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5037583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5043958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5050906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5057362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5063756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5069923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5076560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5082604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5128267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5134611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5141437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5148450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5163282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5169861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5176289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5183287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5195118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5201762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5240354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5246882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5253510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5259723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5266004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5272744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5279115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5285322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5291688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5298032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5304978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5312313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5318066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5324466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5331068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5337544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5344010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5350612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5357231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5363658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5369829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5376361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5382497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5388663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5395217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5401345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5407785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5414938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5421345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5427923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5434325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5440721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5447361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5453514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5460567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5466924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5473545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5479895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5486452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5493109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5499436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5505659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5512316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5519133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5526023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5532590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5568210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5574506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5581081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5587708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5594566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5601571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5608084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5614411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5621062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5627543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5634039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5640393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5646671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5652992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5659472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5666594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5673280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5679731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5686346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5693790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5701189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5707727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5714773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5722011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5729233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5735796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5742330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5748947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5755587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5762009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5768559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5774665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5781522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5787666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5794060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5800596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5806927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5813076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5819496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_compressed_sparse_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5825877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5832407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5838915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5845517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5851944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5859037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5865941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5872375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5879024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5885508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5891688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5898147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5904363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5911272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5918030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5936724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5942683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5949236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5955819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5961985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5968509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5975156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5981295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5987507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.5994620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6001829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6008153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6014535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6020708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6026656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6033950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6040195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6046547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6052520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6058857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6064928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6071119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6078642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6084718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6090617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6096882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6103327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6109494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6116109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6122739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6129732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6136053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6142501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6149026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6155664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6162300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6169035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int8pack_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6175402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6181685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int8pack_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6187537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int8pack_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6194453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6201653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6208397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_differentiable_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6215169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6222071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6228897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6235654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6242851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6250087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6257053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6263940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6270308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6277102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6283702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6290610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6297092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6303922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6310364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6317209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6323117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6329798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_linear_prepack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6336317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6342505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_linear_prepack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6348893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_linear_prepack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6355783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6362313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6369050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6375428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-24T05:24:18.6389810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PadNd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6395731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6414641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6420579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelFuture.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6426823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelNative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6432711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelOpenMP.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6438831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PTThreadPool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6444812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PythonTorchFunctionTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6451350Z creating build\bdist.win-amd64\wheel\torch\include\ATen\quantized 2025-07-24T05:24:18.6454973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\QTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-07-24T05:24:18.6460762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\Quantizer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-07-24T05:24:18.6467011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\record_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6474001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6500915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6515970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ROCmFABackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6522467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SavedTensorHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6528388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6534152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6540399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6552511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SDPBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6559567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SequenceNumber.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6571299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6576945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6583057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6589914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6596563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6602107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\StorageUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6608302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6613787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6620028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorGeometry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6625924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6633000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6639874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIteratorInternal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6646017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6651990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorNames.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6658094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6664030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6670224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorSubclassLikeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6676299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6682624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalPythonObjects.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6688383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6707834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TracerMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6714269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TypeDefault.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6720328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6726272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6738842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\VmapGeneratedPlumbing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6761301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6767158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtilsMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-24T05:24:18.6773657Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu 2025-07-24T05:24:18.6777473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-24T05:24:18.6783311Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu\detail 2025-07-24T05:24:18.6786688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail\XPUHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu\detail 2025-07-24T05:24:18.6792606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-24T05:24:18.6798078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-24T05:24:18.6815675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-24T05:24:18.6821086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-24T05:24:18.6827199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-24T05:24:18.6840949Z creating build\bdist.win-amd64\wheel\torch\include\c10 2025-07-24T05:24:18.6844891Z creating build\bdist.win-amd64\wheel\torch\include\c10\core 2025-07-24T05:24:18.6848296Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\alignment.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6853954Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Allocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6860042Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\AutogradState.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6865417Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6883054Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CachingDeviceAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6888702Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CompileTimeFunctionPointer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6894535Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ConstantSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6900637Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Contiguity.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6906429Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CopyBytes.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6912257Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CPUAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6918072Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultDtype.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6923774Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6929377Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6935187Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceArray.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6941048Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6946813Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6961831Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKey.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6963376Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKeySet.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6970092Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DynamicCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6975990Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.6993985Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7000119Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GradMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7006712Z creating build\bdist.win-amd64\wheel\torch\include\c10\core\impl 2025-07-24T05:24:18.7010618Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\alloc_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7017101Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\COW.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7023024Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\COWDeleter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7029555Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\DeviceGuardImplInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7046981Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\FakeGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7052786Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\GPUTrace.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7058724Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\HermeticPyObjectTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7064688Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\InlineDeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7071553Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\InlineEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7077858Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\InlineStreamGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7084032Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\LocalDispatchKeySet.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7090145Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\PyInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7095907Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\PyObjectSlot.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7101850Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\PythonDispatcherTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7108192Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\SizesAndStrides.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7114478Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\TorchDispatchModeTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7120585Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\VirtualGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-07-24T05:24:18.7126748Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\InferenceMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7132379Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7138804Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7145262Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\OptionalRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7151205Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\PyHandleCache.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7156882Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7163164Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7168834Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\RefcountedDeleter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7174400Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SafePyObject.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7180232Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7197326Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7203690Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7209767Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7215383Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7221062Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7226593Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StreamGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7232491Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymbolicShapeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7237956Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymBool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7243493Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymFloat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7249023Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymInt.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7254653Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymIntArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7260775Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7279038Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7287067Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7293882Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\thread_pool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7300208Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7306252Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\WrapDimMinimal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-24T05:24:18.7313177Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda 2025-07-24T05:24:18.7317073Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAlgorithm.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:24:18.7323120Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:24:18.7329015Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDACachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:24:18.7335294Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertion.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:24:18.7352397Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:24:18.7358161Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:24:18.7363774Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:24:18.7404937Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:24:18.7410235Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:24:18.7416149Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:24:18.7421937Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMathCompat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:24:18.7427877Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMiscFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:24:18.7433196Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:24:18.7438730Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\driver_api.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-24T05:24:18.7454613Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda\impl 2025-07-24T05:24:18.7458214Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl\CUDAGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda\impl 2025-07-24T05:24:18.7464078Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl\CUDATest.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda\impl 2025-07-24T05:24:18.7469406Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl\cuda_cmake_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda\impl 2025-07-24T05:24:18.7475131Z creating build\bdist.win-amd64\wheel\torch\include\c10\macros 2025-07-24T05:24:18.7478534Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\cmake_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-07-24T05:24:18.7484161Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-07-24T05:24:18.7489126Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-07-24T05:24:18.7495028Z creating build\bdist.win-amd64\wheel\torch\include\c10\metal 2025-07-24T05:24:18.7498284Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\atomic.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:24:18.7503974Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\common.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:24:18.7509264Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\expm1f.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:24:18.7514849Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\indexing.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:24:18.7521039Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\random.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:24:18.7526303Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\reduction_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:24:18.7537410Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\special_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:24:18.7544130Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-24T05:24:18.7550389Z creating build\bdist.win-amd64\wheel\torch\include\c10\mobile 2025-07-24T05:24:18.7553949Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-07-24T05:24:18.7559616Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUProfilingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-07-24T05:24:18.7565408Z creating build\bdist.win-amd64\wheel\torch\include\c10\test 2025-07-24T05:24:18.7568968Z creating build\bdist.win-amd64\wheel\torch\include\c10\test\util 2025-07-24T05:24:18.7572698Z copying build\lib.win-amd64-cpython-39\torch\include\c10\test\util\complex_math_test_common.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\test\util 2025-07-24T05:24:18.7579327Z copying build\lib.win-amd64-cpython-39\torch\include\c10\test\util\complex_test_common.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\test\util 2025-07-24T05:24:18.7585418Z copying build\lib.win-amd64-cpython-39\torch\include\c10\test\util\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\test\util 2025-07-24T05:24:18.7592249Z creating build\bdist.win-amd64\wheel\torch\include\c10\util 2025-07-24T05:24:18.7595769Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AbortHandler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7601653Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\accumulate.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7607785Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AlignOf.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7613702Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ApproximateClock.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7630677Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7636173Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7642081Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7648427Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7653779Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7659514Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7665131Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7670911Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7676878Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bit_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7682530Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\C++17.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7688102Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\CallOnce.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7693995Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7700289Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7707473Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7713987Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ConstexprCrc.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7720367Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7726423Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DeadlockDetection.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7733582Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Deprecated.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7740206Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7746474Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DynamicCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7763840Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Enumerate.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7769806Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\env.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7775359Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\error.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7780585Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Exception.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7786866Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7793171Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7799068Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FbcodeMaps.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7804741Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Flags.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7810378Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\flat_hash_map.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7817329Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float4_e2m1fn_x2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7823303Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fn-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7840047Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fn.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7845881Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fnuz-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7852009Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7857813Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7864246Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7870619Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2fnuz-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7876554Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7883006Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e8m0fnu-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7889154Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e8m0fnu.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7906941Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_fnuz_cvt.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7913014Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\floating_point_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7918820Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FunctionRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7925170Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Gauge.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7930976Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\generic_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7936931Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7942698Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7948721Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\hash.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7954303Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\IdWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7980471Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\int128.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7986442Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\IntrusiveList.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7992811Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\intrusive_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.7999477Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\irange.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8016496Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Lazy.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8023146Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\LeftRight.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8028347Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\llvmMathExtras.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8035466Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Load.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8041232Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Logging.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8047292Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\logging_is_google_glog.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8053251Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\logging_is_not_google_glog.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8059116Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MathConstants.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8065322Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MaybeOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8071627Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Metaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8077673Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\NetworkFlow.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8105191Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\numa.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8110928Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Optional.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8117126Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\OptionalArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8123548Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\order_preserving_flat_hash_map.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8130543Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overflows.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8136942Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overloaded.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8142862Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ParallelGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8148689Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\python_stub.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8154379Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint32.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8160039Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8165478Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint2x4.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8170948Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint4x2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8187418Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8192866Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Registry.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8199012Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\safe_numerics.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8204989Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ScopeExit.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8212196Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Semaphore.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8218345Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\signal_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8224720Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallBuffer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8230701Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8237795Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\sparse_bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8244192Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ssize.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8249946Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\static_tracepoint.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8256112Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\static_tracepoint_elfx86.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8275319Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strides.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8281117Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\StringUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8286846Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8292693Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_view.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8299267Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strong_type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8305875Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Synchronized.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8311648Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\tempfile.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8317640Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8323846Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocalDebugInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8329540Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\thread_name.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8335415Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8340999Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8347103Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8353459Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeIndex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8359729Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeList.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8366909Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeSafeSignMath.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8373054Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8378725Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unicode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8384190Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\UniqueVoidPtr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8390340Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unroll.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8396281Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8402160Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounterDynamicBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8408167Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\win32-headers.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-24T05:24:18.8426231Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu 2025-07-24T05:24:18.8441609Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\impl 2025-07-24T05:24:18.8445289Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl\XPUGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu\impl 2025-07-24T05:24:18.8451266Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test 2025-07-24T05:24:18.8454721Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test\impl 2025-07-24T05:24:18.8458015Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl\XPUTest.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu\test\impl 2025-07-24T05:24:18.8463494Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-24T05:24:18.8469442Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUDeviceProp.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-24T05:24:18.8475626Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-24T05:24:18.8491820Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-24T05:24:18.8497431Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-24T05:24:18.8503350Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-24T05:24:18.8509732Z creating build\bdist.win-amd64\wheel\torch\include\caffe2 2025-07-24T05:24:18.8513222Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\core 2025-07-24T05:24:18.8516528Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-07-24T05:24:18.8522475Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\macros.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-07-24T05:24:18.8528220Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\timer.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-07-24T05:24:18.8534658Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\perfkernels 2025-07-24T05:24:18.8538513Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels\batch_box_cox_vec.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\perfkernels 2025-07-24T05:24:18.8544398Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\perfkernels 2025-07-24T05:24:18.8550046Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels\embedding_lookup_idx.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\perfkernels 2025-07-24T05:24:18.8555913Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\serialize 2025-07-24T05:24:18.8559266Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\crc_alt.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-24T05:24:18.8566091Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\file_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-24T05:24:18.8571912Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\inline_container.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-24T05:24:18.8611380Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\in_memory_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-24T05:24:18.8628440Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\istream_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-24T05:24:18.8634568Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\read_adapter_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-24T05:24:18.8640525Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\versions.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-24T05:24:18.8646718Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils 2025-07-24T05:24:18.8650386Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\fixed_divisor.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-07-24T05:24:18.8656245Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\proto_wrap.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-07-24T05:24:18.8662138Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-07-24T05:24:18.8668594Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils\threadpool 2025-07-24T05:24:18.8683632Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-07-24T05:24:18.8689618Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\pthreadpool.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-07-24T05:24:18.8695846Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\ThreadPool.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-07-24T05:24:18.8712515Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-07-24T05:24:18.8719198Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\thread_pool_guard.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-07-24T05:24:18.8725225Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\WorkersPool.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-07-24T05:24:18.8731493Z copying build\lib.win-amd64-cpython-39\torch\include\cpuinfo.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8748540Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8754640Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8760732Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8766861Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8772695Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8778422Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8784117Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8791014Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8796678Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8802639Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8808481Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8814455Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool_iface.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8820409Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8826080Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8832079Z copying build\lib.win-amd64-cpython-39\torch\include\experiments-config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.8838915Z creating build\bdist.win-amd64\wheel\torch\include\fbgemm 2025-07-24T05:24:18.8842424Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8848441Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Fbgemm.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8854817Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmBuild.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8860868Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmConvert.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8877615Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmEmbedding.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8883380Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFP16.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8888992Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFP32.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8894745Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFPCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8900367Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI64.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8906635Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8DepthwiseAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8912755Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8DirectconvAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8918487Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8Spmdm.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8924593Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmPackMatrixB.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8940483Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmSparse.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8946564Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FloatConversion.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8952424Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\OutputProcessing-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8958368Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\PackingTraits-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8964603Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8971180Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8988404Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsAvx512.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.8994249Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsNeon.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.9000220Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\SimdUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.9005830Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\spmmUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.9011612Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\spmmUtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.9017449Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.9022816Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.9029023Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\UtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-24T05:24:18.9035513Z creating build\bdist.win-amd64\wheel\torch\include\fmt 2025-07-24T05:24:18.9039058Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\args.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:24:18.9044911Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\base.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:24:18.9051910Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:24:18.9058668Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\color.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:24:18.9064975Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\compile.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:24:18.9071242Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\core.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:24:18.9076675Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:24:18.9094479Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:24:18.9102519Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\os.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:24:18.9108507Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ostream.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:24:18.9114302Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\printf.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:24:18.9120426Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ranges.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:24:18.9126542Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\std.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:24:18.9132989Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\xchar.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-24T05:24:18.9139291Z creating build\bdist.win-amd64\wheel\torch\include\fp16 2025-07-24T05:24:18.9142936Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\bitcasts.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-07-24T05:24:18.9148660Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-07-24T05:24:18.9155001Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-07-24T05:24:18.9161124Z copying build\lib.win-amd64-cpython-39\torch\include\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.9166619Z copying build\lib.win-amd64-cpython-39\torch\include\fxdiv.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:18.9183810Z creating build\bdist.win-amd64\wheel\torch\include\google 2025-07-24T05:24:18.9187882Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf 2025-07-24T05:24:18.9191324Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9231738Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9237919Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\api.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9245706Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9252780Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arenastring.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9262535Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9269043Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler 2025-07-24T05:24:18.9272932Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\code_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-07-24T05:24:18.9279508Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\command_line_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-07-24T05:24:18.9286916Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\cpp 2025-07-24T05:24:18.9290560Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp\cpp_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\cpp 2025-07-24T05:24:18.9297014Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\csharp 2025-07-24T05:24:18.9301193Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp\csharp_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\csharp 2025-07-24T05:24:18.9307738Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp\csharp_names.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\csharp 2025-07-24T05:24:18.9314457Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\importer.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-07-24T05:24:18.9331336Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\java 2025-07-24T05:24:18.9335038Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java\java_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\java 2025-07-24T05:24:18.9341153Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java\java_names.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\java 2025-07-24T05:24:18.9347367Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\js 2025-07-24T05:24:18.9351270Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js\js_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\js 2025-07-24T05:24:18.9357338Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js\well_known_types_embed.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\js 2025-07-24T05:24:18.9363525Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\objectivec 2025-07-24T05:24:18.9367302Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\objectivec 2025-07-24T05:24:18.9373609Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\objectivec 2025-07-24T05:24:18.9379158Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\parser.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-07-24T05:24:18.9385609Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\php 2025-07-24T05:24:18.9389268Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php\php_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\php 2025-07-24T05:24:18.9395205Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\plugin.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-07-24T05:24:18.9400859Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\plugin.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-07-24T05:24:18.9407884Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\python 2025-07-24T05:24:18.9411533Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python\python_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\python 2025-07-24T05:24:18.9417651Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\ruby 2025-07-24T05:24:18.9421177Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby\ruby_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\ruby 2025-07-24T05:24:18.9427049Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9434552Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9445688Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor_database.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9452220Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\duration.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9458061Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\dynamic_message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9463820Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\empty.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9469762Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\extension_set.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9476757Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\extension_set_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9483231Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\field_mask.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9489248Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\generated_enum_reflection.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9494667Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\generated_enum_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9500846Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\generated_message_reflection.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9510976Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\generated_message_table_driven.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9526963Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\generated_message_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9533061Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\has_bits.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9539449Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\implicit_weak_message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9545488Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\inlined_string_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9552081Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\io 2025-07-24T05:24:18.9555782Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\coded_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:24:18.9562588Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\gzip_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:24:18.9568545Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\io_win32.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:24:18.9574315Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\printer.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:24:18.9580069Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\strtod.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:24:18.9596921Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\tokenizer.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:24:18.9603281Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\zero_copy_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:24:18.9609475Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\zero_copy_stream_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:24:18.9615785Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-07-24T05:24:18.9622050Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9628636Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_entry.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9635659Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_entry_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9642338Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9649198Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_field_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9655213Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_field_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9671365Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_type_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9678247Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9685033Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9691444Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9697129Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9703476Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\parse_context.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9710096Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\port.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9716581Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9723342Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9730659Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\repeated_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9738984Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\service.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9745593Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\source_context.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9761533Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\struct.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9768621Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9772196Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\bytestream.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9778675Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\callback.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9784696Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\casts.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9790306Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\common.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9796154Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\fastmem.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9802305Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\hash.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9817925Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\logging.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9823480Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\macros.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9829404Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\map_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9835726Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\mutex.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9841610Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\once.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9856755Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\platform_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9862608Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\port.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9868301Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\status.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9874293Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\stl_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9881403Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\stringpiece.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9891693Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\strutil.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9896847Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\template_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-07-24T05:24:18.9902834Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\text_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9909471Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\timestamp.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9915604Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\type.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9922951Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\unknown_field_set.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:18.9929537Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\util 2025-07-24T05:24:18.9933622Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\delimited_message_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:24:18.9939522Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\field_comparator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:24:18.9945515Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\field_mask_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:24:18.9963130Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\json_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:24:18.9969052Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\message_differencer.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:24:18.9975591Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\time_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:24:18.9981507Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\type_resolver.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:24:18.9987396Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\type_resolver_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-07-24T05:24:18.9993532Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wire_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:19.0000236Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wire_format_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:19.0007634Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wrappers.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-24T05:24:19.0024652Z copying build\lib.win-amd64-cpython-39\torch\include\ittnotify-zca.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:19.0030071Z copying build\lib.win-amd64-cpython-39\torch\include\ittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:19.0038434Z copying build\lib.win-amd64-cpython-39\torch\include\jitprofiling.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:19.0045346Z creating build\bdist.win-amd64\wheel\torch\include\kineto 2025-07-24T05:24:19.0048970Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\AbstractConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0054973Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityProfilerInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0060603Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityTraceInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0076629Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityType.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0082372Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ClientInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0088196Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0094213Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\GenericTraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0099727Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\IActivityProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0105163Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ILoggerObserver.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0110888Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ITraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0116764Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\libkineto.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0122423Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\LoggingAPI.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0128160Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\output_base.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0134041Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ThreadUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0140426Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\time_since_epoch.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0147870Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\TraceSpan.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-24T05:24:19.0155144Z creating build\bdist.win-amd64\wheel\torch\include\legacy 2025-07-24T05:24:19.0159527Z copying build\lib.win-amd64-cpython-39\torch\include\legacy\ittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include\legacy 2025-07-24T05:24:19.0168880Z copying build\lib.win-amd64-cpython-39\torch\include\libittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:19.0175308Z copying build\lib.win-amd64-cpython-39\torch\include\libshm.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:19.0181989Z creating build\bdist.win-amd64\wheel\torch\include\mimalloc-2.2 2025-07-24T05:24:19.0187966Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc-new-delete.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-07-24T05:24:19.0194660Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc-override.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-07-24T05:24:19.0199440Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc-stats.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-07-24T05:24:19.0313535Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-07-24T05:24:19.0319884Z creating build\bdist.win-amd64\wheel\torch\include\oneapi 2025-07-24T05:24:19.0323752Z creating build\bdist.win-amd64\wheel\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0327153Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0335038Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0346079Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0352199Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0357877Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0401670Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0407125Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0413142Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0434062Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0440762Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0446483Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0452197Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0457959Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0463743Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0469969Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0475729Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0482043Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0487734Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0493657Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0499308Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0505049Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0525912Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0531697Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0538005Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0545650Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0551837Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0558337Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0564175Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0570170Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_version_hash.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-24T05:24:19.0576195Z copying build\lib.win-amd64-cpython-39\torch\include\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:19.0582624Z copying build\lib.win-amd64-cpython-39\torch\include\pthreadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:19.0590431Z creating build\bdist.win-amd64\wheel\torch\include\pybind11 2025-07-24T05:24:19.0594071Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\attr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0600782Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\buffer_info.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0606900Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\cast.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0613540Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0619279Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0624698Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0667768Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\detail 2025-07-24T05:24:19.0671178Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\class.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:24:19.0677441Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:24:19.0684072Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\cpp_conduit.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:24:19.0689742Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\descr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:24:19.0695539Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\exception_translation.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:24:19.0752697Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\init.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:24:19.0758502Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\internals.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:24:19.0765481Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:24:19.0770918Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\type_caster_base.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:24:19.0777875Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\value_and_holder.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-24T05:24:19.0788994Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\eigen 2025-07-24T05:24:19.0792393Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-07-24T05:24:19.0798402Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\matrix.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-07-24T05:24:19.0804158Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-07-24T05:24:19.0810111Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0815818Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\embed.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0821281Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eval.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0826857Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0832502Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0838354Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil_safe_call_once.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0843969Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\iostream.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0849804Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0856470Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\operators.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0862198Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\options.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0867750Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pybind11.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0875102Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pytypes.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0882088Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\stl 2025-07-24T05:24:19.0885735Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl\filesystem.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\stl 2025-07-24T05:24:19.0891185Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0896910Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl_bind.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0903117Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\type_caster_pyobject_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0908663Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\typing.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-24T05:24:19.0914396Z copying build\lib.win-amd64-cpython-39\torch\include\sleef.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:19.0924030Z creating build\bdist.win-amd64\wheel\torch\include\THC 2025-07-24T05:24:19.2065396Z copying build\lib.win-amd64-cpython-39\torch\include\THC\THCAtomics.cuh -> build\bdist.win-amd64\wheel\.\torch\include\THC 2025-07-24T05:24:19.2071249Z copying build\lib.win-amd64-cpython-39\torch\include\THC\THCDeviceUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\THC 2025-07-24T05:24:19.2078007Z creating build\bdist.win-amd64\wheel\torch\include\torch 2025-07-24T05:24:19.2081861Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc 2025-07-24T05:24:19.2085887Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api 2025-07-24T05:24:19.2089858Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include 2025-07-24T05:24:19.2093377Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.2097208Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\all.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.2102370Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\arg.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.2107992Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.2113362Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.2119643Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:24:19.2122979Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:24:19.2126520Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader\base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:24:19.2132275Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader\stateful.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:24:19.2137929Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader\stateless.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-24T05:24:19.2143593Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:24:19.2149384Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader_options.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:24:19.2155629Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:24:19.2170316Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:24:19.2176242Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:24:19.2182734Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\map.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:24:19.2188066Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\mnist.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:24:19.2193719Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\shared.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:24:19.2199590Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\stateful.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:24:19.2205018Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-24T05:24:19.2221462Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:24:19.2227366Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:24:19.2231246Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail\data_shuttle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:24:19.2237188Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail\queue.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:24:19.2243083Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail\sequencers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-24T05:24:19.2249268Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\example.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:24:19.2255628Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\iterator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:24:19.2262123Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:24:19.2266319Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:24:19.2273181Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\custom_batch_request.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:24:19.2279337Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\distributed.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:24:19.2285701Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\random.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:24:19.2292329Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\sequential.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:24:19.2344739Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\serialize.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:24:19.2347652Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-24T05:24:19.2354592Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:24:19.2360059Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:24:19.2364031Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms\base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:24:19.2369765Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms\collate.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:24:19.2375355Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms\lambda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:24:19.2381045Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:24:19.2386622Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-24T05:24:19.2392338Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:24:19.2398351Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\worker_exception.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-07-24T05:24:19.2404155Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.2409786Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\detail 2025-07-24T05:24:19.2413351Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail\static.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\detail 2025-07-24T05:24:19.2419093Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail\TensorDataContainer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\detail 2025-07-24T05:24:19.2425198Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\enum.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.2442277Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\expanding_array.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.2447708Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\fft.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.2453625Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\imethod.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.2459150Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\jit.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.2464864Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.2470822Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nested.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.2476701Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:24:19.2480219Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\cloneable.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:24:19.2486161Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2489889Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\activation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2496165Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\batchnorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2501709Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\conv.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2518140Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\distance.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2533456Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2539273Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2545305Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\fold.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2551187Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\instancenorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2557066Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2562680Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\loss.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2569093Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2574978Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\padding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2580608Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\pixelshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2586416Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2592944Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\upsampling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2598868Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\vision.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-24T05:24:19.2605024Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:24:19.2610664Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:24:19.2626957Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:24:19.2633767Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2637405Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\activation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2643854Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\adaptive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2649544Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\batchnorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2655432Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\common.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2661489Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:24:19.2675849Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\any.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:24:19.2681828Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_module_holder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:24:19.2688032Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_value.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:24:19.2693845Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:24:19.2710557Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\moduledict.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:24:19.2716437Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\modulelist.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:24:19.2722306Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\named_any.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:24:19.2728153Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterdict.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:24:19.2734394Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterlist.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:24:19.2740333Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\sequential.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-24T05:24:19.2746240Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\conv.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2752957Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\distance.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2758933Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2764978Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2770961Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\fold.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2776740Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\instancenorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2785135Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2791291Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\loss.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2797597Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2803491Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\padding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2809098Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\pixelshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2815094Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2821282Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2826976Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\transformer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2832809Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\transformercoder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2838510Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\transformerlayer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2844256Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\upsampling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2850683Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2856432Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-24T05:24:19.2862009Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:24:19.2868080Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2872013Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\activation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2878132Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\adaptive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2883668Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\batchnorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2889234Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\conv.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2894800Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\distance.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2910844Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2923878Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2929708Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\fold.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2935414Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\instancenorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2941135Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2947132Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\loss.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2953514Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2959767Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\padding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2965591Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\pixelshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2971451Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2977648Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2983579Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\transformer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2989347Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\transformercoder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.2995321Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\transformerlayer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.3001091Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\upsampling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.3007676Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\vision.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-24T05:24:19.3013356Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:24:19.3019087Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-07-24T05:24:19.3022961Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\parallel\data_parallel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-07-24T05:24:19.3029006Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\pimpl-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:24:19.3034899Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\pimpl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:24:19.3040830Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:24:19.3044430Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils\clip_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:24:19.3050478Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils\convert_parameters.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:24:19.3056126Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils\rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-24T05:24:19.3061888Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-07-24T05:24:19.3067781Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.3073719Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:24:19.3077373Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\adagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:24:19.3083029Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\adam.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:24:19.3088655Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\adamw.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:24:19.3094375Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\lbfgs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:24:19.3100111Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\optimizer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:24:19.3105802Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\rmsprop.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:24:19.3122417Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:24:19.3126116Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers\lr_scheduler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:24:19.3132236Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers\reduce_on_plateau_scheduler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:24:19.3138202Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers\step_lr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-24T05:24:19.3153947Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\serialize.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:24:19.3159829Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\sgd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-07-24T05:24:19.3166433Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.3172272Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\ordered_dict.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.3178768Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\python 2025-07-24T05:24:19.3182377Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\python 2025-07-24T05:24:19.3187921Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.3194066Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:24:19.3197923Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize\archive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:24:19.3203414Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize\input-archive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:24:19.3209528Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize\output-archive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:24:19.3215197Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\serialize 2025-07-24T05:24:19.3230654Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.3236618Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.3242655Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\special.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.3248899Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\torch.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.3254533Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.3260193Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.3265881Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\version.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.3284726Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-07-24T05:24:19.3292020Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3295623Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\anomaly_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3301345Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3307239Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3312898Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\cpp_hook.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3330159Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\custom_function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3336470Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\edge.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3341947Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\engine.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3347487Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\forward_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3353195Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3359796Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\functions 2025-07-24T05:24:19.3363430Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\accumulate_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-07-24T05:24:19.3369192Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\basic_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-07-24T05:24:19.3374780Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\comm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-07-24T05:24:19.3380064Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-07-24T05:24:19.3396120Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-07-24T05:24:19.3401728Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-07-24T05:24:19.3407342Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\FunctionsManual.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3413841Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\function_hook.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3419672Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\generated 2025-07-24T05:24:19.3423471Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\Functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-07-24T05:24:19.3434395Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\python_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-07-24T05:24:19.3440519Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\python_return_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-07-24T05:24:19.3456607Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\VariableType.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-07-24T05:24:19.3462263Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\variable_factories.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-07-24T05:24:19.3468966Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\ViewFuncs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-07-24T05:24:19.3475382Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\grad_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3480869Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\graph_task.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3486718Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\InferenceMode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3492350Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\input_buffer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3498016Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\input_metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3503776Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\jit_decomp_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3509488Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\profiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3514995Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\profiler_kineto.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3520772Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\profiler_legacy.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3536361Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\profiler_python.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3541915Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_anomaly_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3547551Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3554094Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_cpp_function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3559284Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_engine.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3565338Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_enum_tag.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3571099Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_fft_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3576684Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3582509Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_hook.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3598901Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_legacy_variable.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3604494Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_linalg_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3610750Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_nested_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3616411Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_nn_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3621954Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_saved_variable_hooks.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3627744Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_sparse_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3633509Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_special_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3639076Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_torch_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3644912Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_variable.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3661090Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_variable_indexing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3667004Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\record_function_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3672974Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\saved_variable.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3678783Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\saved_variable_hooks.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3684497Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\symbolic.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3690021Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\utils 2025-07-24T05:24:19.3693457Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\error_messages.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-07-24T05:24:19.3699035Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\grad_layout_contract.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-07-24T05:24:19.3704674Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\lambda_post_hook.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-07-24T05:24:19.3710720Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\python_arg_parsing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-07-24T05:24:19.3727353Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\warnings.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-07-24T05:24:19.3732846Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\wrap_outputs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-07-24T05:24:19.3738798Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\variable.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3745391Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\VariableTypeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3751533Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\variable_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-07-24T05:24:19.3757683Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\copy_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.3764267Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cpu 2025-07-24T05:24:19.3767974Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cpu 2025-07-24T05:24:19.3774108Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cuda 2025-07-24T05:24:19.3777776Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\comm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:24:19.3784322Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:24:19.3790431Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\device_set.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:24:19.3796217Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:24:19.3801709Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\GdsFile.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:24:19.3818364Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\memory_snapshot.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:24:19.3823983Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:24:19.3829389Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\nccl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:24:19.3835173Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\python_comm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:24:19.3840561Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\python_nccl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:24:19.3846524Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:24:19.3851812Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\THCP.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:24:19.3857064Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-24T05:24:19.3862304Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\CudaIPCTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.3878492Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DataLoader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.3883800Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.3889144Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.3894665Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed 2025-07-24T05:24:19.3898669Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:24:19.3902162Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:24:19.3908106Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\context 2025-07-24T05:24:19.3912011Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context\container.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\context 2025-07-24T05:24:19.3917987Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context\context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\context 2025-07-24T05:24:19.3923461Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\engine 2025-07-24T05:24:19.3927018Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\engine\dist_engine.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\engine 2025-07-24T05:24:19.3932779Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\functions 2025-07-24T05:24:19.3936436Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions\recvrpc_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\functions 2025-07-24T05:24:19.3942174Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions\sendrpc_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\functions 2025-07-24T05:24:19.3947807Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\python_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:24:19.3963196Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:24:19.3966869Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\autograd_metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:24:19.3972829Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_req.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:24:19.3978682Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:24:19.3994908Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_req.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:24:19.4000670Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:24:19.4006300Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:24:19.4012169Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_req.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:24:19.4017962Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:24:19.4023719Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_req.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:24:19.4029799Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-24T05:24:19.4069571Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd 2025-07-24T05:24:19.4076128Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4079864Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Backend.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4086290Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Backoff.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4091863Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\c10d.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4097146Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\comm.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4103069Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-07-24T05:24:19.4106851Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives\ControlCollectives.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-07-24T05:24:19.4112848Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-07-24T05:24:19.4118776Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_plane 2025-07-24T05:24:19.4126987Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane\Handlers.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\control_plane 2025-07-24T05:24:19.4132714Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane\WorkerServer.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\control_plane 2025-07-24T05:24:19.4138588Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-24T05:24:19.4142223Z 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-07-24T05:24:19.4149235Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda\StreamBlock.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-24T05:24:19.4155340Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-24T05:24:19.4160631Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\debug.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4166124Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4171747Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\error.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4177391Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\exception.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4183644Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4189831Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\FileStore.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4200857Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4206787Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\FlightRecorderDetail.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4213186Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Functional.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4219505Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4225335Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4230939Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\HashStore.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4237057Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\logger.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4242745Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\logging.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4248433Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\NanCheck.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4254201Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4260788Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4277564Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4291009Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4297706Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4304252Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4311086Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4317147Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4325103Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4331073Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4347202Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4353124Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\python_comm_hook.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4359090Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:24:19.4362868Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization\quantization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:24:19.4368594Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization\quantization_gpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:24:19.4374294Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization\quantization_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-24T05:24:19.4389677Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\RankLocal.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4395552Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\reducer.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4401791Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4407568Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\sequence_num.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4413210Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\socket.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4419259Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\socket_fmt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4425110Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Store.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4431982Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:24:19.4435116Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:24:19.4441078Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:24:19.4446849Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryTypes.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:24:19.4462157Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:24:19.4467869Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:24:19.4473853Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\intra_node_comm.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:24:19.4479567Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-24T05:24:19.4485467Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\TCPStore.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4502229Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4507856Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\TraceUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4513877Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Types.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4519455Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4525045Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4530690Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4536148Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Utils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4542256Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4547926Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Work.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-24T05:24:19.4554216Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4557730Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\agent_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4563464Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\message.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4569136Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\metrics 2025-07-24T05:24:19.4572839Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc\metrics 2025-07-24T05:24:19.4578780Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\profiler 2025-07-24T05:24:19.4582597Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler\remote_profiler_manager.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc\profiler 2025-07-24T05:24:19.4588554Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler\server_process_global_profiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc\profiler 2025-07-24T05:24:19.4594476Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\python_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4610713Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\python_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4616590Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\python_remote_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4637133Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\python_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4642955Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4648866Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\py_rref.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4654598Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\request_callback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4664158Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\request_callback_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4670117Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\request_callback_no_python.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4676091Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rpc.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4681780Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rpc_agent.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4687725Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rpc_command_base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4693715Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rref_context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4699581Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rref_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4706030Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rref_proto.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4712100Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\script_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4718799Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\script_remote_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4734994Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\script_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4740977Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4747586Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4753788Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\testing 2025-07-24T05:24:19.4757592Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing\faulty_tensorpipe_agent.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc\testing 2025-07-24T05:24:19.4763425Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing\testing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc\testing 2025-07-24T05:24:19.4780432Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\torchscript_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4782046Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4783496Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4789436Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\unpickled_python_remote_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4795759Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-07-24T05:24:19.4802555Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Dtype.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.4808332Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DynamicTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.4814452Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\dynamo 2025-07-24T05:24:19.4818036Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\cache_entry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:24:19.4824122Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\compiled_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:24:19.4830882Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\cpp_shim.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:24:19.4836482Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\cpython_defs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:24:19.4852203Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\cpython_includes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:24:19.4857982Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\debug_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:24:19.4863790Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\eval_frame.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:24:19.4869618Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\eval_frame_cpp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:24:19.4875260Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\extra_state.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:24:19.4881238Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\framelocals_mapping.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:24:19.4886857Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\guards.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:24:19.4892398Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:24:19.4897752Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\python_compiled_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:24:19.4903476Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-07-24T05:24:19.4908825Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.4918580Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.4924978Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\export 2025-07-24T05:24:19.4928595Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export\example_upgraders.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\export 2025-07-24T05:24:19.4934255Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export\pt2_archive_constants.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\export 2025-07-24T05:24:19.4939817Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\export 2025-07-24T05:24:19.4945048Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export\upgrader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\export 2025-07-24T05:24:19.4950749Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.4960429Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\functorch 2025-07-24T05:24:19.4963879Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\functorch 2025-07-24T05:24:19.4969329Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\fx 2025-07-24T05:24:19.4972739Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx\node.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\fx 2025-07-24T05:24:19.4978263Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.4984438Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor 2025-07-24T05:24:19.4987905Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_eager 2025-07-24T05:24:19.4991589Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager\kernel_holder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_eager 2025-07-24T05:24:19.4997267Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager\kernel_meta_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_eager 2025-07-24T05:24:19.5003080Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:24:19.5006727Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\array_ref.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:24:19.5012171Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\common.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:24:19.5017411Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:24:19.5022708Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:24:19.5027915Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:24:19.5043182Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-07-24T05:24:19.5048592Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_package 2025-07-24T05:24:19.5052289Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package\model_package_loader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_package 2025-07-24T05:24:19.5058150Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_package 2025-07-24T05:24:19.5063670Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:24:19.5077433Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:24:19.5083283Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:24:19.5089089Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:24:19.5104959Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:24:19.5110638Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:24:19.5116343Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-07-24T05:24:19.5122212Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:19.5125886Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\arrayref_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:19.5131669Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\constant_type.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:19.5137171Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\device_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:19.5153097Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:19.5168104Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\mini_array_ref.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:19.5174000Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\model.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:19.5179342Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\model_base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:19.5185705Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\model_container.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:19.5192524Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\scalar_to_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:19.5198224Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\sycl_runtime_wrappers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:19.5204091Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\thread_local.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:19.5209849Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:19.5215621Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\utils_cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:19.5221564Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\utils_xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-24T05:24:19.5227960Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:24:19.5231841Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:24:19.5235458Z 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-07-24T05:24:19.5241025Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:24:19.5247077Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:24:19.5266794Z 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-07-24T05:24:19.5276984Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:24:19.5283136Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim_xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-24T05:24:19.5299633Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:24:19.5303790Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:24:19.5310450Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:24:19.5316889Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:24:19.5333557Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-24T05:24:19.5339516Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\mkldnn_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:24:19.5344913Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\oss_proxy_executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:24:19.5360890Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\proxy_executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:24:19.5366536Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\tensor_converter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:24:19.5372174Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch 2025-07-24T05:24:19.5377736Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\array_ref_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor 2025-07-24T05:24:19.5383604Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_prefix.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor 2025-07-24T05:24:19.5390525Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:24:19.5394502Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\array_ref.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:24:19.5400479Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\common.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:24:19.5406560Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:24:19.5413041Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:24:19.5419087Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:24:19.5432519Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:24:19.5438491Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:24:19.5443792Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:24:19.5449097Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-24T05:24:19.5454524Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:24:19.5459867Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-24T05:24:19.5464889Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\inductor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor 2025-07-24T05:24:19.5470619Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\static_cuda_launcher.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor 2025-07-24T05:24:19.5476472Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\instruction_counter 2025-07-24T05:24:19.5480163Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\instruction_counter 2025-07-24T05:24:19.5485771Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.5491046Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.5496960Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit 2025-07-24T05:24:19.5500382Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\api 2025-07-24T05:24:19.5503946Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api\compilation_unit.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\api 2025-07-24T05:24:19.5509810Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api\function_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\api 2025-07-24T05:24:19.5515708Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api\method.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\api 2025-07-24T05:24:19.5521263Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api\module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\api 2025-07-24T05:24:19.5527315Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api\object.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\api 2025-07-24T05:24:19.5544612Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends 2025-07-24T05:24:19.5548035Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:24:19.5554549Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_debug_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:24:19.5559871Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_debug_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:24:19.5565386Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_detail.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:24:19.5582104Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_exception.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:24:19.5587756Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:24:19.5593372Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:24:19.5598948Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_preprocess.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:24:19.5605748Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_resolver.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-07-24T05:24:19.5611608Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml 2025-07-24T05:24:19.5615114Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-07-24T05:24:19.5618580Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\cpp\context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-07-24T05:24:19.5624189Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:24:19.5627805Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLCompiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:24:19.5633452Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLExecutor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:24:19.5638952Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLFeatureProvider.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:24:19.5654186Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLModelWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:24:19.5659871Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLTensorSpec.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-24T05:24:19.5665796Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack 2025-07-24T05:24:19.5669240Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-07-24T05:24:19.5672898Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\compiler\xnn_compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-07-24T05:24:19.5678963Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-07-24T05:24:19.5682480Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\executor\xnn_executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-07-24T05:24:19.5688220Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-07-24T05:24:19.5691926Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\serialization\serializer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-07-24T05:24:19.5697602Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\xnnpack_graph_builder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\xnnpack 2025-07-24T05:24:19.5703299Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen 2025-07-24T05:24:19.5706733Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\cuda 2025-07-24T05:24:19.5710238Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda\interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\cuda 2025-07-24T05:24:19.5716747Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:24:19.5720212Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\arg_spec.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:24:19.5725874Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:24:19.5731367Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:24:19.5738341Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:24:19.5741908Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:24:19.5747610Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu\resource_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:24:19.5789518Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu\temp_file.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-24T05:24:19.5796199Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-07-24T05:24:19.5799959Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-07-24T05:24:19.5806460Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda\resource_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-07-24T05:24:19.5813052Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:24:19.5819143Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\fallback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:24:19.5830190Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\fused_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:24:19.5836123Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:24:19.5842299Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\kernel_cache.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:24:19.5848201Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\kernel_spec.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:24:19.5854802Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\partition_desc.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:24:19.5860124Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\tensor_desc.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:24:19.5865997Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\tensor_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-07-24T05:24:19.5871961Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:24:19.5875511Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\decompose_silu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:24:19.5881224Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\defer_size_check.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:24:19.5886562Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\graph_fuser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:24:19.5892542Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\graph_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:24:19.5908506Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\guard_shape.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:24:19.5914253Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:24:19.5920042Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:24:19.5925863Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\layout_propagation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:24:19.5931296Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:24:19.5937031Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\operator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:24:19.5942733Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\prepare_binary.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-07-24T05:24:19.5948329Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\cuda 2025-07-24T05:24:19.5952027Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda\cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\cuda 2025-07-24T05:24:19.5958312Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.5961842Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\builtin_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.5967596Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.5973016Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\concrete_module_type.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.5988913Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\convert_to_ssa.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.5994545Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\edit_distance.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6000074Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\error_report.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6005605Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\exit_transforms.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6011083Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\function_schema_parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6017029Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\inline_loop_condition.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6022536Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\ir_emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6028012Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\lexer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6034573Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\mini_environment.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6040302Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\name_mangler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6045906Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6051244Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\parser_constants.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6056777Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\parse_string_literal.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6062661Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\resolver.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6068499Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\schema_matching.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6074457Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\schema_type_parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6080450Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\script_type_parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6096496Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\source_range.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6102973Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\source_ref.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6108739Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\strtod.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6114253Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\sugared_value.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6120674Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\tracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6126723Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\tree.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6132455Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\tree_views.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6138961Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\versioned_symbols.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-07-24T05:24:19.6145152Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\ir 2025-07-24T05:24:19.6148756Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\alias_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:24:19.6154611Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\attributes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:24:19.6160314Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\constants.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:24:19.6166062Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\graph_node_list.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:24:19.6181567Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\graph_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:24:19.6186909Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:24:19.6193960Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\irparser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:24:19.6199581Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\ir_views.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:24:19.6205425Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\named_value.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:24:19.6211210Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\node_hashing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:24:19.6217618Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\scope.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:24:19.6223442Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\subgraph_matcher.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:24:19.6229076Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\type_hashing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-07-24T05:24:19.6234853Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\jit_log.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit 2025-07-24T05:24:19.6240688Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\jit_opt_limit.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit 2025-07-24T05:24:19.6256418Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6260174Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\code.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6266275Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:24:19.6269818Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility\backport.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:24:19.6276094Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility\backport_manager.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:24:19.6282697Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility\model_compatibility.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:24:19.6298705Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility\runtime_compatibility.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-24T05:24:19.6304565Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\debug_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6310809Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\file_format.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6327817Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6333084Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\frame.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6339161Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6344349Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\import.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6351594Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\import_data.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6357213Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\import_export_common.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6362520Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\interpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6368158Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\method.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6374093Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:24:19.6377779Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\BuildFeatureTracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:24:19.6383517Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\CustomClassTracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:24:19.6389252Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\KernelDTypeTracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:24:19.6405207Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\MobileModelRunner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:24:19.6410864Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\OperatorCallTracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:24:19.6416508Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\TensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:24:19.6421922Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\TracerRunner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-24T05:24:19.6427828Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6434005Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:24:19.6437480Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc\aot_compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:24:19.6447281Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc\context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:24:19.6452814Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc\registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\nnc 2025-07-24T05:24:19.6458562Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6464251Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\parse_bytecode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6470531Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\parse_operators.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6477048Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\prim_ops_registery.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6482615Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\profiler_edge.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6488374Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6494043Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\quantization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6499880Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\register_ops_common_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6516551Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:24:19.6519914Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\export_data.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:24:19.6525865Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train\optim 2025-07-24T05:24:19.6529443Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\optim\sgd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\train\optim 2025-07-24T05:24:19.6535002Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\random.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:24:19.6540479Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\sequential.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\train 2025-07-24T05:24:19.6546079Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\type_parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6551878Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\upgrader_mobile.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-07-24T05:24:19.6557849Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:24:19.6561522Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders\upgraders.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:24:19.6567254Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders\upgraders_entry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:24:19.6572739Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:24:19.6578321Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders\version_map.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\operator_upgraders 2025-07-24T05:24:19.6595506Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6599059Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\add_if_then_else.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6604523Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\annotate_warns.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6610308Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\autocast.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6615640Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\bailout_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6632082Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\batch_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6639223Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\canonicalize.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6646058Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6651813Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\check_strict_fusion.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6657320Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\clear_profiling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6662935Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\clear_undefinedness.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6668974Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6674573Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\concat_opt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6680134Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\constant_pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6685855Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\constant_propagation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6691954Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6697909Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\create_functional_graphs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6703754Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-07-24T05:24:19.6707812Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-07-24T05:24:19.6713437Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dead_code_elimination.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6719327Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\decompose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6734624Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\device_type_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6740048Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dtype_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6745667Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\eliminate_no_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6751661Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\erase_number_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6758611Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\fixup_trace_scope_blocks.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6770432Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\fold_conv_bn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6776887Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\fold_linear_bn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6782848Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\freeze_module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6789508Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_concat_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6807391Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6813751Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_conv_folding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6820258Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6826108Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_linear_folding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6832098Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6837966Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_ops_to_mkldnn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6843501Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\fuse_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6849642Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\fuse_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6855071Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\graph_fuser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6870707Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6876781Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\guard_elimination.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6882355Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\hoist_conv_packed_params.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6887843Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\inliner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6893347Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6899371Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\inline_forked_closures.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6904910Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\inline_fork_wait.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6910590Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\inplace_check.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6915963Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\insert_guards.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6933136Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\integer_value_refinement.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6943412Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\lift_closures.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6949338Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\liveness.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6954627Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\loop_unrolling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6960214Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\lower_grad_of.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6965782Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\lower_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6971427Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\lower_tuples.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6977479Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\metal_rewrite.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6982967Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6988856Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.6999498Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\normalize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7023809Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7033731Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7037514Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\cast_all_constant_to_floating.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7042926Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\constant_fold.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7048505Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\constant_map.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7054913Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\deduplicate_initializers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7071793Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\eliminate_unused_items.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7078052Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\eval_peephole.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7084187Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\fixup_onnx_controlflow.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7090132Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\function_extraction.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7096623Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\function_substitution.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7102416Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7108282Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\list_model_parameters.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7113929Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\naming.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7139678Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\onnx_log.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7145549Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:24:19.7149479Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:24:19.7155119Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\common.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:24:19.7160699Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:24:19.7176636Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-24T05:24:19.7182477Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\peephole.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7188049Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\prepare_division_for_onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7193796Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\preprocess_for_onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7199669Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7205247Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\scalar_type_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7210952Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\shape_type_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7227458Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\unpack_quantized_weights.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-07-24T05:24:19.7233154Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7239150Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\pass_manager.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7244925Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\peephole.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7250517Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7256413Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7262389Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\peephole_list_idioms.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7268409Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\peephole_non_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7274337Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\prepack_folding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7289529Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:24:19.7293375Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\dedup_module_uses.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:24:19.7299904Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\finalize.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:24:19.7305264Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\fusion_passes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:24:19.7310811Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:24:19.7326966Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\insert_observers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:24:19.7332599Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\insert_quant_dequant.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:24:19.7338297Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\quantization_patterns.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:24:19.7345071Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\quantization_type.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:24:19.7350621Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\register_packed_params.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-07-24T05:24:19.7356117Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\refine_tuple_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7361945Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7367444Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7373499Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_expands.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7379121Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_inplace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7384514Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_mutation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7390383Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7397031Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\replacement_of_old_operators.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7420468Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\requires_grad_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7426037Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\restore_mutation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7431963Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\shape_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7437843Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\specialize_autogradzero.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7443575Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\subgraph_rewrite.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7449442Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7455191Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7461075Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7466920Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7473317Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7479328Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:24:19.7482952Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils\check_alias_annotation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:24:19.7488562Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils\memory_dag.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:24:19.7494542Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils\optimization_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:24:19.7509833Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils\op_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:24:19.7527112Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils\subgraph_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\utils 2025-07-24T05:24:19.7532926Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\value_refinement_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7538637Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\variadic_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7544530Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\vulkan_rewrite.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7550369Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-07-24T05:24:19.7557544Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7595191Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7600796Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\module_python.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7606507Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7613038Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\pybind_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7619533Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_arg_flatten.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7630834Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7636491Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_dict.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7642676Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7648603Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_ivalue.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7658672Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_list.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7668660Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_sugared_value.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7674717Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_tracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7680714Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_tree_views.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7686374Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\script_init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7692037Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\update_graph_executor_opt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7697772Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-07-24T05:24:19.7703591Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\resource_guard.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit 2025-07-24T05:24:19.7709824Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7713738Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\argument_spec.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7720076Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\autodiff.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7725923Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7732169Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\custom_operator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7748186Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\decomposition_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7754287Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7760083Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\exception_message.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7765914Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\graph_executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7771945Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\graph_executor_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7777868Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\graph_iterator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7784574Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\instruction.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7791082Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:24:19.7795287Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter\can_emit_inline.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:24:19.7801833Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter\code_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:24:19.7808825Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter\frame.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:24:19.7814765Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter\preprocess_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-24T05:24:19.7830986Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7836739Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\jit_exception.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7842644Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\jit_trace.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7848173Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\logging.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7853739Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\operator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7859931Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\operator_options.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7865242Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\print_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7870888Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\profiling_graph_executor_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7886591Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\profiling_record.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7892507Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\register_ops_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7898779Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\script_profile.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7904700Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\serialized_shape_function_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7910204Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\shape_function_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7915880Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\simple_graph_executor_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7921657Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.7927886Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:24:19.7931450Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\fusion.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:24:19.7937194Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:24:19.7943558Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:24:19.7953234Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\memory_planner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:24:19.7958873Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:24:19.7964458Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\passes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:24:19.7979726Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:24:19.7985474Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\processed_node_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:24:19.7991294Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\static_method.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:24:19.7997172Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\te_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-07-24T05:24:19.8003036Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\symbolic_script.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.8018587Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.8024501Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.8030039Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\vararg_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.8035874Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\variable_tensor_list.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-07-24T05:24:19.8041982Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8045898Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\callstack_debug_info_serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8051853Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\export.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8057722Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\export_bytecode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8074303Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8080231Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8085638Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8091496Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import_export_constants.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8097234Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import_export_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8107286Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import_export_helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8113265Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import_read.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8119495Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import_source.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8125295Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8132264Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8137588Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\pickle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8143144Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\pickler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8148604Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\pickler_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8154624Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\python_print.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8160430Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\source_range_serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8166616Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\source_range_serialization_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8172520Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\storage_context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8189099Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\type_name_uniquer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8195003Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\unpickler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-24T05:24:19.8201365Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8219025Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8224957Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\block_codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8230983Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8236885Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8253898Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8259951Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8265994Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8271920Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8277778Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\cuda_random.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8283794Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\eval.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8290151Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8296619Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\expr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8302814Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\external_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8309178Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8315980Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8321887Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8327479Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\graph_opt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8333473Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\half_support.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8339811Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\hash_provider.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8345697Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8351593Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8367963Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8373865Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8379956Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_printer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8385700Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8391801Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8398092Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8403821Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8409524Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8415351Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8421175Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\loopnest.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8427324Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8442493Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\lowerings.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8448399Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8454423Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:24:19.8458190Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:24:19.8463884Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:24:19.8469428Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\misc.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:24:19.8475261Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\norm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:24:19.8480801Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\operators.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:24:19.8495925Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:24:19.8501834Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:24:19.8508082Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:24:19.8514381Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-24T05:24:19.8519632Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\reduction.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8525748Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\registerizer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8531750Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\stmt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8538056Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8543713Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8549641Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8555912Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8561636Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-07-24T05:24:19.8567645Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\testing 2025-07-24T05:24:19.8571401Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing\catch_utils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\testing 2025-07-24T05:24:19.8577219Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing\file_check.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\testing 2025-07-24T05:24:19.8583142Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing\hooks_for_testing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\testing 2025-07-24T05:24:19.8589216Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.8595040Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy 2025-07-24T05:24:19.8598808Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\backend 2025-07-24T05:24:19.8611608Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend\backend_data.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\backend 2025-07-24T05:24:19.8613945Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend\backend_device.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\backend 2025-07-24T05:24:19.8619161Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend\backend_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\backend 2025-07-24T05:24:19.8624583Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend\lowering_context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\backend 2025-07-24T05:24:19.8641100Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8644609Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\cache.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8650301Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\config.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8656440Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\debug_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8662286Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\dynamic_ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8667863Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\hash.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8683426Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8689165Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\internal_ops 2025-07-24T05:24:19.8693246Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\internal_ops\ltc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core\internal_ops 2025-07-24T05:24:19.8699078Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8705327Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ir_builder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8711189Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ir_dump_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8717158Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ir_metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8723021Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ir_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8728990Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\lazy_graph_executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8734690Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\metrics.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8740421Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\multi_wait.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8747050Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\ops 2025-07-24T05:24:19.8750938Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops\arithmetic_ir_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core\ops 2025-07-24T05:24:19.8756912Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core\ops 2025-07-24T05:24:19.8762791Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\permutation_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8768574Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\shape.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8774880Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\shape_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8780760Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8786967Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\tensor_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8793566Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\tensor_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8800312Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\thread_pool.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8807430Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\trie.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8813849Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\unique.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8830646Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-07-24T05:24:19.8837438Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\generated 2025-07-24T05:24:19.8841175Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated\LazyIr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\generated 2025-07-24T05:24:19.8850557Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\generated 2025-07-24T05:24:19.8857168Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\generated 2025-07-24T05:24:19.8863288Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\python 2025-07-24T05:24:19.8866859Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\python 2025-07-24T05:24:19.8872445Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python\python_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\python 2025-07-24T05:24:19.8878360Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:24:19.8892497Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\config.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:24:19.8897474Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\dynamic_ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:24:19.8903087Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ir_builder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:24:19.8909140Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:24:19.8922692Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops\device_data.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:24:19.8928428Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops\generic.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:24:19.8933917Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops\to_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-24T05:24:19.8940030Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\tensor_aten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:24:19.8945894Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_autograd_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:24:19.8952017Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_backend_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:24:19.8958258Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_eager_fallback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:24:19.8973536Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_lowering_context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:24:19.8979410Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_node.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:24:19.8985635Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_node_lowering.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-07-24T05:24:19.8992152Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9025728Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9031648Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\monitor 2025-07-24T05:24:19.9035165Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor\counters.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\monitor 2025-07-24T05:24:19.9046273Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor\events.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\monitor 2025-07-24T05:24:19.9052472Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor\python_init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\monitor 2025-07-24T05:24:19.9058221Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mps 2025-07-24T05:24:19.9070350Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\mps 2025-07-24T05:24:19.9071286Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia 2025-07-24T05:24:19.9072122Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\mtia 2025-07-24T05:24:19.9077215Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia\profiler 2025-07-24T05:24:19.9080804Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\mtia\profiler 2025-07-24T05:24:19.9086667Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\multiprocessing 2025-07-24T05:24:19.9090292Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\multiprocessing 2025-07-24T05:24:19.9096059Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\onnx 2025-07-24T05:24:19.9099642Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx\back_compat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\onnx 2025-07-24T05:24:19.9105509Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\onnx 2025-07-24T05:24:19.9110972Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx\onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\onnx 2025-07-24T05:24:19.9116971Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler 2025-07-24T05:24:19.9120608Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\api.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:24:19.9126329Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\collection.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:24:19.9132992Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\combined_traceback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:24:19.9138703Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\containers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:24:19.9154818Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\data_flow.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:24:19.9160347Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\events.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:24:19.9166031Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\kineto_client_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:24:19.9171786Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\kineto_shim.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:24:19.9178119Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:24:19.9186102Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration\observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:24:19.9192210Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration\python_tracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:24:19.9197941Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration\vulkan.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\orchestration 2025-07-24T05:24:19.9203815Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\perf-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:24:19.9209676Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\perf.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:24:19.9216113Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\python 2025-07-24T05:24:19.9220571Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python\combined_traceback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\python 2025-07-24T05:24:19.9225921Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\python 2025-07-24T05:24:19.9231986Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\python 2025-07-24T05:24:19.9237860Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:24:19.9241713Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:24:19.9247991Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone\itt_observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:24:19.9253829Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone\nvtx_observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:24:19.9270338Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\standalone 2025-07-24T05:24:19.9276614Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\stubs 2025-07-24T05:24:19.9280108Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs\base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\stubs 2025-07-24T05:24:19.9286427Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9289914Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\action.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9295936Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\communicate.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9301630Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\debug_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9307353Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\dwarf_enums.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9323815Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9363213Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9369087Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9374665Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\fde.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9380349Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\lexer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9386171Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\line_number_program.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9392209Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\mem_file.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9398085Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\range_table.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9403587Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\sections.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9409168Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\unwind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9415598Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\unwinder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9422181Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\unwind_error.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-07-24T05:24:19.9428729Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-07-24T05:24:19.9435295Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\PyInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9441133Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9446802Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_headers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9453035Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9458638Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9464418Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Size.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9470979Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\stable 2025-07-24T05:24:19.9480375Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\library.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-07-24T05:24:19.9486216Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-07-24T05:24:19.9491963Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-07-24T05:24:19.9497647Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9503281Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageMethods.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9508795Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageSharing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9514430Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9520092Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\tensor 2025-07-24T05:24:19.9523712Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor\python_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\tensor 2025-07-24T05:24:19.9529539Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THConcat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9535459Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THP.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9541404Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\TypeInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9546727Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9553190Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9556931Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\byte_order.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9562968Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\cpp_stacktraces.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9568615Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\cuda_enabled.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9574086Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\device_lazy_init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9590876Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\disable_torch_function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9597059Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\generated_serialization_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9604814Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9610465Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\invalid_arguments.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9616037Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\nested.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9621435Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\numpy_stub.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9627322Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\object_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9633295Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\out_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9639175Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9645266Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\pycfunction_helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9650674Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\pyobject_preservation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9656264Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\pythoncapi_compat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9662528Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_arg_parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9668889Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_compat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9674674Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9680008Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_numbers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9696427Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_raii.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9702315Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_scalars.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9708153Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9714757Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_stub.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9720471Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_symnode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9726509Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_torch_function_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9732694Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_tuples.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9738411Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\schema_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9746311Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\six.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9752266Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\structseq.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9767710Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_apply.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9773219Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_dtypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9779191Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_flatten.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9785085Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_layouts.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9790816Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_list.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9796991Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_memoryformats.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9803442Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_new.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9810061Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9826772Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_qschemes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9842506Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9850312Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\throughput_benchmark-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9857172Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\throughput_benchmark.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9864193Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\torch_dispatch_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9871384Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\variadic.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9878143Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\verbose.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-07-24T05:24:19.9884669Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-24T05:24:19.9891605Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\xpu 2025-07-24T05:24:19.9895730Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\xpu 2025-07-24T05:24:19.9901827Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\xpu 2025-07-24T05:24:19.9907825Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\xpu 2025-07-24T05:24:19.9915449Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-07-24T05:24:19.9922395Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class_detail.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-07-24T05:24:19.9928290Z copying build\lib.win-amd64-cpython-39\torch\include\torch\extension.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-07-24T05:24:19.9944542Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly 2025-07-24T05:24:19.9948271Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\macros 2025-07-24T05:24:19.9952300Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros\cmake_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\macros 2025-07-24T05:24:19.9958153Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\macros 2025-07-24T05:24:19.9963960Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\macros 2025-07-24T05:24:19.9970818Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\util 2025-07-24T05:24:19.9974306Z 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-07-24T05:24:19.9980554Z copying build\lib.win-amd64-cpython-39\torch\include\torch\library.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-07-24T05:24:19.9987521Z copying build\lib.win-amd64-cpython-39\torch\include\torch\script.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-07-24T05:24:19.9994682Z copying build\lib.win-amd64-cpython-39\torch\include\xnnpack.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-24T05:24:20.0012420Z creating build\bdist.win-amd64\wheel\torch\jit 2025-07-24T05:24:20.0015557Z copying build\lib.win-amd64-cpython-39\torch\jit\annotations.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0021808Z copying build\lib.win-amd64-cpython-39\torch\jit\frontend.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0028548Z copying build\lib.win-amd64-cpython-39\torch\jit\generate_bytecode.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0035073Z creating build\bdist.win-amd64\wheel\torch\jit\mobile 2025-07-24T05:24:20.0038165Z copying build\lib.win-amd64-cpython-39\torch\jit\mobile\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\mobile 2025-07-24T05:24:20.0044068Z copying build\lib.win-amd64-cpython-39\torch\jit\quantized.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0059261Z copying build\lib.win-amd64-cpython-39\torch\jit\supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0065752Z copying build\lib.win-amd64-cpython-39\torch\jit\unsupported_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0072183Z copying build\lib.win-amd64-cpython-39\torch\jit\_async.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0078397Z copying build\lib.win-amd64-cpython-39\torch\jit\_await.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0084374Z copying build\lib.win-amd64-cpython-39\torch\jit\_builtins.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0090185Z copying build\lib.win-amd64-cpython-39\torch\jit\_check.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0095907Z copying build\lib.win-amd64-cpython-39\torch\jit\_dataclass_impls.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0101900Z copying build\lib.win-amd64-cpython-39\torch\jit\_decompositions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0108229Z copying build\lib.win-amd64-cpython-39\torch\jit\_decomposition_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0114421Z copying build\lib.win-amd64-cpython-39\torch\jit\_freeze.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0120622Z copying build\lib.win-amd64-cpython-39\torch\jit\_fuser.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0126844Z copying build\lib.win-amd64-cpython-39\torch\jit\_ir_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0132503Z copying build\lib.win-amd64-cpython-39\torch\jit\_logging.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0137799Z copying build\lib.win-amd64-cpython-39\torch\jit\_monkeytype_config.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0143823Z creating build\bdist.win-amd64\wheel\torch\jit\_passes 2025-07-24T05:24:20.0147603Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\_property_propagation.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-07-24T05:24:20.0153702Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-07-24T05:24:20.0158285Z copying build\lib.win-amd64-cpython-39\torch\jit\_pickle.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0164198Z copying build\lib.win-amd64-cpython-39\torch\jit\_recursive.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0171096Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0178113Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.pyi -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0184324Z copying build\lib.win-amd64-cpython-39\torch\jit\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0200881Z copying build\lib.win-amd64-cpython-39\torch\jit\_shape_functions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0207772Z copying build\lib.win-amd64-cpython-39\torch\jit\_state.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0213903Z copying build\lib.win-amd64-cpython-39\torch\jit\_trace.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0221095Z copying build\lib.win-amd64-cpython-39\torch\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-24T05:24:20.0228061Z creating build\bdist.win-amd64\wheel\torch\lib 2025-07-24T05:24:20.0231739Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:20.0240601Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:20.0247642Z copying build\lib.win-amd64-cpython-39\torch\lib\asmjit.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:20.0257716Z copying build\lib.win-amd64-cpython-39\torch\lib\asmjit.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:20.0266468Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:20.0284377Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:20.0290606Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:20.0308124Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:20.0321600Z copying build\lib.win-amd64-cpython-39\torch\lib\c10_cuda.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:20.0331960Z copying build\lib.win-amd64-cpython-39\torch\lib\c10_cuda.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:20.0339172Z copying build\lib.win-amd64-cpython-39\torch\lib\caffe2_nvrtc.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:20.0345668Z copying build\lib.win-amd64-cpython-39\torch\lib\caffe2_nvrtc.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:20.0351865Z copying build\lib.win-amd64-cpython-39\torch\lib\cpuinfo.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:20.0363509Z copying build\lib.win-amd64-cpython-39\torch\lib\dnnl.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:22.5795250Z copying build\lib.win-amd64-cpython-39\torch\lib\fbgemm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:22.5877278Z copying build\lib.win-amd64-cpython-39\torch\lib\fbgemm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:22.5896253Z copying build\lib.win-amd64-cpython-39\torch\lib\fmt.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:22.5938788Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:22.5946582Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:22.5953132Z copying build\lib.win-amd64-cpython-39\torch\lib\kineto.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:22.6839743Z copying build\lib.win-amd64-cpython-39\torch\lib\libittnotify.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:22.6851363Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf-lite.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:22.7021658Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:22.8037264Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotoc.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:23.4561487Z creating build\bdist.win-amd64\wheel\torch\lib\libshm 2025-07-24T05:24:23.4565066Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\alloc_info.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-07-24T05:24:23.4571542Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\err.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-07-24T05:24:23.4579227Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-07-24T05:24:23.4584498Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\socket.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-07-24T05:24:23.4590748Z creating build\bdist.win-amd64\wheel\torch\lib\libshm_windows 2025-07-24T05:24:23.4594784Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm_windows\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm_windows 2025-07-24T05:24:23.4600297Z copying build\lib.win-amd64-cpython-39\torch\lib\microkernels-prod.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:23.4788132Z copying build\lib.win-amd64-cpython-39\torch\lib\pthreadpool.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:23.4804081Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:23.4809625Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:23.4815576Z copying build\lib.win-amd64-cpython-39\torch\lib\sleef.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:23.5114330Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:23.5120918Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:23.5126933Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:23.5142071Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:23.5150929Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:23.7525618Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:24.2849666Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cuda.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:24.5123993Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cuda.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:24.5149449Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_global_deps.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:24.5156409Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:24.5315686Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:24.5326363Z copying build\lib.win-amd64-cpython-39\torch\lib\XNNPACK.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:24.5456073Z copying build\lib.win-amd64-cpython-39\torch\lib\_C.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-24T05:24:24.5462520Z copying build\lib.win-amd64-cpython-39\torch\library.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:24.5469925Z creating build\bdist.win-amd64\wheel\torch\linalg 2025-07-24T05:24:24.5473568Z copying build\lib.win-amd64-cpython-39\torch\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\linalg 2025-07-24T05:24:24.5481611Z creating build\bdist.win-amd64\wheel\torch\masked 2025-07-24T05:24:24.5485407Z creating build\bdist.win-amd64\wheel\torch\masked\maskedtensor 2025-07-24T05:24:24.5494260Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\binary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:24:24.5500190Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\core.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:24:24.5506174Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\creation.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:24:24.5512173Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\passthrough.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:24:24.5518402Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\reductions.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:24:24.5623113Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\unary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:24:24.5629108Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\_ops_refs.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:24:24.5636076Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-24T05:24:24.5641510Z copying build\lib.win-amd64-cpython-39\torch\masked\_docs.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-07-24T05:24:24.5648187Z copying build\lib.win-amd64-cpython-39\torch\masked\_ops.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-07-24T05:24:24.5655087Z copying build\lib.win-amd64-cpython-39\torch\masked\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-07-24T05:24:24.5661942Z creating build\bdist.win-amd64\wheel\torch\monitor 2025-07-24T05:24:24.5665563Z copying build\lib.win-amd64-cpython-39\torch\monitor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\monitor 2025-07-24T05:24:24.5672139Z creating build\bdist.win-amd64\wheel\torch\mps 2025-07-24T05:24:24.5676007Z copying build\lib.win-amd64-cpython-39\torch\mps\event.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-07-24T05:24:24.5681659Z copying build\lib.win-amd64-cpython-39\torch\mps\profiler.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-07-24T05:24:24.5687250Z copying build\lib.win-amd64-cpython-39\torch\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-07-24T05:24:24.5693219Z creating build\bdist.win-amd64\wheel\torch\mtia 2025-07-24T05:24:24.5696533Z copying build\lib.win-amd64-cpython-39\torch\mtia\memory.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-07-24T05:24:24.5702118Z copying build\lib.win-amd64-cpython-39\torch\mtia\_utils.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-07-24T05:24:24.5709309Z copying build\lib.win-amd64-cpython-39\torch\mtia\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-07-24T05:24:24.5715695Z creating build\bdist.win-amd64\wheel\torch\multiprocessing 2025-07-24T05:24:24.5719060Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\pool.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-24T05:24:24.5725517Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\queue.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-24T05:24:24.5731326Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\reductions.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-24T05:24:24.5737526Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\spawn.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-24T05:24:24.5743261Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\_atfork.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-24T05:24:24.5856858Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-24T05:24:24.5862515Z creating build\bdist.win-amd64\wheel\torch\nested 2025-07-24T05:24:24.5865943Z creating build\bdist.win-amd64\wheel\torch\nested\_internal 2025-07-24T05:24:24.5869419Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_int.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-07-24T05:24:24.5875703Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_tensor.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-07-24T05:24:24.5882405Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\ops.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-07-24T05:24:24.5889435Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-07-24T05:24:24.6032119Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-07-24T05:24:24.6036423Z copying build\lib.win-amd64-cpython-39\torch\nested\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested 2025-07-24T05:24:24.6043217Z creating build\bdist.win-amd64\wheel\torch\nn 2025-07-24T05:24:24.6047803Z creating build\bdist.win-amd64\wheel\torch\nn\attention 2025-07-24T05:24:24.6051284Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\bias.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-07-24T05:24:24.6057468Z creating build\bdist.win-amd64\wheel\torch\nn\attention\experimental 2025-07-24T05:24:24.6061245Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\_paged_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-07-24T05:24:24.6067279Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-07-24T05:24:24.6073145Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-07-24T05:24:24.6080947Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-07-24T05:24:24.6180161Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-07-24T05:24:24.6185995Z creating build\bdist.win-amd64\wheel\torch\nn\backends 2025-07-24T05:24:24.6189280Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\thnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-07-24T05:24:24.6195080Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-07-24T05:24:24.6200026Z copying build\lib.win-amd64-cpython-39\torch\nn\common_types.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:24:24.6205807Z copying build\lib.win-amd64-cpython-39\torch\nn\cpp.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:24:24.6211606Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:24:25.1907176Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:24:25.1913781Z copying build\lib.win-amd64-cpython-39\torch\nn\grad.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:24:25.1919623Z copying build\lib.win-amd64-cpython-39\torch\nn\init.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:24:25.1926578Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic 2025-07-24T05:24:25.1930515Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\modules 2025-07-24T05:24:25.1934160Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\fused.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-07-24T05:24:25.1939729Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-07-24T05:24:25.1945500Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat 2025-07-24T05:24:25.1949097Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat\modules 2025-07-24T05:24:25.1953266Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules\conv_fused.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat\modules 2025-07-24T05:24:25.1959199Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules\linear_fused.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat\modules 2025-07-24T05:24:25.1965007Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat\modules 2025-07-24T05:24:25.1970444Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat\modules 2025-07-24T05:24:25.2440497Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat 2025-07-24T05:24:25.2446379Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized 2025-07-24T05:24:25.2450093Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic 2025-07-24T05:24:25.2453884Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:24:25.2457233Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:24:25.2462990Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-24T05:24:25.2468694Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\dynamic 2025-07-24T05:24:25.2474519Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\modules 2025-07-24T05:24:25.2478007Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules\bn_relu.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\modules 2025-07-24T05:24:25.2483727Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules\conv_relu.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\modules 2025-07-24T05:24:25.3426526Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\modules 2025-07-24T05:24:25.3432084Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\modules 2025-07-24T05:24:25.3437751Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized 2025-07-24T05:24:25.3443246Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic 2025-07-24T05:24:25.3450311Z creating build\bdist.win-amd64\wheel\torch\nn\modules 2025-07-24T05:24:25.3453669Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3460799Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\adaptive.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3466626Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3473440Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\channelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3889900Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\container.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3896855Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3904171Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\distance.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3910204Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3916236Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\flatten.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3921797Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\fold.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3927453Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\instancenorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3933712Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\lazy.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3939686Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3945372Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\loss.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3952780Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\module.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3960307Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3966204Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\padding.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3972317Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pixelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3978363Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pooling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3985001Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3991878Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\sparse.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.3998109Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\transformer.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.4005208Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\upsampling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.4011383Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.4017157Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.4022902Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-24T05:24:25.4029456Z creating build\bdist.win-amd64\wheel\torch\nn\parallel 2025-07-24T05:24:25.4033158Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\comm.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:24:25.4039071Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:24:25.4044707Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\distributed.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:24:25.4051845Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\parallel_apply.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:24:25.4764064Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\replicate.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:24:25.4769924Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\scatter_gather.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:24:25.4776224Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:24:25.4781552Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-24T05:24:25.4787584Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:24:25.4793557Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:24:25.4799920Z creating build\bdist.win-amd64\wheel\torch\nn\qat 2025-07-24T05:24:25.4803316Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic 2025-07-24T05:24:25.4806990Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic\modules 2025-07-24T05:24:25.4810317Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\dynamic\modules 2025-07-24T05:24:25.4816053Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\dynamic\modules 2025-07-24T05:24:25.4821633Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\dynamic 2025-07-24T05:24:25.4827259Z creating build\bdist.win-amd64\wheel\torch\nn\qat\modules 2025-07-24T05:24:25.4830769Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-07-24T05:24:25.4836438Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-07-24T05:24:25.4841802Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-07-24T05:24:25.4847184Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-07-24T05:24:25.4852423Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat 2025-07-24T05:24:25.5192311Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable 2025-07-24T05:24:25.5196489Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable\modules 2025-07-24T05:24:25.5201287Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-07-24T05:24:25.5207849Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-07-24T05:24:25.5214100Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-07-24T05:24:25.5219535Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable 2025-07-24T05:24:25.5225687Z creating build\bdist.win-amd64\wheel\torch\nn\quantized 2025-07-24T05:24:25.5229156Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic 2025-07-24T05:24:25.5240727Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic\modules 2025-07-24T05:24:25.5244191Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic\modules 2025-07-24T05:24:25.5249654Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic\modules 2025-07-24T05:24:25.5255160Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic\modules 2025-07-24T05:24:25.5260729Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic\modules 2025-07-24T05:24:25.5266439Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic 2025-07-24T05:24:25.5271847Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-07-24T05:24:25.5277298Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\modules 2025-07-24T05:24:25.5280659Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:24:25.5286301Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:24:25.5291792Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:24:25.5297125Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:24:25.5302410Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:24:25.5619142Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\functional_modules.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:24:25.5624420Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:24:25.5630670Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:24:25.5636592Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:24:25.5641970Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:24:25.5647982Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-24T05:24:25.5654234Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference 2025-07-24T05:24:26.1191694Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference\modules 2025-07-24T05:24:26.1195224Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-07-24T05:24:26.1202050Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-07-24T05:24:26.1207946Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-07-24T05:24:26.1213810Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\sparse.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-07-24T05:24:26.1219333Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-07-24T05:24:26.1225418Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-07-24T05:24:26.1231273Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference 2025-07-24T05:24:26.1236084Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-07-24T05:24:26.1242510Z creating build\bdist.win-amd64\wheel\torch\nn\utils 2025-07-24T05:24:26.1245989Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\clip_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1252298Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\convert_parameters.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1257755Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\fusion.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1263265Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\init.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1269108Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\memory_format.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1493981Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrizations.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1500421Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrize.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1506974Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\prune.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1514051Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1520965Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\spectral_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1527222Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\stateless.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1533398Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\weight_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1539370Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_deprecation_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1545950Z creating build\bdist.win-amd64\wheel\torch\nn\utils\_expanded_weights 2025-07-24T05:24:26.1549892Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\conv_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:24:26.1556403Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\conv_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:24:26.1561985Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\embedding_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:24:26.1832128Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\expanded_weights_impl.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:24:26.1837859Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\expanded_weights_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:24:26.1844168Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:24:26.1850181Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:24:26.1855976Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:24:26.1862167Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\linear_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:24:26.1867860Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-07-24T05:24:26.1873575Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_named_member_accessor.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1879340Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_per_sample_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1885347Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-24T05:24:26.1891169Z copying build\lib.win-amd64-cpython-39\torch\nn\_reduction.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:24:26.1896788Z copying build\lib.win-amd64-cpython-39\torch\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-24T05:24:26.1903815Z creating build\bdist.win-amd64\wheel\torch\onnx 2025-07-24T05:24:26.1907298Z copying build\lib.win-amd64-cpython-39\torch\onnx\errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.1913155Z copying build\lib.win-amd64-cpython-39\torch\onnx\operators.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.1919682Z creating build\bdist.win-amd64\wheel\torch\onnx\ops 2025-07-24T05:24:26.1923202Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_dtype_mappings.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-07-24T05:24:26.1928858Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_impl.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-07-24T05:24:26.1934519Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_symbolic_impl.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-07-24T05:24:26.1940320Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-07-24T05:24:26.1946316Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_helper.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.1953672Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset10.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.2239573Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset11.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.2246606Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset12.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.2252812Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset13.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.2259202Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset14.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.2265083Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset15.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.2271278Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset16.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.2277208Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset17.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.2283358Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset18.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.2289220Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset19.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.2294799Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset20.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.2300567Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset7.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.2306451Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset8.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.2312642Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset9.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.2321811Z copying build\lib.win-amd64-cpython-39\torch\onnx\utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.2328652Z copying build\lib.win-amd64-cpython-39\torch\onnx\verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.8377958Z copying build\lib.win-amd64-cpython-39\torch\onnx\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.8383465Z copying build\lib.win-amd64-cpython-39\torch\onnx\_experimental.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.8389245Z copying build\lib.win-amd64-cpython-39\torch\onnx\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.8395344Z copying build\lib.win-amd64-cpython-39\torch\onnx\_globals.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:26.8401597Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal 2025-07-24T05:24:26.8405334Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter 2025-07-24T05:24:26.8408779Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_analysis.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.8414548Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_building.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.8420915Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_capture_strategies.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.8426945Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_compat.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9453668Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9458958Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_core.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9466134Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_decomp.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9472165Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dispatching.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9480703Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9485859Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9489943Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9495394Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_fx_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9501509Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_ir_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9507621Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_isolated.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9513412Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_onnx_program.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9519668Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9525656Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_reporting.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9531535Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_schemas.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9537726Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_tensors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9543455Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_testing.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:26.9550057Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:24:26.9553829Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:24:26.9557236Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\core.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:24:26.9563214Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\hop.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:24:26.9569034Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\nn.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:24:26.9574642Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:24:26.9580248Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\symops.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:24:26.9593194Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-24T05:24:26.9595997Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:24:26.9601043Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:24:26.9606819Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib 2025-07-24T05:24:27.0504982Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_type_casting.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:27.0510927Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:27.8433488Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-24T05:24:27.8440063Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx 2025-07-24T05:24:27.8443965Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx\passes 2025-07-24T05:24:27.8448072Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\type_promotion.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-07-24T05:24:27.9282256Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-07-24T05:24:27.9759232Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-07-24T05:24:27.9764919Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\patcher.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-07-24T05:24:27.9770588Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\serialization.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-07-24T05:24:27.9776535Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-07-24T05:24:27.9782360Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\_pass.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-07-24T05:24:28.0318939Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-07-24T05:24:28.0325130Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-24T05:24:28.0331666Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\onnx_proto_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-24T05:24:29.0312800Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-24T05:24:29.0318561Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_exporter_legacy.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-24T05:24:29.0324646Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_lazy_import.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-24T05:24:29.0331266Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-24T05:24:29.0335935Z copying build\lib.win-amd64-cpython-39\torch\onnx\_onnx_supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:29.0341841Z copying build\lib.win-amd64-cpython-39\torch\onnx\_type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:29.0348112Z copying build\lib.win-amd64-cpython-39\torch\onnx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-24T05:24:29.0355278Z creating build\bdist.win-amd64\wheel\torch\optim 2025-07-24T05:24:29.0360193Z copying build\lib.win-amd64-cpython-39\torch\optim\adadelta.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:29.0366479Z copying build\lib.win-amd64-cpython-39\torch\optim\adagrad.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:29.0372771Z copying build\lib.win-amd64-cpython-39\torch\optim\adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:29.0379759Z copying build\lib.win-amd64-cpython-39\torch\optim\adamax.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:29.0386827Z copying build\lib.win-amd64-cpython-39\torch\optim\adamw.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:29.0748575Z copying build\lib.win-amd64-cpython-39\torch\optim\asgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:29.0755965Z copying build\lib.win-amd64-cpython-39\torch\optim\lbfgs.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:30.0583017Z copying build\lib.win-amd64-cpython-39\torch\optim\lr_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:30.0590725Z copying build\lib.win-amd64-cpython-39\torch\optim\nadam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:30.0596734Z copying build\lib.win-amd64-cpython-39\torch\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:30.0603243Z copying build\lib.win-amd64-cpython-39\torch\optim\radam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:30.0609295Z copying build\lib.win-amd64-cpython-39\torch\optim\rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:30.0615292Z copying build\lib.win-amd64-cpython-39\torch\optim\rprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:30.0621194Z copying build\lib.win-amd64-cpython-39\torch\optim\sgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:30.0627221Z copying build\lib.win-amd64-cpython-39\torch\optim\sparse_adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:30.0633097Z copying build\lib.win-amd64-cpython-39\torch\optim\swa_utils.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:30.0639223Z copying build\lib.win-amd64-cpython-39\torch\optim\_adafactor.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:30.0645401Z copying build\lib.win-amd64-cpython-39\torch\optim\_functional.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:30.0652144Z creating build\bdist.win-amd64\wheel\torch\optim\_multi_tensor 2025-07-24T05:24:30.0655651Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-07-24T05:24:30.0661294Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-07-24T05:24:30.0666533Z copying build\lib.win-amd64-cpython-39\torch\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-24T05:24:30.0672779Z copying build\lib.win-amd64-cpython-39\torch\overrides.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:30.0680496Z creating build\bdist.win-amd64\wheel\torch\package 2025-07-24T05:24:30.1833727Z creating build\bdist.win-amd64\wheel\torch\package\analyze 2025-07-24T05:24:30.1837444Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\find_first_use_of_broken_modules.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-07-24T05:24:30.1843876Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\is_from_package.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-07-24T05:24:30.1849609Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\trace_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-07-24T05:24:30.2223159Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-07-24T05:24:30.2229822Z copying build\lib.win-amd64-cpython-39\torch\package\file_structure_representation.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:24:30.2236514Z copying build\lib.win-amd64-cpython-39\torch\package\find_file_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:24:30.2242995Z copying build\lib.win-amd64-cpython-39\torch\package\glob_group.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:24:31.2092300Z copying build\lib.win-amd64-cpython-39\torch\package\importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:24:31.2098092Z copying build\lib.win-amd64-cpython-39\torch\package\package_exporter.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:24:31.2105711Z copying build\lib.win-amd64-cpython-39\torch\package\package_importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:24:31.2111926Z copying build\lib.win-amd64-cpython-39\torch\package\_digraph.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:24:31.2117831Z copying build\lib.win-amd64-cpython-39\torch\package\_directory_reader.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:24:31.2123567Z copying build\lib.win-amd64-cpython-39\torch\package\_importlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:24:31.2129344Z copying build\lib.win-amd64-cpython-39\torch\package\_mangling.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:24:31.2134928Z copying build\lib.win-amd64-cpython-39\torch\package\_mock.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:24:31.2140537Z copying build\lib.win-amd64-cpython-39\torch\package\_package_pickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:24:31.2146411Z copying build\lib.win-amd64-cpython-39\torch\package\_package_unpickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:24:31.2152585Z copying build\lib.win-amd64-cpython-39\torch\package\_stdlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:24:31.2158306Z copying build\lib.win-amd64-cpython-39\torch\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-24T05:24:31.2164761Z creating build\bdist.win-amd64\wheel\torch\profiler 2025-07-24T05:24:31.2168282Z copying build\lib.win-amd64-cpython-39\torch\profiler\itt.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-24T05:24:31.2174189Z copying build\lib.win-amd64-cpython-39\torch\profiler\profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-24T05:24:31.2180403Z copying build\lib.win-amd64-cpython-39\torch\profiler\python_tracer.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-24T05:24:31.2185814Z copying build\lib.win-amd64-cpython-39\torch\profiler\_memory_profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-24T05:24:31.2192416Z copying build\lib.win-amd64-cpython-39\torch\profiler\_pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-24T05:24:31.2667856Z copying build\lib.win-amd64-cpython-39\torch\profiler\_utils.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-24T05:24:31.2673238Z copying build\lib.win-amd64-cpython-39\torch\profiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-24T05:24:31.2679165Z copying build\lib.win-amd64-cpython-39\torch\py.typed -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:31.2685037Z creating build\bdist.win-amd64\wheel\torch\quantization 2025-07-24T05:24:31.2688866Z copying build\lib.win-amd64-cpython-39\torch\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.2694646Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.2700194Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.2994346Z creating build\bdist.win-amd64\wheel\torch\quantization\fx 2025-07-24T05:24:31.2997732Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:24:31.3003149Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:24:31.3008583Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fusion_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:24:31.3014607Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:24:31.3020739Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:24:31.3328384Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:24:31.3334052Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:24:31.3339955Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:24:31.3345886Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_types.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:24:31.3351604Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:24:31.3357245Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:24:31.3362970Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-24T05:24:31.3368517Z copying build\lib.win-amd64-cpython-39\torch\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.3374213Z copying build\lib.win-amd64-cpython-39\torch\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.3379960Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.3385681Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.3391621Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.3397552Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.3404139Z copying build\lib.win-amd64-cpython-39\torch\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.3409619Z copying build\lib.win-amd64-cpython-39\torch\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.3415054Z copying build\lib.win-amd64-cpython-39\torch\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.3420771Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.3426644Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.3432729Z copying build\lib.win-amd64-cpython-39\torch\quantization\_quantized_conversions.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.3438936Z copying build\lib.win-amd64-cpython-39\torch\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-24T05:24:31.3444902Z copying build\lib.win-amd64-cpython-39\torch\quasirandom.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:31.3450714Z copying build\lib.win-amd64-cpython-39\torch\random.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:31.3456402Z copying build\lib.win-amd64-cpython-39\torch\return_types.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:31.3462651Z copying build\lib.win-amd64-cpython-39\torch\return_types.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:31.3469204Z copying build\lib.win-amd64-cpython-39\torch\serialization.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:31.3477887Z creating build\bdist.win-amd64\wheel\torch\share 2025-07-24T05:24:31.3481411Z creating build\bdist.win-amd64\wheel\torch\share\cmake 2025-07-24T05:24:31.3485216Z creating build\bdist.win-amd64\wheel\torch\share\cmake\ATen 2025-07-24T05:24:31.3488916Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\ATen\ATenConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\ATen 2025-07-24T05:24:31.3494681Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2 2025-07-24T05:24:31.3498133Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-24T05:24:31.3504402Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-24T05:24:31.3510399Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-24T05:24:31.9147464Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-24T05:24:31.9150734Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-24T05:24:31.9152029Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-24T05:24:31.9153122Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-24T05:24:31.9153974Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-24T05:24:31.9154892Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-24T05:24:31.9156163Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-24T05:24:31.9157126Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:24:31.9158243Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\CMakeInitializeConfigs.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:24:31.9159385Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:24:31.9160534Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\make2cmake.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:24:31.9162091Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\parse_cubin.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:24:31.9163636Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\run_nvcc.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:24:31.9165204Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\select_compute_arch.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-24T05:24:31.9166709Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:24:31.9168228Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageHandleStandardArgs.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:24:32.4573073Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageMessage.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-24T05:24:32.4580019Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\public 2025-07-24T05:24:32.4584575Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\cuda.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:24:32.4590578Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\gflags.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:24:32.4597055Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\glog.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:24:32.4603358Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\LoadHIP.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:24:32.4908343Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\mkl.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:24:32.4914730Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\mkldnn.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:24:32.4920879Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\protobuf.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:24:32.4927076Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\utils.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:24:32.4934759Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\xpu.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-07-24T05:24:32.4941467Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Torch 2025-07-24T05:24:32.4945743Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-07-24T05:24:32.4952433Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-07-24T05:24:32.4958595Z creating build\bdist.win-amd64\wheel\torch\signal 2025-07-24T05:24:32.4961972Z creating build\bdist.win-amd64\wheel\torch\signal\windows 2025-07-24T05:24:32.4965855Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\windows.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-07-24T05:24:32.4971720Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-07-24T05:24:32.4977227Z copying build\lib.win-amd64-cpython-39\torch\signal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal 2025-07-24T05:24:32.4983012Z creating build\bdist.win-amd64\wheel\torch\sparse 2025-07-24T05:24:32.4986380Z copying build\lib.win-amd64-cpython-39\torch\sparse\semi_structured.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-24T05:24:32.4993459Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_conversions.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-24T05:24:32.4998919Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-24T05:24:32.5871127Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-24T05:24:32.5878249Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops_meta.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-24T05:24:32.5888995Z copying build\lib.win-amd64-cpython-39\torch\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-24T05:24:32.5896062Z creating build\bdist.win-amd64\wheel\torch\special 2025-07-24T05:24:32.5899444Z copying build\lib.win-amd64-cpython-39\torch\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\special 2025-07-24T05:24:32.5906239Z copying build\lib.win-amd64-cpython-39\torch\storage.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:33.1025568Z creating build\bdist.win-amd64\wheel\torch\test 2025-07-24T05:24:33.1029369Z copying build\lib.win-amd64-cpython-39\torch\test\apply_utils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1039713Z copying build\lib.win-amd64-cpython-39\torch\test\atest.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1050173Z copying build\lib.win-amd64-cpython-39\torch\test\backend_fallback_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1059815Z copying build\lib.win-amd64-cpython-39\torch\test\basic.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1339666Z copying build\lib.win-amd64-cpython-39\torch\test\broadcast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1348902Z copying build\lib.win-amd64-cpython-39\torch\test\c10_accumulate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1357904Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ArrayRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1366560Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bfloat16_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1375623Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Bitset_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1385242Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bit_cast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1394549Z copying build\lib.win-amd64-cpython-39\torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1403565Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1413721Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1424089Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ConstexprCrc_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1433075Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1443157Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_1_var_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1452950Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_catches_stream.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.1462264Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.6802498Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_from_2_processes.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.6811810Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.6821756Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.6831838Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.6840773Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDATest.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:33.6849769Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeadlockDetection_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.2176381Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.2186153Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.2196266Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DispatchKeySet_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.2206814Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Enumerate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.2217654Z copying build\lib.win-amd64-cpython-39\torch\test\c10_error_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.2227147Z copying build\lib.win-amd64-cpython-39\torch\test\c10_exception_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.2236697Z copying build\lib.win-amd64-cpython-39\torch\test\c10_flags_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.2245962Z copying build\lib.win-amd64-cpython-39\torch\test\c10_generic_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.2255346Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.2264503Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineDeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.7358178Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineStreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.7367785Z copying build\lib.win-amd64-cpython-39\torch\test\c10_IntrusiveList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.7377047Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_benchmark.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.7386194Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.7402321Z copying build\lib.win-amd64-cpython-39\torch\test\c10_irange_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.7411918Z copying build\lib.win-amd64-cpython-39\torch\test\c10_lazy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.7420972Z copying build\lib.win-amd64-cpython-39\torch\test\c10_LeftRight_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:34.7430356Z copying build\lib.win-amd64-cpython-39\torch\test\c10_logging_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:35.7276122Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Metaprogramming_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:35.7286017Z copying build\lib.win-amd64-cpython-39\torch\test\c10_NetworkFlow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:35.7295456Z copying build\lib.win-amd64-cpython-39\torch\test\c10_optional_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:35.7306877Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ordered_preserving_dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:35.7317006Z copying build\lib.win-amd64-cpython-39\torch\test\c10_registry_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:35.7326308Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:35.7335746Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Semaphore_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:35.7344936Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SizesAndStrides_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.2476909Z copying build\lib.win-amd64-cpython-39\torch\test\c10_small_vector_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.2491759Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ssize_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.2501233Z copying build\lib.win-amd64-cpython-39\torch\test\c10_StreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.2510426Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_util_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.2520016Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_view_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.2528677Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SymInt_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.2537983Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Synchronized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.2547545Z copying build\lib.win-amd64-cpython-39\torch\test\c10_tempfile_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.2556758Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ThreadLocal_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.7509000Z copying build\lib.win-amd64-cpython-39\torch\test\c10_typeid_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.7518688Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeIndex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.7527865Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.7537051Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeTraits_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.7546274Z copying build\lib.win-amd64-cpython-39\torch\test\CppSignature_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.7555638Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.7565785Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_generator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:36.7575670Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_profiling_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2780768Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_rng_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2793721Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_allocatorTraceTracker_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2802893Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2812691Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_apply_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2822401Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_atomic_ops_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2833151Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_caching_host_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2843201Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_complex_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2853612Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_complex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2863727Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_cub_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2873912Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_cudnn_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2883609Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2893395Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_distributions_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2905559Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_dlconvertor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2916656Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_exchange_device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2926097Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_generator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2935484Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:37.2945378Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_integer_divider_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.7985555Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_optional_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.7995347Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_packedtensoraccessor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8005864Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_reportMemoryUsage_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8016341Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_stream_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8027086Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_vectorized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8037563Z copying build\lib.win-amd64-cpython-39\torch\test\Dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8048624Z copying build\lib.win-amd64-cpython-39\torch\test\Dimname_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8058484Z copying build\lib.win-amd64-cpython-39\torch\test\dlconvertor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8068081Z copying build\lib.win-amd64-cpython-39\torch\test\extension_backend_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8078316Z copying build\lib.win-amd64-cpython-39\torch\test\half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8088520Z copying build\lib.win-amd64-cpython-39\torch\test\IListRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8098842Z copying build\lib.win-amd64-cpython-39\torch\test\inline_container_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8109277Z copying build\lib.win-amd64-cpython-39\torch\test\ivalue_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8121427Z copying build\lib.win-amd64-cpython-39\torch\test\KernelFunction_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8132530Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8146178Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8158746Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:38.8172637Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8024008Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_stackbased_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8034688Z copying build\lib.win-amd64-cpython-39\torch\test\lazy_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8045491Z copying build\lib.win-amd64-cpython-39\torch\test\legacy_vmap_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8057437Z copying build\lib.win-amd64-cpython-39\torch\test\List_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8070487Z copying build\lib.win-amd64-cpython-39\torch\test\make_boxed_from_unboxed_functor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8082625Z copying build\lib.win-amd64-cpython-39\torch\test\math_kernel_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8092826Z copying build\lib.win-amd64-cpython-39\torch\test\MaybeOwned_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8103879Z copying build\lib.win-amd64-cpython-39\torch\test\memory_format_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8113219Z copying build\lib.win-amd64-cpython-39\torch\test\memory_overlapping_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8123476Z copying build\lib.win-amd64-cpython-39\torch\test\mobile_memory_cleanup.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8133157Z copying build\lib.win-amd64-cpython-39\torch\test\NamedTensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8142940Z copying build\lib.win-amd64-cpython-39\torch\test\native_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8154702Z copying build\lib.win-amd64-cpython-39\torch\test\operators_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8164335Z copying build\lib.win-amd64-cpython-39\torch\test\operator_name_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8173552Z copying build\lib.win-amd64-cpython-39\torch\test\op_allowlist_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8182444Z copying build\lib.win-amd64-cpython-39\torch\test\op_registration_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8210537Z copying build\lib.win-amd64-cpython-39\torch\test\packedtensoraccessor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8219983Z copying build\lib.win-amd64-cpython-39\torch\test\pow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8231370Z copying build\lib.win-amd64-cpython-39\torch\test\quantized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8241482Z copying build\lib.win-amd64-cpython-39\torch\test\reduce_ops_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8251837Z copying build\lib.win-amd64-cpython-39\torch\test\reportMemoryUsage_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8261125Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8271832Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8282455Z copying build\lib.win-amd64-cpython-39\torch\test\StorageUtils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8292203Z copying build\lib.win-amd64-cpython-39\torch\test\stride_properties_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8301502Z copying build\lib.win-amd64-cpython-39\torch\test\tensor_iterator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8312982Z copying build\lib.win-amd64-cpython-39\torch\test\test_parallel.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8322974Z copying build\lib.win-amd64-cpython-39\torch\test\thread_init_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8330328Z copying build\lib.win-amd64-cpython-39\torch\test\type_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8340095Z copying build\lib.win-amd64-cpython-39\torch\test\type_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8349711Z copying build\lib.win-amd64-cpython-39\torch\test\undefined_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8359409Z copying build\lib.win-amd64-cpython-39\torch\test\verify_api_visibility.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8368953Z copying build\lib.win-amd64-cpython-39\torch\test\weakref_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:39.8378544Z copying build\lib.win-amd64-cpython-39\torch\test\wrapdim_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:40.7096528Z copying build\lib.win-amd64-cpython-39\torch\test\xla_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-24T05:24:40.7107003Z creating build\bdist.win-amd64\wheel\torch\testing 2025-07-24T05:24:40.7110681Z copying build\lib.win-amd64-cpython-39\torch\testing\_comparison.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-07-24T05:24:40.7117526Z copying build\lib.win-amd64-cpython-39\torch\testing\_creation.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-07-24T05:24:40.7124944Z creating build\bdist.win-amd64\wheel\torch\testing\_internal 2025-07-24T05:24:40.7129198Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autocast_test_lists.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7135579Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autograd_function_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7143041Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\check_kernel_launches.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7482554Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\codegen 2025-07-24T05:24:40.7486098Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\codegen 2025-07-24T05:24:40.7491330Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_cuda.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7497439Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_device_type.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7504929Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_distributed.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7512158Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dist_composable.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7518095Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dtype.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7524078Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_fsdp.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7531105Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_jit.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7537327Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_methods_invocations.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7554971Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7561141Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_modules.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7569357Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mps.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7576485Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_nn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7584524Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_optimizers.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7591970Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_pruning.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.7599010Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantization.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8021312Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantized.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8028594Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_subclass.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8034599Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8074693Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\composite_compliance.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8081152Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_op_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8087802Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8094154Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\data 2025-07-24T05:24:40.8098291Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network1.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-07-24T05:24:40.8104041Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-07-24T05:24:40.8109884Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-07-24T05:24:40.8115652Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed 2025-07-24T05:24:40.8119448Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\checkpoint_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:24:40.8125375Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\common_state_dict.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:24:40.8131311Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:24:40.8142559Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:24:40.8153027Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:24:40.8158836Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\fake_pg.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:24:40.8164451Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\multi_threaded_pg.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:24:40.8171118Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn 2025-07-24T05:24:40.8174389Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn\api 2025-07-24T05:24:40.8177970Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api\remote_module_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\nn\api 2025-07-24T05:24:40.8184695Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\nn\api 2025-07-24T05:24:40.8189693Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\nn 2025-07-24T05:24:40.8194451Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc 2025-07-24T05:24:40.8198043Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\dist_autograd_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:24:40.8205298Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\dist_optimizer_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:24:40.8211628Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:24:40.8215005Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:24:40.8221020Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples\reinforcement_learning_rpc_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:24:40.8227411Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\examples 2025-07-24T05:24:40.8231782Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:24:40.8246293Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:24:40.8252434Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:24:40.8255806Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:24:40.8261478Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit\rpc_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:24:40.8267847Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:24:40.8273811Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\jit 2025-07-24T05:24:40.8278458Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:24:40.8283903Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\rpc_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:24:40.8292034Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:24:40.8298274Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-07-24T05:24:40.8303165Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:24:40.8308910Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard 2025-07-24T05:24:40.8312465Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:24:40.8316296Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_ops_common.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:24:40.8322408Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_st_common.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:24:40.8327878Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-24T05:24:40.8333296Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\test_common.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_shard 2025-07-24T05:24:40.8338732Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_shard 2025-07-24T05:24:40.8344242Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_tensor 2025-07-24T05:24:40.8347846Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor\common_dtensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_tensor 2025-07-24T05:24:40.8354119Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_tensor 2025-07-24T05:24:40.8359032Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-24T05:24:40.8363735Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dist_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8369867Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dynamo_test_failures.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8375373Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8381102Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8394379Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module3.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8399962Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\generated 2025-07-24T05:24:40.8403533Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\generated\annotated_fn_args.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\generated 2025-07-24T05:24:40.8415480Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\generated\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\generated 2025-07-24T05:24:40.8419785Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hop_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8425669Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hypothesis_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8431975Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\inductor_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8438000Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_metaprogramming_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8444313Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8451498Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8457899Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8471876Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo 2025-07-24T05:24:40.8475896Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\core.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-07-24T05:24:40.8482932Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo\definitions 2025-07-24T05:24:40.8487758Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\fft.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:24:40.8493567Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\linalg.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:24:40.8500262Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\nested.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:24:40.8506761Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\signal.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:24:40.8512850Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\sparse.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:24:40.8519223Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\special.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:24:40.8533155Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\_masked.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:24:40.8539578Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-07-24T05:24:40.8544976Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\refs.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-07-24T05:24:40.8550767Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-07-24T05:24:40.8556526Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-07-24T05:24:40.8562273Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\optests 2025-07-24T05:24:40.8565896Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-24T05:24:40.8572378Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\autograd_registration.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-24T05:24:40.8577861Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-24T05:24:40.8583674Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\generate_tests.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-24T05:24:40.8598331Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\make_fx.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-24T05:24:40.8634925Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-24T05:24:40.8641022Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\quantization_torch_package_models.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8646126Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\static_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8657217Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\subclasses.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8663353Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\test_module 2025-07-24T05:24:40.8666951Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module\future_div.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\test_module 2025-07-24T05:24:40.8672981Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module\no_future_div.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\test_module 2025-07-24T05:24:40.8678306Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\test_module 2025-07-24T05:24:40.8683391Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\torchbind_impls.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8689306Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8695477Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\two_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8701608Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-24T05:24:40.8706301Z copying build\lib.win-amd64-cpython-39\torch\testing\_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-07-24T05:24:40.8720257Z copying build\lib.win-amd64-cpython-39\torch\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-07-24T05:24:40.8725896Z copying build\lib.win-amd64-cpython-39\torch\torch_version.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:40.8731469Z copying build\lib.win-amd64-cpython-39\torch\types.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:40.8737746Z creating build\bdist.win-amd64\wheel\torch\utils 2025-07-24T05:24:40.8741209Z creating build\bdist.win-amd64\wheel\torch\utils\backcompat 2025-07-24T05:24:40.8744805Z copying build\lib.win-amd64-cpython-39\torch\utils\backcompat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\backcompat 2025-07-24T05:24:40.8750284Z copying build\lib.win-amd64-cpython-39\torch\utils\backend_registration.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.8757117Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark 2025-07-24T05:24:40.8760432Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\examples 2025-07-24T05:24:40.8763671Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-24T05:24:40.8776971Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-24T05:24:40.8778267Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\op_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-24T05:24:40.8790476Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\simple_timeit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-24T05:24:40.8796045Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\spectral_ops_fuzz_test.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-24T05:24:40.8810192Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-24T05:24:40.8814911Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\op_fuzzers 2025-07-24T05:24:40.8818294Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\binary.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-07-24T05:24:40.8823988Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\sparse_binary.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-07-24T05:24:40.8829666Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\sparse_unary.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-07-24T05:24:40.8835192Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\spectral.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-07-24T05:24:40.8852679Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\unary.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-07-24T05:24:40.8858423Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-07-24T05:24:40.8863159Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils 2025-07-24T05:24:40.8866775Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:24:40.8872478Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:24:40.8878293Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compile.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:24:40.8883778Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\cpp_jit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:24:40.8889207Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:24:40.8895185Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\sparse_fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:24:40.8910123Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timeit_template.cpp -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:24:40.8915707Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:24:40.8922039Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:24:40.8925844Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:24:40.8931935Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:24:40.8937630Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:24:40.8952539Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:24:40.8959266Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:24:40.8969164Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-24T05:24:40.8973605Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\_stubs.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:24:40.8979172Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-24T05:24:40.8983592Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark 2025-07-24T05:24:40.8989142Z creating build\bdist.win-amd64\wheel\torch\utils\bottleneck 2025-07-24T05:24:40.9001724Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-07-24T05:24:40.9006331Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-07-24T05:24:40.9012096Z copying build\lib.win-amd64-cpython-39\torch\utils\bundled_inputs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9018004Z copying build\lib.win-amd64-cpython-39\torch\utils\checkpoint.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9024975Z copying build\lib.win-amd64-cpython-39\torch\utils\collect_env.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9030897Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_backtrace.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9036134Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_extension.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9043629Z creating build\bdist.win-amd64\wheel\torch\utils\data 2025-07-24T05:24:40.9047079Z copying build\lib.win-amd64-cpython-39\torch\utils\data\backward_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:24:40.9052627Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataloader.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:24:40.9059742Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes 2025-07-24T05:24:40.9063392Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\dataframe 2025-07-24T05:24:40.9066830Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe\dataframes.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\dataframe 2025-07-24T05:24:40.9072676Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe\dataframe_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\dataframe 2025-07-24T05:24:40.9078181Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe\datapipes.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\dataframe 2025-07-24T05:24:40.9092849Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe\structures.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\dataframe 2025-07-24T05:24:40.9098519Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\dataframe 2025-07-24T05:24:40.9104053Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-24T05:24:40.9110102Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.pyi -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-24T05:24:40.9116040Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\gen_pyi.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-24T05:24:40.9121754Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\iter 2025-07-24T05:24:40.9134168Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\callable.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:24:40.9140028Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\combinatorics.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:24:40.9145344Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\combining.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:24:40.9151626Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\filelister.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:24:40.9166145Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\fileopener.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:24:40.9192194Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\grouping.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:24:40.9198632Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\routeddecoder.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:24:40.9204446Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\selecting.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:24:40.9209879Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\sharding.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:24:40.9215591Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\streamreader.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:24:40.9222263Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\utils.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:24:40.9228560Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-07-24T05:24:40.9235962Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\map 2025-07-24T05:24:40.9240175Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\callable.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-07-24T05:24:40.9246553Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\combinatorics.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-07-24T05:24:40.9252482Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\combining.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-07-24T05:24:40.9257731Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\grouping.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-07-24T05:24:40.9263483Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\utils.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-07-24T05:24:40.9277722Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-07-24T05:24:40.9283801Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\utils 2025-07-24T05:24:40.9288341Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\utils 2025-07-24T05:24:40.9294770Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils\decoder.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\utils 2025-07-24T05:24:40.9301116Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils\snapshot.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\utils 2025-07-24T05:24:40.9307449Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\utils 2025-07-24T05:24:40.9312356Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_decorator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-24T05:24:40.9318637Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_hook_iterator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-24T05:24:40.9324929Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_typing.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-24T05:24:40.9330839Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-24T05:24:40.9336315Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataset.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:24:40.9351336Z copying build\lib.win-amd64-cpython-39\torch\utils\data\distributed.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:24:40.9356802Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:24:40.9362433Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph_settings.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:24:40.9367899Z copying build\lib.win-amd64-cpython-39\torch\utils\data\sampler.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:24:40.9374001Z creating build\bdist.win-amd64\wheel\torch\utils\data\_utils 2025-07-24T05:24:40.9377963Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\collate.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-24T05:24:40.9383210Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\fetch.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-24T05:24:40.9388744Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\pin_memory.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-24T05:24:40.9394301Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\signal_handling.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-24T05:24:40.9417354Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\worker.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-24T05:24:40.9433001Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-24T05:24:40.9438911Z copying build\lib.win-amd64-cpython-39\torch\utils\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-24T05:24:40.9444792Z copying build\lib.win-amd64-cpython-39\torch\utils\deterministic.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9450515Z copying build\lib.win-amd64-cpython-39\torch\utils\dlpack.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9460309Z copying build\lib.win-amd64-cpython-39\torch\utils\file_baton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9465918Z copying build\lib.win-amd64-cpython-39\torch\utils\flop_counter.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9472640Z creating build\bdist.win-amd64\wheel\torch\utils\hipify 2025-07-24T05:24:40.9475986Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\constants.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-07-24T05:24:40.9481639Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\cuda_to_hip_mappings.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-07-24T05:24:40.9491557Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\hipify_python.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-07-24T05:24:40.9497710Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\version.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-07-24T05:24:40.9512401Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-07-24T05:24:40.9517636Z copying build\lib.win-amd64-cpython-39\torch\utils\hooks.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9523452Z creating build\bdist.win-amd64\wheel\torch\utils\jit 2025-07-24T05:24:40.9526836Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\log_extract.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-07-24T05:24:40.9532558Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-07-24T05:24:40.9537091Z copying build\lib.win-amd64-cpython-39\torch\utils\mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9542954Z copying build\lib.win-amd64-cpython-39\torch\utils\mobile_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9549129Z creating build\bdist.win-amd64\wheel\torch\utils\model_dump 2025-07-24T05:24:40.9552681Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\code.js -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-24T05:24:40.9558868Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\htm.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-24T05:24:40.9564757Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\preact.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-24T05:24:40.9570499Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\skeleton.html -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-24T05:24:40.9575999Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-24T05:24:40.9590815Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-24T05:24:40.9596174Z copying build\lib.win-amd64-cpython-39\torch\utils\model_zoo.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9602229Z copying build\lib.win-amd64-cpython-39\torch\utils\module_tracker.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9618371Z creating build\bdist.win-amd64\wheel\torch\utils\serialization 2025-07-24T05:24:40.9622451Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\config.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-07-24T05:24:40.9628703Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-07-24T05:24:40.9634469Z copying build\lib.win-amd64-cpython-39\torch\utils\show_pickle.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9646016Z creating build\bdist.win-amd64\wheel\torch\utils\tensorboard 2025-07-24T05:24:40.9650418Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\summary.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:24:40.9656586Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\writer.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:24:40.9663072Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_convert_np.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:24:40.9668916Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_embedding.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:24:40.9684536Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_onnx_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:24:40.9689855Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_proto_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:24:40.9695326Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_pytorch_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:24:40.9701600Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:24:40.9706740Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-24T05:24:40.9712154Z copying build\lib.win-amd64-cpython-39\torch\utils\throughput_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9718079Z creating build\bdist.win-amd64\wheel\torch\utils\viz 2025-07-24T05:24:40.9721370Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\_cycles.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-07-24T05:24:40.9728326Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-07-24T05:24:40.9732682Z copying build\lib.win-amd64-cpython-39\torch\utils\weak.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9738421Z copying build\lib.win-amd64-cpython-39\torch\utils\_appending_byte_serializer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9743863Z copying build\lib.win-amd64-cpython-39\torch\utils\_backport_slots.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9749535Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_module.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9760296Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_typing.pyi -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9765890Z copying build\lib.win-amd64-cpython-39\torch\utils\_content_store.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9781104Z copying build\lib.win-amd64-cpython-39\torch\utils\_contextlib.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9786754Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_embed_headers.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9793045Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_extension_versioner.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9798723Z copying build\lib.win-amd64-cpython-39\torch\utils\_cxx_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9805021Z copying build\lib.win-amd64-cpython-39\torch\utils\_device.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9843249Z copying build\lib.win-amd64-cpython-39\torch\utils\_dtype_abbrs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9848951Z copying build\lib.win-amd64-cpython-39\torch\utils\_exposed_in.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9854534Z copying build\lib.win-amd64-cpython-39\torch\utils\_filelock.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9860612Z copying build\lib.win-amd64-cpython-39\torch\utils\_foreach_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9872691Z copying build\lib.win-amd64-cpython-39\torch\utils\_freeze.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9878216Z copying build\lib.win-amd64-cpython-39\torch\utils\_functools.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9883860Z copying build\lib.win-amd64-cpython-39\torch\utils\_get_clean_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9889494Z copying build\lib.win-amd64-cpython-39\torch\utils\_helion.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9894722Z copying build\lib.win-amd64-cpython-39\torch\utils\_import_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9900378Z copying build\lib.win-amd64-cpython-39\torch\utils\_mode_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9905847Z copying build\lib.win-amd64-cpython-39\torch\utils\_ordered_set.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9911873Z copying build\lib.win-amd64-cpython-39\torch\utils\_python_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9918252Z copying build\lib.win-amd64-cpython-39\torch\utils\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9925085Z copying build\lib.win-amd64-cpython-39\torch\utils\_stats.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:40.9931161Z creating build\bdist.win-amd64\wheel\torch\utils\_strobelight 2025-07-24T05:24:40.9934577Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-07-24T05:24:40.9940509Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-07-24T05:24:40.9945419Z creating build\bdist.win-amd64\wheel\torch\utils\_sympy 2025-07-24T05:24:40.9957826Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\functions.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:24:40.9964606Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\interp.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:24:40.9970349Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\numbers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:24:40.9976099Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\printers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:24:40.9982138Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\reference.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:24:40.9997988Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\singleton_int.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:24:41.0003700Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\solve.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:24:41.0009499Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\symbol.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:24:41.0015314Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\value_ranges.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:24:41.0026277Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-24T05:24:41.0030909Z copying build\lib.win-amd64-cpython-39\torch\utils\_thunk.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:41.0036914Z copying build\lib.win-amd64-cpython-39\torch\utils\_traceback.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:41.0042734Z copying build\lib.win-amd64-cpython-39\torch\utils\_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:41.0048537Z copying build\lib.win-amd64-cpython-39\torch\utils\_typing_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:41.0054081Z copying build\lib.win-amd64-cpython-39\torch\utils\_zip.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:41.0060028Z copying build\lib.win-amd64-cpython-39\torch\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-24T05:24:41.0065938Z copying build\lib.win-amd64-cpython-39\torch\version.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.0072069Z creating build\bdist.win-amd64\wheel\torch\xpu 2025-07-24T05:24:41.0075495Z copying build\lib.win-amd64-cpython-39\torch\xpu\memory.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-24T05:24:41.0081245Z copying build\lib.win-amd64-cpython-39\torch\xpu\random.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-24T05:24:41.0086962Z copying build\lib.win-amd64-cpython-39\torch\xpu\streams.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-24T05:24:41.0093389Z copying build\lib.win-amd64-cpython-39\torch\xpu\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-24T05:24:41.0099012Z copying build\lib.win-amd64-cpython-39\torch\xpu\_utils.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-24T05:24:41.0104681Z copying build\lib.win-amd64-cpython-39\torch\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-24T05:24:41.0121364Z copying build\lib.win-amd64-cpython-39\torch\_appdirs.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.0128514Z creating build\bdist.win-amd64\wheel\torch\_awaits 2025-07-24T05:24:41.0132543Z copying build\lib.win-amd64-cpython-39\torch\_awaits\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_awaits 2025-07-24T05:24:41.0138915Z creating build\bdist.win-amd64\wheel\torch\_C 2025-07-24T05:24:41.0142105Z copying build\lib.win-amd64-cpython-39\torch\_C\_aoti.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0148479Z copying build\lib.win-amd64-cpython-39\torch\_C\_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0154421Z copying build\lib.win-amd64-cpython-39\torch\_C\_cpu.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0159817Z copying build\lib.win-amd64-cpython-39\torch\_C\_cudnn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0165364Z copying build\lib.win-amd64-cpython-39\torch\_C\_cusparselt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0180613Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0186462Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_c10d.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0193063Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0198774Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc_testing.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0205006Z creating build\bdist.win-amd64\wheel\torch\_C\_dynamo 2025-07-24T05:24:41.0208454Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\compiled_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-07-24T05:24:41.0213816Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\eval_frame.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-07-24T05:24:41.0219583Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\guards.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-07-24T05:24:41.0224896Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-07-24T05:24:41.0258039Z creating build\bdist.win-amd64\wheel\torch\_C\_export 2025-07-24T05:24:41.0261517Z copying build\lib.win-amd64-cpython-39\torch\_C\_export\pt2_archive_constants.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_export 2025-07-24T05:24:41.0267028Z copying build\lib.win-amd64-cpython-39\torch\_C\_export\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_export 2025-07-24T05:24:41.0277179Z copying build\lib.win-amd64-cpython-39\torch\_C\_functions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0282776Z copying build\lib.win-amd64-cpython-39\torch\_C\_functorch.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0288626Z copying build\lib.win-amd64-cpython-39\torch\_C\_instruction_counter.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0293727Z copying build\lib.win-amd64-cpython-39\torch\_C\_itt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0298938Z copying build\lib.win-amd64-cpython-39\torch\_C\_jit_tree_views.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0304560Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0310401Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy_ts_backend.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0316174Z copying build\lib.win-amd64-cpython-39\torch\_C\_monitor.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0321651Z copying build\lib.win-amd64-cpython-39\torch\_C\_nn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0327300Z copying build\lib.win-amd64-cpython-39\torch\_C\_nvtx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0332463Z copying build\lib.win-amd64-cpython-39\torch\_C\_onnx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0337866Z copying build\lib.win-amd64-cpython-39\torch\_C\_profiler.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0343540Z copying build\lib.win-amd64-cpython-39\torch\_C\_VariableFunctions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0370037Z copying build\lib.win-amd64-cpython-39\torch\_C\_verbose.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0375413Z copying build\lib.win-amd64-cpython-39\torch\_C\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-24T05:24:41.0385242Z copying build\lib.win-amd64-cpython-39\torch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.0390949Z copying build\lib.win-amd64-cpython-39\torch\_classes.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.0396487Z copying build\lib.win-amd64-cpython-39\torch\_compile.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.0402370Z creating build\bdist.win-amd64\wheel\torch\_custom_op 2025-07-24T05:24:41.0405851Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-07-24T05:24:41.0411427Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\impl.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-07-24T05:24:41.0417406Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-07-24T05:24:41.0421875Z copying build\lib.win-amd64-cpython-39\torch\_custom_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.0427938Z creating build\bdist.win-amd64\wheel\torch\_C_flatbuffer 2025-07-24T05:24:41.0588211Z copying build\lib.win-amd64-cpython-39\torch\_C_flatbuffer\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C_flatbuffer 2025-07-24T05:24:41.0593553Z creating build\bdist.win-amd64\wheel\torch\_decomp 2025-07-24T05:24:41.0596957Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-07-24T05:24:41.0604708Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_jvp.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-07-24T05:24:41.0610365Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_rng.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-07-24T05:24:41.0625754Z copying build\lib.win-amd64-cpython-39\torch\_decomp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-07-24T05:24:41.0631773Z copying build\lib.win-amd64-cpython-39\torch\_deploy.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.0637778Z creating build\bdist.win-amd64\wheel\torch\_dispatch 2025-07-24T05:24:41.0641114Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\python.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-07-24T05:24:41.0646723Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-07-24T05:24:41.0651962Z creating build\bdist.win-amd64\wheel\torch\_dynamo 2025-07-24T05:24:41.0655398Z creating build\bdist.win-amd64\wheel\torch\_dynamo\backends 2025-07-24T05:24:41.0658666Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:24:41.0664263Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:24:41.0669908Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\debugging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:24:41.0680673Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:24:41.0696603Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\inductor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:24:41.0702473Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\onnxrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:24:41.0708900Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\registry.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:24:41.0723340Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tensorrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:24:41.0725471Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\torchxla.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:24:41.0727505Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tvm.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:24:41.0733249Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-24T05:24:41.0738355Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0744837Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_transformation.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0752406Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\cache_size.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0767996Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\callback.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0773739Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\codegen.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0780000Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\code_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0785522Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\compiled_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0792740Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\comptime.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0798253Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\config.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0805002Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\convert_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0811650Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\create_parameter_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0818185Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\current_scope_id.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0823796Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0830130Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\decorators.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0836648Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\device_interface.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0846582Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0852305Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\eval_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0859108Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\exc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0865323Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\external_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0871830Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\funcname_cache.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0877732Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_break_hints.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0893459Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_break_registry.json -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0900465Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_deduplication.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0906620Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_region_tracker.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0912961Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0918556Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\guards.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0925928Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0931411Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\logging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0938716Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\metrics_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0945161Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\mutation_guard.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0951171Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\output_graph.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0968346Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\package.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0974341Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\pgo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.0981084Z creating build\bdist.win-amd64\wheel\torch\_dynamo\polyfills 2025-07-24T05:24:41.0984875Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\builtins.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:24:41.0990478Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\functools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:24:41.0996125Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\fx.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:24:41.1001745Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\itertools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:24:41.1017426Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\loader.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:24:41.1023434Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\operator.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:24:41.1029236Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\os.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:24:41.1035249Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\pytree.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:24:41.1041201Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\struct.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:24:41.1046556Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\sys.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:24:41.1051687Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:24:41.1057374Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-24T05:24:41.1063045Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\precompile_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1069235Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\profiler.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1074884Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\replay_record.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1081319Z creating build\bdist.win-amd64\wheel\torch\_dynamo\repro 2025-07-24T05:24:41.1084844Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_aot.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-07-24T05:24:41.1091334Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_dynamo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-07-24T05:24:41.1097555Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\aoti.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-07-24T05:24:41.1103795Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-07-24T05:24:41.1108651Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\resume_execution.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1115077Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\side_effects.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1121721Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\source.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1129222Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\symbolic_convert.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1138579Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\tensor_version_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1154084Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\testing.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1160873Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1167604Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_dont_skip_tracing_functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1173618Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_minifier_common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1179557Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\trace_rules.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1187304Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\types.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1193175Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1201437Z creating build\bdist.win-amd64\wheel\torch\_dynamo\variables 2025-07-24T05:24:41.1205099Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\base.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1211153Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builder.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1218841Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builtin.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1226138Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\constant.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1231814Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\ctx_manager.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1248158Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\dicts.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1258528Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1264593Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1271987Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\higher_order_ops.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1279004Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\iter.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1285114Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lazy.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1290594Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lists.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1296561Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\misc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1303177Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\nn_module.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1309816Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1316013Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\script_object.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1321893Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1327892Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1333957Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1340932Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch_function.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1347268Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\user_defined.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1354512Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-24T05:24:41.1360292Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1365956Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-24T05:24:41.1371624Z copying build\lib.win-amd64-cpython-39\torch\_environment.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.1377808Z creating build\bdist.win-amd64\wheel\torch\_export 2025-07-24T05:24:41.1380801Z copying build\lib.win-amd64-cpython-39\torch\_export\converter.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:24:41.1387921Z creating build\bdist.win-amd64\wheel\torch\_export\db 2025-07-24T05:24:41.1391228Z copying build\lib.win-amd64-cpython-39\torch\_export\db\case.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-07-24T05:24:41.1398036Z creating build\bdist.win-amd64\wheel\torch\_export\db\examples 2025-07-24T05:24:41.1401489Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\assume_constant_result.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1406825Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1412231Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\class_method.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1428140Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_branch_class_method.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1434108Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_branch_nested_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1440062Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_branch_nonlocal_variables.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1445702Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_closed_over_variable.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1451716Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_operands.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1457377Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_predicate.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1467184Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\constrain_as_size_example.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1473282Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\constrain_as_value_example.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1479120Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\decorator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1484394Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dictionary.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1489989Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_assert.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1495621Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_constructor.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1501356Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_if_guard.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1506799Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_map.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1512457Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_round.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1527589Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_slicing.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1533097Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_view.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1538887Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\fn_with_kwargs.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1555763Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_contains.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1561168Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_unpack.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1566727Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\model_attr_mutation.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1572576Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\nested_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1578185Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\null_context_manager.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1593649Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\optional_input.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1599385Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\pytree_flatten.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1605358Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\scalar_output.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1610911Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\specialized_attribute.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1616391Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\static_for_loop.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1622175Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\static_if.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1628644Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\tensor_setattr.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1641028Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\type_reflection_method.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1647665Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\unsupported_operator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1662543Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\user_input_mutation.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1669728Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-24T05:24:41.1675033Z copying build\lib.win-amd64-cpython-39\torch\_export\db\gen_example.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-07-24T05:24:41.1680529Z copying build\lib.win-amd64-cpython-39\torch\_export\db\logging.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-07-24T05:24:41.1686962Z copying build\lib.win-amd64-cpython-39\torch\_export\db\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-07-24T05:24:41.1691719Z copying build\lib.win-amd64-cpython-39\torch\_export\error.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:24:41.1697307Z copying build\lib.win-amd64-cpython-39\torch\_export\non_strict_utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:24:41.1704702Z creating build\bdist.win-amd64\wheel\torch\_export\passes 2025-07-24T05:24:41.1718001Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\add_runtime_assertions_for_constraints_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:24:41.1723674Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\collect_tracepoints_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:24:41.1729576Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:24:41.1744952Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\functionalize_side_effectful_ops_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:24:41.1750863Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\insert_custom_op_guards.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:24:41.1756986Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\lift_constants_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:24:41.1796534Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\remove_runtime_assertions.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:24:41.1802431Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\replace_autocast_with_hop_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:24:41.1808135Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:24:41.1814696Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\replace_set_grad_with_hop_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:24:41.1820561Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:24:41.1826688Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\replace_with_hop_pass_util.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:24:41.1832520Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\_node_metadata_hook.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:24:41.1837995Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-24T05:24:41.1843396Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:24:41.1850083Z creating build\bdist.win-amd64\wheel\torch\_export\pass_infra 2025-07-24T05:24:41.1853431Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\node_metadata.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-07-24T05:24:41.1859055Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\proxy_value.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-07-24T05:24:41.1864712Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-07-24T05:24:41.1869841Z creating build\bdist.win-amd64\wheel\torch\_export\serde 2025-07-24T05:24:41.1873211Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:24:41.1878813Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\export_schema.thrift -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:24:41.1884323Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:24:41.1889797Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.yaml -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:24:41.1904717Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema_check.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:24:41.1910912Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\serialize.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:24:41.1918346Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\union.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:24:41.1924441Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-24T05:24:41.1928928Z copying build\lib.win-amd64-cpython-39\torch\_export\tools.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:24:41.1934564Z copying build\lib.win-amd64-cpython-39\torch\_export\utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:24:41.1941466Z copying build\lib.win-amd64-cpython-39\torch\_export\verifier.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:24:41.1948538Z copying build\lib.win-amd64-cpython-39\torch\_export\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:24:41.1954714Z copying build\lib.win-amd64-cpython-39\torch\_export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-24T05:24:41.1960841Z creating build\bdist.win-amd64\wheel\torch\_functorch 2025-07-24T05:24:41.1964292Z copying build\lib.win-amd64-cpython-39\torch\_functorch\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.1971817Z copying build\lib.win-amd64-cpython-39\torch\_functorch\apis.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.1977850Z copying build\lib.win-amd64-cpython-39\torch\_functorch\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.1984126Z copying build\lib.win-amd64-cpython-39\torch\_functorch\batch_norm_replacement.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.1999524Z copying build\lib.win-amd64-cpython-39\torch\_functorch\benchmark_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2005360Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compilers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2011102Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compile_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2017055Z copying build\lib.win-amd64-cpython-39\torch\_functorch\config.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2022815Z copying build\lib.win-amd64-cpython-39\torch\_functorch\deprecated.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2028774Z copying build\lib.win-amd64-cpython-39\torch\_functorch\eager_transforms.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2050982Z copying build\lib.win-amd64-cpython-39\torch\_functorch\functional_call.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2056786Z copying build\lib.win-amd64-cpython-39\torch\_functorch\fx_minifier.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2073749Z copying build\lib.win-amd64-cpython-39\torch\_functorch\make_functional.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2080469Z copying build\lib.win-amd64-cpython-39\torch\_functorch\partitioners.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2087820Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pyfunctorch.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2093653Z copying build\lib.win-amd64-cpython-39\torch\_functorch\python_key.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2099256Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pytree_hacks.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2105194Z copying build\lib.win-amd64-cpython-39\torch\_functorch\top_operators_github_usage.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2111829Z copying build\lib.win-amd64-cpython-39\torch\_functorch\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2117505Z copying build\lib.win-amd64-cpython-39\torch\_functorch\vmap.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2124184Z creating build\bdist.win-amd64\wheel\torch\_functorch\_activation_checkpointing 2025-07-24T05:24:41.2139344Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\ac_logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-07-24T05:24:41.2146181Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\graph_info_provider.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-07-24T05:24:41.2153289Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-07-24T05:24:41.2169973Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-07-24T05:24:41.2176187Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-07-24T05:24:41.2182010Z creating build\bdist.win-amd64\wheel\torch\_functorch\_aot_autograd 2025-07-24T05:24:41.2186517Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\autograd_cache.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:24:41.2193367Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\collect_metadata_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:24:41.2200170Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\frontend_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:24:41.2214610Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\functional_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:24:41.2220666Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\graph_capture.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:24:41.2227836Z 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-07-24T05:24:41.2234153Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\graph_compile.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:24:41.2240964Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\input_output_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:24:41.2247049Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:24:41.2253121Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:24:41.2260194Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\schemas.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:24:41.2266864Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:24:41.2272876Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:24:41.2279059Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:24:41.2285217Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-24T05:24:41.2290612Z copying build\lib.win-amd64-cpython-39\torch\_functorch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-24T05:24:41.2296114Z copying build\lib.win-amd64-cpython-39\torch\_guards.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.2303241Z creating build\bdist.win-amd64\wheel\torch\_higher_order_ops 2025-07-24T05:24:41.2306586Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\aoti_call_delegate.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2312372Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\associative_scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2318383Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\auto_functionalize.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2334254Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\base_hop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2340017Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\cond.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2346255Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\effects.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2352008Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\executorch_call_delegate.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2357487Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flat_apply.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2363139Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2369364Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\foreach_map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2375050Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\hints_wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2380787Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\invoke_subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2387224Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2393039Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\out_dtype.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2398940Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\run_const_graph.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2404551Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2410690Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\schema.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2416329Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\strict_mode.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2429387Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\torchbind.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2435175Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\triton_kernel_wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2441878Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2483006Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\while_loop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2498793Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2504448Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\_invoke_quant.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2514371Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-24T05:24:41.2521889Z creating build\bdist.win-amd64\wheel\torch\_inductor 2025-07-24T05:24:41.2525458Z creating build\bdist.win-amd64\wheel\torch\_inductor\analysis 2025-07-24T05:24:41.2529286Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analysis\device_info.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\analysis 2025-07-24T05:24:41.2535546Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analysis\profile_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\analysis 2025-07-24T05:24:41.2541630Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analysis\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\analysis 2025-07-24T05:24:41.2546764Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analyze_preserves_zero_mask.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.2552355Z copying build\lib.win-amd64-cpython-39\torch\_inductor\aoti_eager.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.2567765Z copying build\lib.win-amd64-cpython-39\torch\_inductor\async_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.2574537Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic 2025-07-24T05:24:41.2578211Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:24:41.2581888Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:24:41.2588266Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:24:41.2593870Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:24:41.2609981Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:24:41.2616713Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:24:41.2622700Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-24T05:24:41.2627456Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-07-24T05:24:41.2633831Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-07-24T05:24:41.2652243Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-07-24T05:24:41.2659323Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-07-24T05:24:41.2665857Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-07-24T05:24:41.2671068Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autotune_process.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.2678007Z copying build\lib.win-amd64-cpython-39\torch\_inductor\bounds.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.2683928Z copying build\lib.win-amd64-cpython-39\torch\_inductor\choices.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.2690378Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codecache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.2698749Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen 2025-07-24T05:24:41.2702563Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_hipify_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2708872Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\aoti_runtime 2025-07-24T05:24:41.2713052Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime\interface.cpp -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\aoti_runtime 2025-07-24T05:24:41.2718669Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\block_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2724127Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2744115Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2752123Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_bmm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2757981Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_flex_attention_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2764739Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2771497Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2777893Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_micro_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2784582Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2790695Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2796976Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2803198Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2811090Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2817938Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2823927Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2830035Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpu_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2836283Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda 2025-07-24T05:24:41.2839697Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:24:41.2845324Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_env.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:24:41.2851241Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:24:41.2857609Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:24:41.2873021Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:24:41.2878901Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:24:41.2882616Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\evt_extensions.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:24:41.2888852Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\gemm_operation_extensions.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:24:41.2895033Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-24T05:24:41.2911002Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_presets.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:24:41.2916835Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_python_evt.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:24:41.2922875Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:24:41.2929638Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:24:41.2936284Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:24:41.2943867Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\serialization.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:24:41.2950454Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-24T05:24:41.2955233Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda_combined_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2970479Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2980403Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\halide.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2987535Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\memory_planning.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.2994080Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.3000450Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.3006378Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\multi_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.3013625Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\rocm 2025-07-24T05:24:41.3017229Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_conv_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:24:41.3023730Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:24:41.3029568Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_tile_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:24:41.3035499Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:24:41.3052362Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_universal_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:24:41.3058859Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\compile_command.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:24:41.3064702Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_benchmark_request.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:24:41.3070930Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:24:41.3076866Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:24:41.3082519Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:24:41.3088401Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_template_buffer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:24:41.3094555Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:24:41.3100515Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-24T05:24:41.3105187Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.3112652Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd_kernel_features.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.3118916Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.3124859Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.3133457Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_combo_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.3151197Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_split_scan.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.3162635Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.3167817Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.3175909Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper_fxir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.3182094Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\xpu 2025-07-24T05:24:41.3185658Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu\device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\xpu 2025-07-24T05:24:41.3192054Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\xpu 2025-07-24T05:24:41.3196599Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-24T05:24:41.3201154Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comms.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3208199Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3214047Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3219725Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compiler_bisector.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3225776Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3233073Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_async.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3238988Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_ext.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3251282Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_subproc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3257342Z creating build\bdist.win-amd64\wheel\torch\_inductor\compile_worker 2025-07-24T05:24:41.3260655Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\subproc_pool.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-07-24T05:24:41.3266633Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\tracked_process_pool.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-07-24T05:24:41.3272736Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-07-24T05:24:41.3278452Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-07-24T05:24:41.3297254Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-07-24T05:24:41.3302260Z copying build\lib.win-amd64-cpython-39\torch\_inductor\config.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3310067Z copying build\lib.win-amd64-cpython-39\torch\_inductor\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3315698Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpp_builder.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3333363Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpu_vec_isa.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3339330Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_trees.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3346726Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3352837Z copying build\lib.win-amd64-cpython-39\torch\_inductor\custom_graph_pass.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3358898Z copying build\lib.win-amd64-cpython-39\torch\_inductor\debug.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3365363Z copying build\lib.win-amd64-cpython-39\torch\_inductor\decomposition.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3371723Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dependencies.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3378157Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dtype_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3384077Z copying build\lib.win-amd64-cpython-39\torch\_inductor\exc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3390187Z copying build\lib.win-amd64-cpython-39\torch\_inductor\extern_node_serializer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3405750Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3412523Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3421842Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3429083Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes 2025-07-24T05:24:41.3432929Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\b2b_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3439964Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\binary_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3450961Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\bucketing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3457719Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\ddp_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3474467Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\decompose_mem_bound_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3480483Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\dedupe_symint_uses.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3487029Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\efficient_conv_bn_eval.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3493117Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\freezing_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3499138Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\fsdp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3505133Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\fuse_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3512643Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\group_batch_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3519447Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\joint_graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3526143Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\micro_pipeline_tp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3532790Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\misc_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3539659Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\mkldnn_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3546511Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\numeric_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3552499Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pad_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3559003Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\post_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3566145Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pre_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3573670Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\quantization.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3581001Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3598237Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\replace_random.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3605506Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3609740Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3615761Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3621766Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3637150Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3643232Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3649987Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3659583Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3665793Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3707086Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3713362Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3719886Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3726924Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3733454Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3740106Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3746577Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3752758Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3759561Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_21.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3765828Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_22.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3772597Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_23.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3782945Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_24.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3789132Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3795613Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3801769Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3808159Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3814511Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3821007Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3827068Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3833430Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-24T05:24:41.3838228Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\split_cat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3846685Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-24T05:24:41.3851321Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3856897Z copying build\lib.win-amd64-cpython-39\torch\_inductor\graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3863826Z copying build\lib.win-amd64-cpython-39\torch\_inductor\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3869470Z copying build\lib.win-amd64-cpython-39\torch\_inductor\index_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3875422Z copying build\lib.win-amd64-cpython-39\torch\_inductor\inductor_prims.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3880951Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3889975Z copying build\lib.win-amd64-cpython-39\torch\_inductor\jagged_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3896088Z creating build\bdist.win-amd64\wheel\torch\_inductor\kernel 2025-07-24T05:24:41.3899408Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\bmm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:24:41.3904944Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\conv.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:24:41.3911246Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:24:41.3918524Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex_decoding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:24:41.3924516Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:24:41.3941154Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:24:41.3946960Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_grouped.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:24:41.3953275Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_plus_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:24:41.3959224Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-24T05:24:41.3964709Z copying build\lib.win-amd64-cpython-39\torch\_inductor\loop_body.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3981744Z copying build\lib.win-amd64-cpython-39\torch\_inductor\lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3990363Z copying build\lib.win-amd64-cpython-39\torch\_inductor\memory.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.3996668Z copying build\lib.win-amd64-cpython-39\torch\_inductor\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4002332Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4009686Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4016657Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mock_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4023347Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ops_handler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4029730Z copying build\lib.win-amd64-cpython-39\torch\_inductor\optimize_indexing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4035687Z copying build\lib.win-amd64-cpython-39\torch\_inductor\output_code.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4042999Z creating build\bdist.win-amd64\wheel\torch\_inductor\package 2025-07-24T05:24:41.4047131Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\build_package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-07-24T05:24:41.4051951Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-07-24T05:24:41.4057623Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-07-24T05:24:41.4063353Z copying build\lib.win-amd64-cpython-39\torch\_inductor\pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4092066Z copying build\lib.win-amd64-cpython-39\torch\_inductor\quantized_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4098100Z copying build\lib.win-amd64-cpython-39\torch\_inductor\remote_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4104355Z creating build\bdist.win-amd64\wheel\torch\_inductor\runtime 2025-07-24T05:24:41.4108023Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\autotune_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:24:41.4114469Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\benchmarking.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:24:41.4120541Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\cache_dir_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:24:41.4126130Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\compile_tasks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:24:41.4143039Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\coordinate_descent_tuner.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:24:41.4149108Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\halide_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:24:41.4155555Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\hints.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:24:41.4162096Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:24:41.4168016Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\static_cuda_launcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:24:41.4174360Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_compat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:24:41.4180804Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:24:41.4188026Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:24:41.4196577Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-24T05:24:41.4201425Z copying build\lib.win-amd64-cpython-39\torch\_inductor\scheduler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4209652Z copying build\lib.win-amd64-cpython-39\torch\_inductor\script.ld -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4215296Z copying build\lib.win-amd64-cpython-39\torch\_inductor\select_algorithm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4223490Z copying build\lib.win-amd64-cpython-39\torch\_inductor\sizevars.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4229555Z copying build\lib.win-amd64-cpython-39\torch\_inductor\standalone_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4235679Z copying build\lib.win-amd64-cpython-39\torch\_inductor\subgraph_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4241749Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4248608Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4264601Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_operators.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4271103Z copying build\lib.win-amd64-cpython-39\torch\_inductor\tiling_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4277550Z copying build\lib.win-amd64-cpython-39\torch\_inductor\triton_bundler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4288082Z copying build\lib.win-amd64-cpython-39\torch\_inductor\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4294882Z copying build\lib.win-amd64-cpython-39\torch\_inductor\virtualized.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4300870Z copying build\lib.win-amd64-cpython-39\torch\_inductor\wrapper_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4307304Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__autotune_main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4313058Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-24T05:24:41.4319108Z copying build\lib.win-amd64-cpython-39\torch\_jit_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4326677Z creating build\bdist.win-amd64\wheel\torch\_lazy 2025-07-24T05:24:41.4339631Z copying build\lib.win-amd64-cpython-39\torch\_lazy\closure.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:24:41.4345748Z copying build\lib.win-amd64-cpython-39\torch\_lazy\computation.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:24:41.4351520Z copying build\lib.win-amd64-cpython-39\torch\_lazy\config.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:24:41.4356618Z copying build\lib.win-amd64-cpython-39\torch\_lazy\debug.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:24:41.4362151Z copying build\lib.win-amd64-cpython-39\torch\_lazy\device_context.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:24:41.4377331Z copying build\lib.win-amd64-cpython-39\torch\_lazy\extract_compiled_graph.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:24:41.4382860Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ir_cache.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:24:41.4388078Z copying build\lib.win-amd64-cpython-39\torch\_lazy\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:24:41.4393608Z copying build\lib.win-amd64-cpython-39\torch\_lazy\tensor_factory_functions.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:24:41.4399144Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ts_backend.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:24:41.4404273Z copying build\lib.win-amd64-cpython-39\torch\_lazy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-24T05:24:41.4410251Z creating build\bdist.win-amd64\wheel\torch\_library 2025-07-24T05:24:41.4413576Z copying build\lib.win-amd64-cpython-39\torch\_library\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:24:41.4419459Z copying build\lib.win-amd64-cpython-39\torch\_library\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:24:41.4425660Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_class_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:24:41.4431562Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_impl.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:24:41.4446952Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_profile.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:24:41.4452507Z copying build\lib.win-amd64-cpython-39\torch\_library\infer_schema.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:24:41.4458074Z copying build\lib.win-amd64-cpython-39\torch\_library\simple_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:24:41.4463812Z copying build\lib.win-amd64-cpython-39\torch\_library\triton.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:24:41.4470298Z copying build\lib.win-amd64-cpython-39\torch\_library\utils.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:24:41.4476342Z copying build\lib.win-amd64-cpython-39\torch\_library\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-24T05:24:41.4481849Z copying build\lib.win-amd64-cpython-39\torch\_linalg_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4487426Z copying build\lib.win-amd64-cpython-39\torch\_lobpcg.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4494019Z creating build\bdist.win-amd64\wheel\torch\_logging 2025-07-24T05:24:41.4497340Z copying build\lib.win-amd64-cpython-39\torch\_logging\scribe.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-07-24T05:24:41.4503213Z copying build\lib.win-amd64-cpython-39\torch\_logging\structured.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-07-24T05:24:41.4508649Z copying build\lib.win-amd64-cpython-39\torch\_logging\_internal.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-07-24T05:24:41.4515377Z copying build\lib.win-amd64-cpython-39\torch\_logging\_registrations.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-07-24T05:24:41.4535604Z copying build\lib.win-amd64-cpython-39\torch\_logging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-07-24T05:24:41.4541205Z copying build\lib.win-amd64-cpython-39\torch\_lowrank.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4547030Z copying build\lib.win-amd64-cpython-39\torch\_meta_registrations.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4555531Z copying build\lib.win-amd64-cpython-39\torch\_namedtensor_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4561682Z creating build\bdist.win-amd64\wheel\torch\_numpy 2025-07-24T05:24:41.4565328Z copying build\lib.win-amd64-cpython-39\torch\_numpy\fft.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4570884Z copying build\lib.win-amd64-cpython-39\torch\_numpy\linalg.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4576234Z copying build\lib.win-amd64-cpython-39\torch\_numpy\random.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4582532Z creating build\bdist.win-amd64\wheel\torch\_numpy\testing 2025-07-24T05:24:41.4585609Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\utils.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-07-24T05:24:41.4592612Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-07-24T05:24:41.4598282Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_binary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4604406Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_casting_dicts.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4620589Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4626646Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4632682Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4638344Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4645135Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_getlimits.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4651201Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ndarray.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4658475Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_normalizations.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4664945Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_reductions_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4672561Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ufuncs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4677915Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_unary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4683187Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_util.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4688875Z copying build\lib.win-amd64-cpython-39\torch\_numpy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-24T05:24:41.4694412Z copying build\lib.win-amd64-cpython-39\torch\_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4701597Z creating build\bdist.win-amd64\wheel\torch\_prims 2025-07-24T05:24:41.4704947Z copying build\lib.win-amd64-cpython-39\torch\_prims\context.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-07-24T05:24:41.4710732Z copying build\lib.win-amd64-cpython-39\torch\_prims\debug_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-07-24T05:24:41.4716200Z copying build\lib.win-amd64-cpython-39\torch\_prims\executor.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-07-24T05:24:41.4721530Z copying build\lib.win-amd64-cpython-39\torch\_prims\rng_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-07-24T05:24:41.4727668Z copying build\lib.win-amd64-cpython-39\torch\_prims\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-07-24T05:24:41.4744373Z creating build\bdist.win-amd64\wheel\torch\_prims_common 2025-07-24T05:24:41.4747778Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-07-24T05:24:41.4754413Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-07-24T05:24:41.4761289Z copying build\lib.win-amd64-cpython-39\torch\_python_dispatcher.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4767174Z creating build\bdist.win-amd64\wheel\torch\_refs 2025-07-24T05:24:41.4770379Z copying build\lib.win-amd64-cpython-39\torch\_refs\fft.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-07-24T05:24:41.4776797Z creating build\bdist.win-amd64\wheel\torch\_refs\linalg 2025-07-24T05:24:41.4780249Z copying build\lib.win-amd64-cpython-39\torch\_refs\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\linalg 2025-07-24T05:24:41.4785888Z creating build\bdist.win-amd64\wheel\torch\_refs\nn 2025-07-24T05:24:41.4789350Z creating build\bdist.win-amd64\wheel\torch\_refs\nn\functional 2025-07-24T05:24:41.4792687Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\functional\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn\functional 2025-07-24T05:24:41.4798997Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn 2025-07-24T05:24:41.4804594Z creating build\bdist.win-amd64\wheel\torch\_refs\special 2025-07-24T05:24:41.4807911Z copying build\lib.win-amd64-cpython-39\torch\_refs\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\special 2025-07-24T05:24:41.4813474Z copying build\lib.win-amd64-cpython-39\torch\_refs\_conversions.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-07-24T05:24:41.4818837Z copying build\lib.win-amd64-cpython-39\torch\_refs\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-07-24T05:24:41.4836764Z copying build\lib.win-amd64-cpython-39\torch\_size_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4861367Z copying build\lib.win-amd64-cpython-39\torch\_sources.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4866950Z copying build\lib.win-amd64-cpython-39\torch\_storage_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4873103Z copying build\lib.win-amd64-cpython-39\torch\_streambase.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4878916Z creating build\bdist.win-amd64\wheel\torch\_strobelight 2025-07-24T05:24:41.4882461Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-07-24T05:24:41.4888408Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\compile_time_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-07-24T05:24:41.4894282Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-07-24T05:24:41.4916397Z creating build\bdist.win-amd64\wheel\torch\_subclasses 2025-07-24T05:24:41.4917138Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_impls.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:24:41.4918069Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:24:41.4925846Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:24:41.4940787Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\functional_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:24:41.4947213Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\meta_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:24:41.4954262Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\schema_check_mode.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:24:41.4960132Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\_fake_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:24:41.4966497Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-24T05:24:41.4971771Z copying build\lib.win-amd64-cpython-39\torch\_tensor.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4978687Z copying build\lib.win-amd64-cpython-39\torch\_tensor_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4986784Z copying build\lib.win-amd64-cpython-39\torch\_tensor_str.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4994324Z copying build\lib.win-amd64-cpython-39\torch\_thread_safe_fork.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.4999245Z copying build\lib.win-amd64-cpython-39\torch\_torch_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.5009462Z copying build\lib.win-amd64-cpython-39\torch\_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.5025870Z copying build\lib.win-amd64-cpython-39\torch\_utils_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.5032328Z creating build\bdist.win-amd64\wheel\torch\_vendor 2025-07-24T05:24:41.5035865Z creating build\bdist.win-amd64\wheel\torch\_vendor\packaging 2025-07-24T05:24:41.5039203Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\version.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-07-24T05:24:41.5045581Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\_structures.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-07-24T05:24:41.5051344Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-07-24T05:24:41.5056827Z copying build\lib.win-amd64-cpython-39\torch\_vendor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor 2025-07-24T05:24:41.5068027Z copying build\lib.win-amd64-cpython-39\torch\_VF.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.5073595Z copying build\lib.win-amd64-cpython-39\torch\_VF.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.5091016Z copying build\lib.win-amd64-cpython-39\torch\_vmap_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.5097924Z copying build\lib.win-amd64-cpython-39\torch\_weights_only_unpickler.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.5104739Z copying build\lib.win-amd64-cpython-39\torch\__config__.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.5111035Z copying build\lib.win-amd64-cpython-39\torch\__future__.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.5116753Z copying build\lib.win-amd64-cpython-39\torch\__init__.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-24T05:24:41.5163786Z creating build\bdist.win-amd64\wheel\torchgen 2025-07-24T05:24:41.5167479Z creating build\bdist.win-amd64\wheel\torchgen\aoti 2025-07-24T05:24:41.5172514Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\fallback_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-07-24T05:24:41.5179065Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-07-24T05:24:41.5183895Z creating build\bdist.win-amd64\wheel\torchgen\api 2025-07-24T05:24:41.5187205Z copying build\lib.win-amd64-cpython-39\torchgen\api\autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:24:41.5193708Z copying build\lib.win-amd64-cpython-39\torchgen\api\cpp.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:24:41.5199862Z copying build\lib.win-amd64-cpython-39\torchgen\api\dispatcher.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:24:41.5205750Z copying build\lib.win-amd64-cpython-39\torchgen\api\functionalization.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:24:41.5211374Z copying build\lib.win-amd64-cpython-39\torchgen\api\lazy.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:24:41.5227102Z copying build\lib.win-amd64-cpython-39\torchgen\api\meta.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:24:41.5232593Z copying build\lib.win-amd64-cpython-39\torchgen\api\native.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:24:41.5238021Z copying build\lib.win-amd64-cpython-39\torchgen\api\python.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:24:41.5245053Z copying build\lib.win-amd64-cpython-39\torchgen\api\structured.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:24:41.5250640Z copying build\lib.win-amd64-cpython-39\torchgen\api\translate.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:24:41.5257038Z creating build\bdist.win-amd64\wheel\torchgen\api\types 2025-07-24T05:24:41.5261015Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\signatures.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-07-24T05:24:41.5266313Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-07-24T05:24:41.5271890Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types_base.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-07-24T05:24:41.5277569Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-07-24T05:24:41.5282731Z copying build\lib.win-amd64-cpython-39\torchgen\api\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:24:41.5288218Z copying build\lib.win-amd64-cpython-39\torchgen\api\unboxing.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:24:41.5293875Z copying build\lib.win-amd64-cpython-39\torchgen\api\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-24T05:24:41.5298390Z copying build\lib.win-amd64-cpython-39\torchgen\code_template.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:24:41.5303783Z copying build\lib.win-amd64-cpython-39\torchgen\context.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:24:41.5309752Z creating build\bdist.win-amd64\wheel\torchgen\dest 2025-07-24T05:24:41.5313244Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ir.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-24T05:24:41.5319397Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ts_lowering.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-24T05:24:41.5324892Z copying build\lib.win-amd64-cpython-39\torchgen\dest\native_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-24T05:24:41.5338769Z copying build\lib.win-amd64-cpython-39\torchgen\dest\register_dispatch_key.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-24T05:24:41.5354860Z copying build\lib.win-amd64-cpython-39\torchgen\dest\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-24T05:24:41.5360662Z copying build\lib.win-amd64-cpython-39\torchgen\dest\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-24T05:24:41.5365985Z copying build\lib.win-amd64-cpython-39\torchgen\gen.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:24:41.5383351Z copying build\lib.win-amd64-cpython-39\torchgen\gen_aoti_c_shim.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:24:41.5393787Z copying build\lib.win-amd64-cpython-39\torchgen\gen_backend_stubs.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:24:41.5403965Z copying build\lib.win-amd64-cpython-39\torchgen\gen_functionalization_type.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:24:41.5410327Z copying build\lib.win-amd64-cpython-39\torchgen\gen_lazy_tensor.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:24:41.5417028Z copying build\lib.win-amd64-cpython-39\torchgen\gen_schema_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:24:41.5423068Z copying build\lib.win-amd64-cpython-39\torchgen\gen_vmap_plumbing.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:24:41.5428704Z copying build\lib.win-amd64-cpython-39\torchgen\local.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:24:41.5434057Z copying build\lib.win-amd64-cpython-39\torchgen\model.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:24:41.5441437Z copying build\lib.win-amd64-cpython-39\torchgen\native_function_generation.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:24:41.5448144Z creating build\bdist.win-amd64\wheel\torchgen\operator_versions 2025-07-24T05:24:41.5451654Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-07-24T05:24:41.5457532Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-07-24T05:24:41.5462907Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-07-24T05:24:41.5477929Z creating build\bdist.win-amd64\wheel\torchgen\packaged 2025-07-24T05:24:41.5481479Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen 2025-07-24T05:24:41.5484909Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\native 2025-07-24T05:24:41.5488483Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\native_functions.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-07-24T05:24:41.5500005Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\tags.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-07-24T05:24:41.5506487Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5510092Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5515882Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\aten_interned_strings.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5555049Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5564843Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5570884Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5577099Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5582935Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5588690Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5594395Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\enum_tag.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5600072Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Function.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5605190Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5610674Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5616516Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5622776Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5628609Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5634202Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5640096Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5645738Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5651644Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5668730Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5674346Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operator.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5710205Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5711352Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5712544Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5713818Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5715262Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5716718Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5719034Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5724446Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5740931Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5746780Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5752420Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5758067Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorBody.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5764419Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5770187Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5776419Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5782506Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5788359Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5804583Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-24T05:24:41.5810675Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd 2025-07-24T05:24:41.5814076Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\BUILD.bazel -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5819632Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\build.bzl -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5824819Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\context.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5830896Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\deprecated.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5836538Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\derivatives.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5854704Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5860383Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5866358Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5873833Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_inplace_or_view_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5880299Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_python_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5886721Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_trace_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5892724Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_factories.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5898626Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5905783Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_view_funcs.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5911875Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\load_derivatives.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5918675Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\README.md -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.5924998Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.5928857Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.5934752Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\annotated_fn_args.py.in -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.5940214Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.5957557Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.5963528Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_enum_tag.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.5968908Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_fft_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.5975870Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.5981810Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.5987808Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_linalg_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.5993619Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_nested_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.5999613Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_nn_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.6005675Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_return_types.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.6011580Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_return_types.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.6017773Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_sparse_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.6024006Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_special_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.6030120Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_torch_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.6036112Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_variable_methods.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.6053342Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\TraceType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.6059201Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.6064963Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.6071766Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\variable_factories.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.6077866Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.6083348Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-24T05:24:41.6089116Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-24T05:24:41.6094272Z creating build\bdist.win-amd64\wheel\torchgen\selective_build 2025-07-24T05:24:41.6097697Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\operator.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-07-24T05:24:41.6103481Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\selector.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-07-24T05:24:41.6109256Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-07-24T05:24:41.6114337Z creating build\bdist.win-amd64\wheel\torchgen\static_runtime 2025-07-24T05:24:41.6118322Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\config.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-07-24T05:24:41.6124253Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\generator.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-07-24T05:24:41.6130609Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\gen_static_runtime_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-07-24T05:24:41.6147455Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-07-24T05:24:41.6156116Z copying build\lib.win-amd64-cpython-39\torchgen\utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:24:41.6162298Z copying build\lib.win-amd64-cpython-39\torchgen\yaml_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:24:41.6168971Z copying build\lib.win-amd64-cpython-39\torchgen\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-24T05:24:41.6182689Z running install_egg_info 2025-07-24T05:24:41.6279818Z running egg_info 2025-07-24T05:24:41.6360036Z creating torch.egg-info 2025-07-24T05:24:41.6362887Z writing torch.egg-info\PKG-INFO 2025-07-24T05:24:41.6386084Z writing dependency_links to torch.egg-info\dependency_links.txt 2025-07-24T05:24:41.6390651Z writing entry points to torch.egg-info\entry_points.txt 2025-07-24T05:24:41.6409243Z writing requirements to torch.egg-info\requires.txt 2025-07-24T05:24:41.6413552Z writing top-level names to torch.egg-info\top_level.txt 2025-07-24T05:24:41.6416858Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-07-24T05:24:42.8888542Z reading manifest file 'torch.egg-info\SOURCES.txt' 2025-07-24T05:24:42.8894380Z reading manifest template 'MANIFEST.in' 2025-07-24T05:24:42.9575457Z warning: no files found matching 'BUILD' 2025-07-24T05:24:42.9580152Z warning: no files found matching '*.BUILD' 2025-07-24T05:24:42.9587648Z warning: no files found matching 'BUCK' 2025-07-24T05:24:42.9614537Z warning: no files found matching '[Mm]akefile.*' 2025-07-24T05:24:42.9624895Z warning: no files found matching '*.[Dd]ockerfile' 2025-07-24T05:24:42.9629664Z warning: no files found matching '[Dd]ockerfile.*' 2025-07-24T05:24:52.5165820Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-07-24T05:24:52.6475814Z warning: no previously-included files matching '*.obj' found anywhere in distribution 2025-07-24T05:24:52.7792739Z warning: no previously-included files matching '*.so' found anywhere in distribution 2025-07-24T05:24:52.9111437Z warning: no previously-included files matching '*.a' found anywhere in distribution 2025-07-24T05:24:53.0431033Z warning: no previously-included files matching '*.dylib' found anywhere in distribution 2025-07-24T05:24:53.6137699Z no previously-included directories found matching '*\.git' 2025-07-24T05:24:53.8479858Z warning: no previously-included files matching '*~' found anywhere in distribution 2025-07-24T05:24:53.9784083Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-07-24T05:24:53.9784630Z adding license file 'LICENSE' 2025-07-24T05:24:53.9784888Z adding license file 'NOTICE' 2025-07-24T05:24:59.7515841Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-07-24T05:24:59.8054773Z Copying torch.egg-info to build\bdist.win-amd64\wheel\.\torch-2.9.0a0+git27c8ef1-py3.9.egg-info 2025-07-24T05:24:59.8166396Z running install_scripts 2025-07-24T05:24:59.8189275Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\command\bdist_wheel.py:103: RuntimeWarning: Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect 2025-07-24T05:24:59.8190192Z if get_flag("Py_DEBUG", hasattr(sys, "gettotalrefcount"), warn=(impl == "cp")): 2025-07-24T05:24:59.8281087Z creating build\bdist.win-amd64\wheel\torch-2.9.0a0+git27c8ef1.dist-info\WHEEL 2025-07-24T05:24:59.8296740Z creating 'dist\torch-2.9.0a0+git27c8ef1-cp39-cp39-win_amd64.whl' and adding 'build\bdist.win-amd64\wheel' to it 2025-07-24T05:24:59.8554564Z adding 'functorch/_C.cp39-win_amd64.pyd' 2025-07-24T05:24:59.8572421Z adding 'functorch/__init__.py' 2025-07-24T05:24:59.8576700Z adding 'functorch/_src/__init__.py' 2025-07-24T05:24:59.8581026Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-07-24T05:24:59.8584904Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-07-24T05:24:59.8588766Z adding 'functorch/_src/make_functional/__init__.py' 2025-07-24T05:24:59.8592656Z adding 'functorch/_src/vmap/__init__.py' 2025-07-24T05:24:59.8596708Z adding 'functorch/compile/__init__.py' 2025-07-24T05:24:59.8601747Z adding 'functorch/dim/__init__.py' 2025-07-24T05:24:59.8605142Z adding 'functorch/dim/batch_tensor.py' 2025-07-24T05:24:59.8608863Z adding 'functorch/dim/delayed_mul_tensor.py' 2025-07-24T05:24:59.8612789Z adding 'functorch/dim/dim.py' 2025-07-24T05:24:59.8616396Z adding 'functorch/dim/magic_trace.py' 2025-07-24T05:24:59.8620848Z adding 'functorch/dim/op_properties.py' 2025-07-24T05:24:59.8630984Z adding 'functorch/dim/reference.py' 2025-07-24T05:24:59.8634858Z adding 'functorch/dim/tree_map.py' 2025-07-24T05:24:59.8638401Z adding 'functorch/dim/wrap_type.py' 2025-07-24T05:24:59.8642163Z adding 'functorch/einops/__init__.py' 2025-07-24T05:24:59.8648384Z adding 'functorch/einops/_parsing.py' 2025-07-24T05:24:59.8654161Z adding 'functorch/einops/rearrange.py' 2025-07-24T05:24:59.8658227Z adding 'functorch/experimental/__init__.py' 2025-07-24T05:24:59.8661097Z adding 'functorch/experimental/control_flow.py' 2025-07-24T05:24:59.8664134Z adding 'functorch/experimental/ops.py' 2025-07-24T05:24:59.8674000Z adding 'torch/_C.cp39-win_amd64.pyd' 2025-07-24T05:24:59.8677226Z adding 'torch/_VF.py' 2025-07-24T05:24:59.8917637Z adding 'torch/_VF.pyi' 2025-07-24T05:24:59.8949481Z adding 'torch/__config__.py' 2025-07-24T05:24:59.8953122Z adding 'torch/__future__.py' 2025-07-24T05:24:59.8993432Z adding 'torch/__init__.py' 2025-07-24T05:24:59.9004226Z adding 'torch/_appdirs.py' 2025-07-24T05:24:59.9008362Z adding 'torch/_classes.py' 2025-07-24T05:24:59.9011869Z adding 'torch/_compile.py' 2025-07-24T05:24:59.9017825Z adding 'torch/_custom_ops.py' 2025-07-24T05:24:59.9021904Z adding 'torch/_deploy.py' 2025-07-24T05:24:59.9024857Z adding 'torch/_environment.py' 2025-07-24T05:24:59.9040315Z adding 'torch/_guards.py' 2025-07-24T05:24:59.9064724Z adding 'torch/_jit_internal.py' 2025-07-24T05:24:59.9070193Z adding 'torch/_linalg_utils.py' 2025-07-24T05:24:59.9087109Z adding 'torch/_lobpcg.py' 2025-07-24T05:24:59.9093890Z adding 'torch/_lowrank.py' 2025-07-24T05:24:59.9177295Z adding 'torch/_meta_registrations.py' 2025-07-24T05:24:59.9188094Z adding 'torch/_namedtensor_internals.py' 2025-07-24T05:24:59.9212173Z adding 'torch/_ops.py' 2025-07-24T05:24:59.9218558Z adding 'torch/_python_dispatcher.py' 2025-07-24T05:24:59.9222151Z adding 'torch/_size_docs.py' 2025-07-24T05:24:59.9226650Z adding 'torch/_sources.py' 2025-07-24T05:24:59.9230048Z adding 'torch/_storage_docs.py' 2025-07-24T05:24:59.9233274Z adding 'torch/_streambase.py' 2025-07-24T05:24:59.9259987Z adding 'torch/_tensor.py' 2025-07-24T05:24:59.9309621Z adding 'torch/_tensor_docs.py' 2025-07-24T05:24:59.9324152Z adding 'torch/_tensor_str.py' 2025-07-24T05:24:59.9328160Z adding 'torch/_thread_safe_fork.py' 2025-07-24T05:24:59.9474423Z adding 'torch/_torch_docs.py' 2025-07-24T05:24:59.9504898Z adding 'torch/_utils.py' 2025-07-24T05:24:59.9512066Z adding 'torch/_utils_internal.py' 2025-07-24T05:24:59.9517725Z adding 'torch/_vmap_internals.py' 2025-07-24T05:24:59.9526325Z adding 'torch/_weights_only_unpickler.py' 2025-07-24T05:24:59.9560184Z adding 'torch/functional.py' 2025-07-24T05:24:59.9575579Z adding 'torch/hub.py' 2025-07-24T05:24:59.9599731Z adding 'torch/library.py' 2025-07-24T05:24:59.9629499Z adding 'torch/overrides.py' 2025-07-24T05:24:59.9635204Z adding 'torch/py.typed' 2025-07-24T05:24:59.9640228Z adding 'torch/quasirandom.py' 2025-07-24T05:24:59.9645628Z adding 'torch/random.py' 2025-07-24T05:24:59.9648964Z adding 'torch/return_types.py' 2025-07-24T05:24:59.9653695Z adding 'torch/return_types.pyi' 2025-07-24T05:24:59.9685390Z adding 'torch/serialization.py' 2025-07-24T05:24:59.9703698Z adding 'torch/storage.py' 2025-07-24T05:24:59.9708942Z adding 'torch/torch_version.py' 2025-07-24T05:24:59.9713082Z adding 'torch/types.py' 2025-07-24T05:24:59.9716217Z adding 'torch/version.py' 2025-07-24T05:24:59.9959393Z adding 'torch/_C/_VariableFunctions.pyi' 2025-07-24T05:25:00.0088316Z adding 'torch/_C/__init__.pyi' 2025-07-24T05:25:00.0104229Z adding 'torch/_C/_aoti.pyi' 2025-07-24T05:25:00.0108460Z adding 'torch/_C/_autograd.pyi' 2025-07-24T05:25:00.0111830Z adding 'torch/_C/_cpu.pyi' 2025-07-24T05:25:00.0114934Z adding 'torch/_C/_cudnn.pyi' 2025-07-24T05:25:00.0117785Z adding 'torch/_C/_cusparselt.pyi' 2025-07-24T05:25:00.0121034Z adding 'torch/_C/_distributed_autograd.pyi' 2025-07-24T05:25:00.0130191Z adding 'torch/_C/_distributed_c10d.pyi' 2025-07-24T05:25:00.0135109Z adding 'torch/_C/_distributed_rpc.pyi' 2025-07-24T05:25:00.0138851Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-07-24T05:25:00.0141820Z adding 'torch/_C/_functions.pyi' 2025-07-24T05:25:00.0145743Z adding 'torch/_C/_functorch.pyi' 2025-07-24T05:25:00.0148742Z adding 'torch/_C/_instruction_counter.pyi' 2025-07-24T05:25:00.0151782Z adding 'torch/_C/_itt.pyi' 2025-07-24T05:25:00.0155712Z adding 'torch/_C/_jit_tree_views.pyi' 2025-07-24T05:25:00.0159247Z adding 'torch/_C/_lazy.pyi' 2025-07-24T05:25:00.0162607Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-07-24T05:25:00.0165771Z adding 'torch/_C/_monitor.pyi' 2025-07-24T05:25:00.0170330Z adding 'torch/_C/_nn.pyi' 2025-07-24T05:25:00.0173572Z adding 'torch/_C/_nvtx.pyi' 2025-07-24T05:25:00.0176724Z adding 'torch/_C/_onnx.pyi' 2025-07-24T05:25:00.0181215Z adding 'torch/_C/_profiler.pyi' 2025-07-24T05:25:00.0184705Z adding 'torch/_C/_verbose.pyi' 2025-07-24T05:25:00.0189223Z adding 'torch/_C/_dynamo/__init__.pyi' 2025-07-24T05:25:00.0192815Z adding 'torch/_C/_dynamo/compiled_autograd.pyi' 2025-07-24T05:25:00.0196765Z adding 'torch/_C/_dynamo/eval_frame.pyi' 2025-07-24T05:25:00.0201186Z adding 'torch/_C/_dynamo/guards.pyi' 2025-07-24T05:25:00.0205107Z adding 'torch/_C/_export/__init__.pyi' 2025-07-24T05:25:00.0208684Z adding 'torch/_C/_export/pt2_archive_constants.pyi' 2025-07-24T05:25:00.0212274Z adding 'torch/_C_flatbuffer/__init__.pyi' 2025-07-24T05:25:00.0216615Z adding 'torch/_awaits/__init__.py' 2025-07-24T05:25:00.0220374Z adding 'torch/_custom_op/__init__.py' 2025-07-24T05:25:00.0226756Z adding 'torch/_custom_op/autograd.py' 2025-07-24T05:25:00.0237468Z adding 'torch/_custom_op/impl.py' 2025-07-24T05:25:00.0246555Z adding 'torch/_decomp/__init__.py' 2025-07-24T05:25:00.0309859Z adding 'torch/_decomp/decompositions.py' 2025-07-24T05:25:00.0320044Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-07-24T05:25:00.0325593Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-07-24T05:25:00.0329554Z adding 'torch/_dispatch/__init__.py' 2025-07-24T05:25:00.0334266Z adding 'torch/_dispatch/python.py' 2025-07-24T05:25:00.0340885Z adding 'torch/_dynamo/__init__.py' 2025-07-24T05:25:00.0347377Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-07-24T05:25:00.0353444Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-07-24T05:25:00.0378307Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-07-24T05:25:00.0385636Z adding 'torch/_dynamo/cache_size.py' 2025-07-24T05:25:00.0390557Z adding 'torch/_dynamo/callback.py' 2025-07-24T05:25:00.0395372Z adding 'torch/_dynamo/code_context.py' 2025-07-24T05:25:00.0407097Z adding 'torch/_dynamo/codegen.py' 2025-07-24T05:25:00.0430254Z adding 'torch/_dynamo/compiled_autograd.py' 2025-07-24T05:25:00.0438618Z adding 'torch/_dynamo/comptime.py' 2025-07-24T05:25:00.0453384Z adding 'torch/_dynamo/config.py' 2025-07-24T05:25:00.0477514Z adding 'torch/_dynamo/convert_frame.py' 2025-07-24T05:25:00.0482807Z adding 'torch/_dynamo/create_parameter_op.py' 2025-07-24T05:25:00.0486203Z adding 'torch/_dynamo/current_scope_id.py' 2025-07-24T05:25:00.0500214Z adding 'torch/_dynamo/debug_utils.py' 2025-07-24T05:25:00.0515034Z adding 'torch/_dynamo/decorators.py' 2025-07-24T05:25:00.0522505Z adding 'torch/_dynamo/device_interface.py' 2025-07-24T05:25:00.0526396Z adding 'torch/_dynamo/distributed.py' 2025-07-24T05:25:00.0560670Z adding 'torch/_dynamo/eval_frame.py' 2025-07-24T05:25:00.0572658Z adding 'torch/_dynamo/exc.py' 2025-07-24T05:25:00.0578237Z adding 'torch/_dynamo/external_utils.py' 2025-07-24T05:25:00.0582161Z adding 'torch/_dynamo/funcname_cache.py' 2025-07-24T05:25:00.0585691Z adding 'torch/_dynamo/graph_break_hints.py' 2025-07-24T05:25:00.0611306Z adding 'torch/_dynamo/graph_break_registry.json' 2025-07-24T05:25:00.0621705Z adding 'torch/_dynamo/graph_deduplication.py' 2025-07-24T05:25:00.0630171Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-07-24T05:25:00.0634217Z adding 'torch/_dynamo/graph_utils.py' 2025-07-24T05:25:00.0688664Z adding 'torch/_dynamo/guards.py' 2025-07-24T05:25:00.0695475Z adding 'torch/_dynamo/hooks.py' 2025-07-24T05:25:00.0699372Z adding 'torch/_dynamo/logging.py' 2025-07-24T05:25:00.0704114Z adding 'torch/_dynamo/metrics_context.py' 2025-07-24T05:25:00.0708966Z adding 'torch/_dynamo/mutation_guard.py' 2025-07-24T05:25:00.0763374Z adding 'torch/_dynamo/output_graph.py' 2025-07-24T05:25:00.0776698Z adding 'torch/_dynamo/package.py' 2025-07-24T05:25:00.0791078Z adding 'torch/_dynamo/pgo.py' 2025-07-24T05:25:00.0797391Z adding 'torch/_dynamo/precompile_context.py' 2025-07-24T05:25:00.0802456Z adding 'torch/_dynamo/profiler.py' 2025-07-24T05:25:00.0807156Z adding 'torch/_dynamo/replay_record.py' 2025-07-24T05:25:00.0817278Z adding 'torch/_dynamo/resume_execution.py' 2025-07-24T05:25:00.0836278Z adding 'torch/_dynamo/side_effects.py' 2025-07-24T05:25:00.0847400Z adding 'torch/_dynamo/source.py' 2025-07-24T05:25:00.0908430Z adding 'torch/_dynamo/symbolic_convert.py' 2025-07-24T05:25:00.0915912Z adding 'torch/_dynamo/tensor_version_op.py' 2025-07-24T05:25:00.0920780Z adding 'torch/_dynamo/test_case.py' 2025-07-24T05:25:00.0924269Z adding 'torch/_dynamo/test_dont_skip_tracing_functions.py' 2025-07-24T05:25:00.0930354Z adding 'torch/_dynamo/test_minifier_common.py' 2025-07-24T05:25:00.0938258Z adding 'torch/_dynamo/testing.py' 2025-07-24T05:25:00.0981928Z adding 'torch/_dynamo/trace_rules.py' 2025-07-24T05:25:00.0989843Z adding 'torch/_dynamo/types.py' 2025-07-24T05:25:00.1053848Z adding 'torch/_dynamo/utils.py' 2025-07-24T05:25:00.1061774Z adding 'torch/_dynamo/backends/__init__.py' 2025-07-24T05:25:00.1066239Z adding 'torch/_dynamo/backends/common.py' 2025-07-24T05:25:00.1071717Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-07-24T05:25:00.1078987Z adding 'torch/_dynamo/backends/debugging.py' 2025-07-24T05:25:00.1091190Z adding 'torch/_dynamo/backends/distributed.py' 2025-07-24T05:25:00.1095175Z adding 'torch/_dynamo/backends/inductor.py' 2025-07-24T05:25:00.1098616Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-07-24T05:25:00.1103114Z adding 'torch/_dynamo/backends/registry.py' 2025-07-24T05:25:00.1106552Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-07-24T05:25:00.1109865Z adding 'torch/_dynamo/backends/torchxla.py' 2025-07-24T05:25:00.1114848Z adding 'torch/_dynamo/backends/tvm.py' 2025-07-24T05:25:00.1122132Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-07-24T05:25:00.1125838Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-07-24T05:25:00.1129170Z adding 'torch/_dynamo/polyfills/functools.py' 2025-07-24T05:25:00.1132391Z adding 'torch/_dynamo/polyfills/fx.py' 2025-07-24T05:25:00.1136748Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-07-24T05:25:00.1140262Z adding 'torch/_dynamo/polyfills/loader.py' 2025-07-24T05:25:00.1143987Z adding 'torch/_dynamo/polyfills/operator.py' 2025-07-24T05:25:00.1147467Z adding 'torch/_dynamo/polyfills/os.py' 2025-07-24T05:25:00.1153854Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-07-24T05:25:00.1157449Z adding 'torch/_dynamo/polyfills/struct.py' 2025-07-24T05:25:00.1160546Z adding 'torch/_dynamo/polyfills/sys.py' 2025-07-24T05:25:00.1163899Z adding 'torch/_dynamo/polyfills/tensor.py' 2025-07-24T05:25:00.1167673Z adding 'torch/_dynamo/repro/__init__.py' 2025-07-24T05:25:00.1182758Z adding 'torch/_dynamo/repro/after_aot.py' 2025-07-24T05:25:00.1192696Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-07-24T05:25:00.1202743Z adding 'torch/_dynamo/repro/aoti.py' 2025-07-24T05:25:00.1208991Z adding 'torch/_dynamo/variables/__init__.py' 2025-07-24T05:25:00.1219532Z adding 'torch/_dynamo/variables/base.py' 2025-07-24T05:25:00.1277349Z adding 'torch/_dynamo/variables/builder.py' 2025-07-24T05:25:00.1317160Z adding 'torch/_dynamo/variables/builtin.py' 2025-07-24T05:25:00.1325670Z adding 'torch/_dynamo/variables/constant.py' 2025-07-24T05:25:00.1341657Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-07-24T05:25:00.1357589Z adding 'torch/_dynamo/variables/dicts.py' 2025-07-24T05:25:00.1365360Z adding 'torch/_dynamo/variables/distributed.py' 2025-07-24T05:25:00.1397237Z adding 'torch/_dynamo/variables/functions.py' 2025-07-24T05:25:00.1440764Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-07-24T05:25:00.1451739Z adding 'torch/_dynamo/variables/iter.py' 2025-07-24T05:25:00.1457291Z adding 'torch/_dynamo/variables/lazy.py' 2025-07-24T05:25:00.1472162Z adding 'torch/_dynamo/variables/lists.py' 2025-07-24T05:25:00.1498003Z adding 'torch/_dynamo/variables/misc.py' 2025-07-24T05:25:00.1517462Z adding 'torch/_dynamo/variables/nn_module.py' 2025-07-24T05:25:00.1526143Z adding 'torch/_dynamo/variables/optimizer.py' 2025-07-24T05:25:00.1530714Z adding 'torch/_dynamo/variables/script_object.py' 2025-07-24T05:25:00.1534436Z adding 'torch/_dynamo/variables/sdpa.py' 2025-07-24T05:25:00.1558390Z adding 'torch/_dynamo/variables/tensor.py' 2025-07-24T05:25:00.1585693Z adding 'torch/_dynamo/variables/torch.py' 2025-07-24T05:25:00.1599078Z adding 'torch/_dynamo/variables/torch_function.py' 2025-07-24T05:25:00.1625545Z adding 'torch/_dynamo/variables/user_defined.py' 2025-07-24T05:25:00.1633174Z adding 'torch/_export/__init__.py' 2025-07-24T05:25:00.1656900Z adding 'torch/_export/converter.py' 2025-07-24T05:25:00.1662018Z adding 'torch/_export/error.py' 2025-07-24T05:25:00.1678312Z adding 'torch/_export/non_strict_utils.py' 2025-07-24T05:25:00.1686342Z adding 'torch/_export/pass_base.py' 2025-07-24T05:25:00.1691029Z adding 'torch/_export/tools.py' 2025-07-24T05:25:00.1714557Z adding 'torch/_export/utils.py' 2025-07-24T05:25:00.1723638Z adding 'torch/_export/verifier.py' 2025-07-24T05:25:00.1729581Z adding 'torch/_export/wrappers.py' 2025-07-24T05:25:00.1733737Z adding 'torch/_export/db/__init__.py' 2025-07-24T05:25:00.1738292Z adding 'torch/_export/db/case.py' 2025-07-24T05:25:00.1741698Z adding 'torch/_export/db/gen_example.py' 2025-07-24T05:25:00.1745068Z adding 'torch/_export/db/logging.py' 2025-07-24T05:25:00.1750457Z adding 'torch/_export/db/examples/__init__.py' 2025-07-24T05:25:00.1753937Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-07-24T05:25:00.1757062Z adding 'torch/_export/db/examples/autograd_function.py' 2025-07-24T05:25:00.1760347Z adding 'torch/_export/db/examples/class_method.py' 2025-07-24T05:25:00.1763943Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-07-24T05:25:00.1767346Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-07-24T05:25:00.1771181Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-07-24T05:25:00.1774187Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-07-24T05:25:00.1777631Z adding 'torch/_export/db/examples/cond_operands.py' 2025-07-24T05:25:00.1780859Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-07-24T05:25:00.1784704Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-07-24T05:25:00.1788496Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-07-24T05:25:00.1792068Z adding 'torch/_export/db/examples/decorator.py' 2025-07-24T05:25:00.1795362Z adding 'torch/_export/db/examples/dictionary.py' 2025-07-24T05:25:00.1798902Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-07-24T05:25:00.1802446Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-07-24T05:25:00.1805839Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-07-24T05:25:00.1809380Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-07-24T05:25:00.1812914Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-07-24T05:25:00.1816391Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-07-24T05:25:00.1819926Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-07-24T05:25:00.1823423Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-07-24T05:25:00.1826678Z adding 'torch/_export/db/examples/list_contains.py' 2025-07-24T05:25:00.1830262Z adding 'torch/_export/db/examples/list_unpack.py' 2025-07-24T05:25:00.1833240Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-07-24T05:25:00.1836693Z adding 'torch/_export/db/examples/nested_function.py' 2025-07-24T05:25:00.1839701Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-07-24T05:25:00.1843052Z adding 'torch/_export/db/examples/optional_input.py' 2025-07-24T05:25:00.1846084Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-07-24T05:25:00.1849215Z adding 'torch/_export/db/examples/scalar_output.py' 2025-07-24T05:25:00.1852393Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-07-24T05:25:00.1856034Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-07-24T05:25:00.1858936Z adding 'torch/_export/db/examples/static_if.py' 2025-07-24T05:25:00.1861860Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-07-24T05:25:00.1864855Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-07-24T05:25:00.1868129Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-07-24T05:25:00.1871354Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-07-24T05:25:00.1875115Z adding 'torch/_export/pass_infra/__init__.py' 2025-07-24T05:25:00.1878269Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-07-24T05:25:00.1881473Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-07-24T05:25:00.1885385Z adding 'torch/_export/passes/__init__.py' 2025-07-24T05:25:00.1889035Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-07-24T05:25:00.1894561Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-07-24T05:25:00.1899380Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-07-24T05:25:00.1935080Z adding 'torch/_export/passes/constant_folding.py' 2025-07-24T05:25:00.1940161Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-07-24T05:25:00.1943952Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-07-24T05:25:00.1951442Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-07-24T05:25:00.1955582Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-07-24T05:25:00.1960374Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-07-24T05:25:00.1970000Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-07-24T05:25:00.1974539Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-07-24T05:25:00.1978281Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-07-24T05:25:00.1983066Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-07-24T05:25:00.1987279Z adding 'torch/_export/serde/__init__.py' 2025-07-24T05:25:00.1992984Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-07-24T05:25:00.1998087Z adding 'torch/_export/serde/export_schema.thrift' 2025-07-24T05:25:00.2004855Z adding 'torch/_export/serde/schema.py' 2025-07-24T05:25:00.2010189Z adding 'torch/_export/serde/schema.yaml' 2025-07-24T05:25:00.2019307Z adding 'torch/_export/serde/schema_check.py' 2025-07-24T05:25:00.2068063Z adding 'torch/_export/serde/serialize.py' 2025-07-24T05:25:00.2075486Z adding 'torch/_export/serde/union.py' 2025-07-24T05:25:00.2079787Z adding 'torch/_functorch/__init__.py' 2025-07-24T05:25:00.2104417Z adding 'torch/_functorch/aot_autograd.py' 2025-07-24T05:25:00.2113788Z adding 'torch/_functorch/apis.py' 2025-07-24T05:25:00.2126016Z adding 'torch/_functorch/autograd_function.py' 2025-07-24T05:25:00.2129660Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-07-24T05:25:00.2134235Z adding 'torch/_functorch/benchmark_utils.py' 2025-07-24T05:25:00.2139468Z adding 'torch/_functorch/compile_utils.py' 2025-07-24T05:25:00.2146445Z adding 'torch/_functorch/compilers.py' 2025-07-24T05:25:00.2155027Z adding 'torch/_functorch/config.py' 2025-07-24T05:25:00.2159658Z adding 'torch/_functorch/deprecated.py' 2025-07-24T05:25:00.2186068Z adding 'torch/_functorch/eager_transforms.py' 2025-07-24T05:25:00.2194164Z adding 'torch/_functorch/functional_call.py' 2025-07-24T05:25:00.2202053Z adding 'torch/_functorch/fx_minifier.py' 2025-07-24T05:25:00.2211107Z adding 'torch/_functorch/make_functional.py' 2025-07-24T05:25:00.2253715Z adding 'torch/_functorch/partitioners.py' 2025-07-24T05:25:00.2261602Z adding 'torch/_functorch/pyfunctorch.py' 2025-07-24T05:25:00.2265421Z adding 'torch/_functorch/python_key.py' 2025-07-24T05:25:00.2268612Z adding 'torch/_functorch/pytree_hacks.py' 2025-07-24T05:25:00.2277556Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-07-24T05:25:00.2281247Z adding 'torch/_functorch/utils.py' 2025-07-24T05:25:00.2290114Z adding 'torch/_functorch/vmap.py' 2025-07-24T05:25:00.2294599Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-07-24T05:25:00.2300633Z adding 'torch/_functorch/_activation_checkpointing/ac_logging_utils.py' 2025-07-24T05:25:00.2305976Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-07-24T05:25:00.2310869Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-07-24T05:25:00.2317388Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-07-24T05:25:00.2322110Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-07-24T05:25:00.2346534Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-07-24T05:25:00.2365312Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-07-24T05:25:00.2372860Z adding 'torch/_functorch/_aot_autograd/frontend_utils.py' 2025-07-24T05:25:00.2381971Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-07-24T05:25:00.2388903Z adding 'torch/_functorch/_aot_autograd/graph_capture.py' 2025-07-24T05:25:00.2409749Z adding 'torch/_functorch/_aot_autograd/graph_capture_wrappers.py' 2025-07-24T05:25:00.2442723Z adding 'torch/_functorch/_aot_autograd/graph_compile.py' 2025-07-24T05:25:00.2452277Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-07-24T05:25:00.2456911Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-07-24T05:25:00.2497483Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-07-24T05:25:00.2522496Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-07-24T05:25:00.2527833Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-07-24T05:25:00.2535965Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-07-24T05:25:00.2544979Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-07-24T05:25:00.2550243Z adding 'torch/_higher_order_ops/__init__.py' 2025-07-24T05:25:00.2553857Z adding 'torch/_higher_order_ops/_invoke_quant.py' 2025-07-24T05:25:00.2558221Z adding 'torch/_higher_order_ops/aoti_call_delegate.py' 2025-07-24T05:25:00.2566283Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-07-24T05:25:00.2579821Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-07-24T05:25:00.2586694Z adding 'torch/_higher_order_ops/base_hop.py' 2025-07-24T05:25:00.2598895Z adding 'torch/_higher_order_ops/cond.py' 2025-07-24T05:25:00.2605410Z adding 'torch/_higher_order_ops/effects.py' 2025-07-24T05:25:00.2610336Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-07-24T05:25:00.2614902Z adding 'torch/_higher_order_ops/flat_apply.py' 2025-07-24T05:25:00.2628083Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-07-24T05:25:00.2632557Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-07-24T05:25:00.2636852Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-07-24T05:25:00.2647528Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-07-24T05:25:00.2653823Z adding 'torch/_higher_order_ops/map.py' 2025-07-24T05:25:00.2658875Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-07-24T05:25:00.2662538Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-07-24T05:25:00.2678469Z adding 'torch/_higher_order_ops/scan.py' 2025-07-24T05:25:00.2685771Z adding 'torch/_higher_order_ops/schema.py' 2025-07-24T05:25:00.2690221Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-07-24T05:25:00.2695107Z adding 'torch/_higher_order_ops/torchbind.py' 2025-07-24T05:25:00.2724583Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-07-24T05:25:00.2744971Z adding 'torch/_higher_order_ops/utils.py' 2025-07-24T05:25:00.2754666Z adding 'torch/_higher_order_ops/while_loop.py' 2025-07-24T05:25:00.2761105Z adding 'torch/_higher_order_ops/wrap.py' 2025-07-24T05:25:00.2767348Z adding 'torch/_inductor/__autotune_main__.py' 2025-07-24T05:25:00.2773760Z adding 'torch/_inductor/__init__.py' 2025-07-24T05:25:00.2778756Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-07-24T05:25:00.2784383Z adding 'torch/_inductor/aoti_eager.py' 2025-07-24T05:25:00.2794941Z adding 'torch/_inductor/async_compile.py' 2025-07-24T05:25:00.2807396Z adding 'torch/_inductor/autotune_process.py' 2025-07-24T05:25:00.2813937Z adding 'torch/_inductor/bounds.py' 2025-07-24T05:25:00.2821088Z adding 'torch/_inductor/choices.py' 2025-07-24T05:25:00.2880416Z adding 'torch/_inductor/codecache.py' 2025-07-24T05:25:00.2889287Z adding 'torch/_inductor/comm_analysis.py' 2025-07-24T05:25:00.2895663Z adding 'torch/_inductor/comm_lowering.py' 2025-07-24T05:25:00.2915906Z adding 'torch/_inductor/comms.py' 2025-07-24T05:25:00.2956522Z adding 'torch/_inductor/compile_fx.py' 2025-07-24T05:25:00.2965408Z adding 'torch/_inductor/compile_fx_async.py' 2025-07-24T05:25:00.2975066Z adding 'torch/_inductor/compile_fx_ext.py' 2025-07-24T05:25:00.2979611Z adding 'torch/_inductor/compile_fx_subproc.py' 2025-07-24T05:25:00.2988219Z adding 'torch/_inductor/compiler_bisector.py' 2025-07-24T05:25:00.3022819Z adding 'torch/_inductor/config.py' 2025-07-24T05:25:00.3031463Z adding 'torch/_inductor/constant_folding.py' 2025-07-24T05:25:00.3056118Z adding 'torch/_inductor/cpp_builder.py' 2025-07-24T05:25:00.3064261Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-07-24T05:25:00.3114451Z adding 'torch/_inductor/cudagraph_trees.py' 2025-07-24T05:25:00.3116233Z adding 'torch/_inductor/cudagraph_utils.py' 2025-07-24T05:25:00.3121015Z adding 'torch/_inductor/custom_graph_pass.py' 2025-07-24T05:25:00.3134995Z adding 'torch/_inductor/debug.py' 2025-07-24T05:25:00.3150628Z adding 'torch/_inductor/decomposition.py' 2025-07-24T05:25:00.3163803Z adding 'torch/_inductor/dependencies.py' 2025-07-24T05:25:00.3170230Z adding 'torch/_inductor/dtype_propagation.py' 2025-07-24T05:25:00.3174734Z adding 'torch/_inductor/exc.py' 2025-07-24T05:25:00.3178092Z adding 'torch/_inductor/extern_node_serializer.py' 2025-07-24T05:25:00.3184025Z adding 'torch/_inductor/freezing.py' 2025-07-24T05:25:00.3187951Z adding 'torch/_inductor/freezing_utils.py' 2025-07-24T05:25:00.3201979Z adding 'torch/_inductor/fuzzer.py' 2025-07-24T05:25:00.3209734Z adding 'torch/_inductor/fx_utils.py' 2025-07-24T05:25:00.3249401Z adding 'torch/_inductor/graph.py' 2025-07-24T05:25:00.3255350Z adding 'torch/_inductor/hooks.py' 2025-07-24T05:25:00.3262200Z adding 'torch/_inductor/index_propagation.py' 2025-07-24T05:25:00.3267341Z adding 'torch/_inductor/inductor_prims.py' 2025-07-24T05:25:00.3378349Z adding 'torch/_inductor/ir.py' 2025-07-24T05:25:00.3391430Z adding 'torch/_inductor/jagged_lowerings.py' 2025-07-24T05:25:00.3401384Z adding 'torch/_inductor/loop_body.py' 2025-07-24T05:25:00.3484112Z adding 'torch/_inductor/lowering.py' 2025-07-24T05:25:00.3499640Z adding 'torch/_inductor/memory.py' 2025-07-24T05:25:00.3506916Z adding 'torch/_inductor/metrics.py' 2025-07-24T05:25:00.3518503Z adding 'torch/_inductor/mkldnn_ir.py' 2025-07-24T05:25:00.3532140Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-07-24T05:25:00.3538180Z adding 'torch/_inductor/mock_cache.py' 2025-07-24T05:25:00.3550192Z adding 'torch/_inductor/ops_handler.py' 2025-07-24T05:25:00.3555404Z adding 'torch/_inductor/optimize_indexing.py' 2025-07-24T05:25:00.3566748Z adding 'torch/_inductor/output_code.py' 2025-07-24T05:25:00.3599134Z adding 'torch/_inductor/pattern_matcher.py' 2025-07-24T05:25:00.3605599Z adding 'torch/_inductor/quantized_lowerings.py' 2025-07-24T05:25:00.3612431Z adding 'torch/_inductor/remote_cache.py' 2025-07-24T05:25:00.3685930Z adding 'torch/_inductor/scheduler.py' 2025-07-24T05:25:00.3693990Z adding 'torch/_inductor/script.ld' 2025-07-24T05:25:00.3739461Z adding 'torch/_inductor/select_algorithm.py' 2025-07-24T05:25:00.3757884Z adding 'torch/_inductor/sizevars.py' 2025-07-24T05:25:00.3764492Z adding 'torch/_inductor/standalone_compile.py' 2025-07-24T05:25:00.3769840Z adding 'torch/_inductor/subgraph_lowering.py' 2025-07-24T05:25:00.3781702Z adding 'torch/_inductor/template_heuristics.py' 2025-07-24T05:25:00.3786495Z adding 'torch/_inductor/test_case.py' 2025-07-24T05:25:00.3789844Z adding 'torch/_inductor/test_operators.py' 2025-07-24T05:25:00.3801270Z adding 'torch/_inductor/tiling_utils.py' 2025-07-24T05:25:00.3810139Z adding 'torch/_inductor/triton_bundler.py' 2025-07-24T05:25:00.3854446Z adding 'torch/_inductor/utils.py' 2025-07-24T05:25:00.3863780Z adding 'torch/_inductor/virtualized.py' 2025-07-24T05:25:00.3872044Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-07-24T05:25:00.3876166Z adding 'torch/_inductor/analysis/__init__.py' 2025-07-24T05:25:00.3880500Z adding 'torch/_inductor/analysis/device_info.py' 2025-07-24T05:25:00.3890594Z adding 'torch/_inductor/analysis/profile_analysis.py' 2025-07-24T05:25:00.3895100Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-07-24T05:25:00.3901000Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-07-24T05:25:00.3906997Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-07-24T05:25:00.3911448Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-07-24T05:25:00.3915115Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-07-24T05:25:00.3923391Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-07-24T05:25:00.3932042Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-07-24T05:25:00.3937028Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-07-24T05:25:00.3941487Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-07-24T05:25:00.3945894Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-07-24T05:25:00.3948987Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-07-24T05:25:00.3953190Z adding 'torch/_inductor/codegen/__init__.py' 2025-07-24T05:25:00.3956705Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-07-24T05:25:00.3961536Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-07-24T05:25:00.3994663Z adding 'torch/_inductor/codegen/common.py' 2025-07-24T05:25:00.4079785Z adding 'torch/_inductor/codegen/cpp.py' 2025-07-24T05:25:00.4090307Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-07-24T05:25:00.4105255Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-07-24T05:25:00.4131355Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-07-24T05:25:00.4141015Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-07-24T05:25:00.4162763Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-07-24T05:25:00.4168715Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-07-24T05:25:00.4178157Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-07-24T05:25:00.4189467Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-07-24T05:25:00.4230054Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-07-24T05:25:00.4246437Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-07-24T05:25:00.4258277Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-07-24T05:25:00.4263498Z adding 'torch/_inductor/codegen/cpp_wrapper_mps.py' 2025-07-24T05:25:00.4267161Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-07-24T05:25:00.4271107Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-07-24T05:25:00.4276767Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-07-24T05:25:00.4299217Z adding 'torch/_inductor/codegen/halide.py' 2025-07-24T05:25:00.4311604Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-07-24T05:25:00.4327576Z adding 'torch/_inductor/codegen/mps.py' 2025-07-24T05:25:00.4332441Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-07-24T05:25:00.4341397Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-07-24T05:25:00.4379863Z adding 'torch/_inductor/codegen/simd.py' 2025-07-24T05:25:00.4391417Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-07-24T05:25:00.4396999Z adding 'torch/_inductor/codegen/subgraph.py' 2025-07-24T05:25:00.4462865Z adding 'torch/_inductor/codegen/triton.py' 2025-07-24T05:25:00.4481622Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-07-24T05:25:00.4487348Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-07-24T05:25:00.4492733Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-07-24T05:25:00.4541524Z adding 'torch/_inductor/codegen/wrapper.py' 2025-07-24T05:25:00.4554707Z adding 'torch/_inductor/codegen/wrapper_fxir.py' 2025-07-24T05:25:00.4562056Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-07-24T05:25:00.4566466Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-07-24T05:25:00.4572472Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-07-24T05:25:00.4576133Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-07-24T05:25:00.4585832Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-07-24T05:25:00.4592765Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-07-24T05:25:00.4597090Z adding 'torch/_inductor/codegen/cuda/cutlass_cache.py' 2025-07-24T05:25:00.4600931Z adding 'torch/_inductor/codegen/cuda/cutlass_presets.py' 2025-07-24T05:25:00.4607210Z adding 'torch/_inductor/codegen/cuda/cutlass_python_evt.py' 2025-07-24T05:25:00.4615358Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-07-24T05:25:00.4621414Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-07-24T05:25:00.4646346Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-07-24T05:25:00.4654683Z adding 'torch/_inductor/codegen/cuda/serialization.py' 2025-07-24T05:25:00.4659148Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py' 2025-07-24T05:25:00.4664474Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py' 2025-07-24T05:25:00.4672289Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py' 2025-07-24T05:25:00.4676327Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-07-24T05:25:00.4684685Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-07-24T05:25:00.4689057Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-07-24T05:25:00.4692528Z adding 'torch/_inductor/codegen/rocm/ck_tile_template.py' 2025-07-24T05:25:00.4704011Z adding 'torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py' 2025-07-24T05:25:00.4718165Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-07-24T05:25:00.4723319Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-07-24T05:25:00.4727734Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-07-24T05:25:00.4731970Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-07-24T05:25:00.4738107Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-07-24T05:25:00.4743083Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-07-24T05:25:00.4746935Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-07-24T05:25:00.4749847Z adding 'torch/_inductor/codegen/rocm/rocm_utils.py' 2025-07-24T05:25:00.4753745Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-07-24T05:25:00.4757124Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-07-24T05:25:00.4761179Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-07-24T05:25:00.4764914Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-07-24T05:25:00.4771838Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-07-24T05:25:00.4776514Z adding 'torch/_inductor/compile_worker/tracked_process_pool.py' 2025-07-24T05:25:00.4779828Z adding 'torch/_inductor/compile_worker/utils.py' 2025-07-24T05:25:00.4784068Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-07-24T05:25:00.4794348Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-07-24T05:25:00.4802623Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-07-24T05:25:00.4814923Z adding 'torch/_inductor/fx_passes/bucketing.py' 2025-07-24T05:25:00.4825468Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-07-24T05:25:00.4831241Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-07-24T05:25:00.4835170Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-07-24T05:25:00.4841065Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-07-24T05:25:00.4846647Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-07-24T05:25:00.4850729Z adding 'torch/_inductor/fx_passes/fsdp.py' 2025-07-24T05:25:00.4860989Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-07-24T05:25:00.4878591Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-07-24T05:25:00.4892572Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-07-24T05:25:00.4907388Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-07-24T05:25:00.4912506Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-07-24T05:25:00.4930099Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-07-24T05:25:00.4936200Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-07-24T05:25:00.4947052Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-07-24T05:25:00.4973061Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-07-24T05:25:00.4985588Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-07-24T05:25:00.5023735Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-07-24T05:25:00.5039353Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-07-24T05:25:00.5044452Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-07-24T05:25:00.5081852Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-07-24T05:25:00.5089883Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-07-24T05:25:00.5094238Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-07-24T05:25:00.5099092Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-07-24T05:25:00.5104165Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-07-24T05:25:00.5109281Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-07-24T05:25:00.5113430Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-07-24T05:25:00.5118188Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-07-24T05:25:00.5123287Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-07-24T05:25:00.5130126Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-07-24T05:25:00.5136075Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-07-24T05:25:00.5142283Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-07-24T05:25:00.5147860Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-07-24T05:25:00.5152663Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-07-24T05:25:00.5157613Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py' 2025-07-24T05:25:00.5162546Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py' 2025-07-24T05:25:00.5167506Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py' 2025-07-24T05:25:00.5172446Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py' 2025-07-24T05:25:00.5176991Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py' 2025-07-24T05:25:00.5182027Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-07-24T05:25:00.5186795Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-07-24T05:25:00.5191411Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-07-24T05:25:00.5196169Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-07-24T05:25:00.5201123Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-07-24T05:25:00.5206036Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-07-24T05:25:00.5210909Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-07-24T05:25:00.5214888Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-07-24T05:25:00.5218302Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-07-24T05:25:00.5221811Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-07-24T05:25:00.5225904Z adding 'torch/_inductor/kernel/__init__.py' 2025-07-24T05:25:00.5231535Z adding 'torch/_inductor/kernel/bmm.py' 2025-07-24T05:25:00.5240162Z adding 'torch/_inductor/kernel/conv.py' 2025-07-24T05:25:00.5274836Z adding 'torch/_inductor/kernel/flex_attention.py' 2025-07-24T05:25:00.5287257Z adding 'torch/_inductor/kernel/flex_decoding.py' 2025-07-24T05:25:00.5302669Z adding 'torch/_inductor/kernel/mm.py' 2025-07-24T05:25:00.5309929Z adding 'torch/_inductor/kernel/mm_common.py' 2025-07-24T05:25:00.5318780Z adding 'torch/_inductor/kernel/mm_grouped.py' 2025-07-24T05:25:00.5324128Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-07-24T05:25:00.5328086Z adding 'torch/_inductor/package/__init__.py' 2025-07-24T05:25:00.5331467Z adding 'torch/_inductor/package/build_package.py' 2025-07-24T05:25:00.5335466Z adding 'torch/_inductor/package/package.py' 2025-07-24T05:25:00.5339488Z adding 'torch/_inductor/runtime/__init__.py' 2025-07-24T05:25:00.5349236Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-07-24T05:25:00.5355524Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-07-24T05:25:00.5359449Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-07-24T05:25:00.5363036Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-07-24T05:25:00.5368539Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-07-24T05:25:00.5372690Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-07-24T05:25:00.5377421Z adding 'torch/_inductor/runtime/hints.py' 2025-07-24T05:25:00.5382063Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-07-24T05:25:00.5387885Z adding 'torch/_inductor/runtime/static_cuda_launcher.py' 2025-07-24T05:25:00.5392435Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-07-24T05:25:00.5402378Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-07-24T05:25:00.5445946Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-07-24T05:25:00.5453195Z adding 'torch/_lazy/__init__.py' 2025-07-24T05:25:00.5457525Z adding 'torch/_lazy/closure.py' 2025-07-24T05:25:00.5460843Z adding 'torch/_lazy/computation.py' 2025-07-24T05:25:00.5463927Z adding 'torch/_lazy/config.py' 2025-07-24T05:25:00.5467426Z adding 'torch/_lazy/debug.py' 2025-07-24T05:25:00.5470299Z adding 'torch/_lazy/device_context.py' 2025-07-24T05:25:00.5475647Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-07-24T05:25:00.5478910Z adding 'torch/_lazy/ir_cache.py' 2025-07-24T05:25:00.5481954Z adding 'torch/_lazy/metrics.py' 2025-07-24T05:25:00.5485277Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-07-24T05:25:00.5488250Z adding 'torch/_lazy/ts_backend.py' 2025-07-24T05:25:00.5492094Z adding 'torch/_library/__init__.py' 2025-07-24T05:25:00.5497115Z adding 'torch/_library/autograd.py' 2025-07-24T05:25:00.5510946Z adding 'torch/_library/custom_ops.py' 2025-07-24T05:25:00.5518285Z adding 'torch/_library/fake_class_registry.py' 2025-07-24T05:25:00.5523776Z adding 'torch/_library/fake_impl.py' 2025-07-24T05:25:00.5529969Z adding 'torch/_library/fake_profile.py' 2025-07-24T05:25:00.5536534Z adding 'torch/_library/infer_schema.py' 2025-07-24T05:25:00.5540551Z adding 'torch/_library/simple_registry.py' 2025-07-24T05:25:00.5547180Z adding 'torch/_library/triton.py' 2025-07-24T05:25:00.5555771Z adding 'torch/_library/utils.py' 2025-07-24T05:25:00.5560396Z adding 'torch/_logging/__init__.py' 2025-07-24T05:25:00.5580276Z adding 'torch/_logging/_internal.py' 2025-07-24T05:25:00.5586489Z adding 'torch/_logging/_registrations.py' 2025-07-24T05:25:00.5590410Z adding 'torch/_logging/scribe.py' 2025-07-24T05:25:00.5594275Z adding 'torch/_logging/structured.py' 2025-07-24T05:25:00.5598514Z adding 'torch/_numpy/__init__.py' 2025-07-24T05:25:00.5602005Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-07-24T05:25:00.5608368Z adding 'torch/_numpy/_casting_dicts.py' 2025-07-24T05:25:00.5615289Z adding 'torch/_numpy/_dtypes.py' 2025-07-24T05:25:00.5620459Z adding 'torch/_numpy/_dtypes_impl.py' 2025-07-24T05:25:00.5624302Z adding 'torch/_numpy/_funcs.py' 2025-07-24T05:25:00.5649343Z adding 'torch/_numpy/_funcs_impl.py' 2025-07-24T05:25:00.5653643Z adding 'torch/_numpy/_getlimits.py' 2025-07-24T05:25:00.5662866Z adding 'torch/_numpy/_ndarray.py' 2025-07-24T05:25:00.5668807Z adding 'torch/_numpy/_normalizations.py' 2025-07-24T05:25:00.5674818Z adding 'torch/_numpy/_reductions_impl.py' 2025-07-24T05:25:00.5680055Z adding 'torch/_numpy/_ufuncs.py' 2025-07-24T05:25:00.5683651Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-07-24T05:25:00.5689436Z adding 'torch/_numpy/_util.py' 2025-07-24T05:25:00.5693286Z adding 'torch/_numpy/fft.py' 2025-07-24T05:25:00.5697709Z adding 'torch/_numpy/linalg.py' 2025-07-24T05:25:00.5702215Z adding 'torch/_numpy/random.py' 2025-07-24T05:25:00.5706319Z adding 'torch/_numpy/testing/__init__.py' 2025-07-24T05:25:00.5734605Z adding 'torch/_numpy/testing/utils.py' 2025-07-24T05:25:00.5764634Z adding 'torch/_prims/__init__.py' 2025-07-24T05:25:00.5771328Z adding 'torch/_prims/context.py' 2025-07-24T05:25:00.5775241Z adding 'torch/_prims/debug_prims.py' 2025-07-24T05:25:00.5779077Z adding 'torch/_prims/executor.py' 2025-07-24T05:25:00.5784855Z adding 'torch/_prims/rng_prims.py' 2025-07-24T05:25:00.5814937Z adding 'torch/_prims_common/__init__.py' 2025-07-24T05:25:00.5825875Z adding 'torch/_prims_common/wrappers.py' 2025-07-24T05:25:00.5905275Z adding 'torch/_refs/__init__.py' 2025-07-24T05:25:00.5914377Z adding 'torch/_refs/_conversions.py' 2025-07-24T05:25:00.5921059Z adding 'torch/_refs/fft.py' 2025-07-24T05:25:00.5928230Z adding 'torch/_refs/linalg/__init__.py' 2025-07-24T05:25:00.5932457Z adding 'torch/_refs/nn/__init__.py' 2025-07-24T05:25:00.5947794Z adding 'torch/_refs/nn/functional/__init__.py' 2025-07-24T05:25:00.5953937Z adding 'torch/_refs/special/__init__.py' 2025-07-24T05:25:00.5957875Z adding 'torch/_strobelight/__init__.py' 2025-07-24T05:25:00.5963424Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-07-24T05:25:00.5968744Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-07-24T05:25:00.5972890Z adding 'torch/_subclasses/__init__.py' 2025-07-24T05:25:00.5978011Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-07-24T05:25:00.5992051Z adding 'torch/_subclasses/fake_impls.py' 2025-07-24T05:25:00.6044592Z adding 'torch/_subclasses/fake_tensor.py' 2025-07-24T05:25:00.6053208Z adding 'torch/_subclasses/fake_utils.py' 2025-07-24T05:25:00.6066228Z adding 'torch/_subclasses/functional_tensor.py' 2025-07-24T05:25:00.6097433Z adding 'torch/_subclasses/meta_utils.py' 2025-07-24T05:25:00.6104522Z adding 'torch/_subclasses/schema_check_mode.py' 2025-07-24T05:25:00.6108582Z adding 'torch/_vendor/__init__.py' 2025-07-24T05:25:00.6112444Z adding 'torch/_vendor/packaging/__init__.py' 2025-07-24T05:25:00.6115696Z adding 'torch/_vendor/packaging/_structures.py' 2025-07-24T05:25:00.6122799Z adding 'torch/_vendor/packaging/version.py' 2025-07-24T05:25:00.6129359Z adding 'torch/accelerator/__init__.py' 2025-07-24T05:25:00.6132901Z adding 'torch/accelerator/_utils.py' 2025-07-24T05:25:00.6136819Z adding 'torch/amp/__init__.py' 2025-07-24T05:25:00.6146077Z adding 'torch/amp/autocast_mode.py' 2025-07-24T05:25:00.6159015Z adding 'torch/amp/grad_scaler.py' 2025-07-24T05:25:00.6163850Z adding 'torch/ao/__init__.py' 2025-07-24T05:25:00.6168056Z adding 'torch/ao/nn/__init__.py' 2025-07-24T05:25:00.6172278Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-07-24T05:25:00.6176310Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-07-24T05:25:00.6180647Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-07-24T05:25:00.6184841Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-07-24T05:25:00.6189020Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-07-24T05:25:00.6198193Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-07-24T05:25:00.6203896Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-07-24T05:25:00.6207851Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-07-24T05:25:00.6211858Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-07-24T05:25:00.6215691Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-07-24T05:25:00.6219471Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-07-24T05:25:00.6223120Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-07-24T05:25:00.6227457Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-07-24T05:25:00.6231161Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-07-24T05:25:00.6235032Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-07-24T05:25:00.6239885Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-07-24T05:25:00.6244510Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-07-24T05:25:00.6248321Z adding 'torch/ao/nn/qat/__init__.py' 2025-07-24T05:25:00.6252169Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-07-24T05:25:00.6255970Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-07-24T05:25:00.6259325Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-07-24T05:25:00.6263548Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-07-24T05:25:00.6268616Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-07-24T05:25:00.6273222Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-07-24T05:25:00.6277328Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-07-24T05:25:00.6281308Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-07-24T05:25:00.6285083Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-07-24T05:25:00.6293656Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-07-24T05:25:00.6303129Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-07-24T05:25:00.6307559Z adding 'torch/ao/nn/quantized/__init__.py' 2025-07-24T05:25:00.6316886Z adding 'torch/ao/nn/quantized/functional.py' 2025-07-24T05:25:00.6321962Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-07-24T05:25:00.6325886Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-07-24T05:25:00.6331614Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-07-24T05:25:00.6337211Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-07-24T05:25:00.6353017Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-07-24T05:25:00.6359579Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-07-24T05:25:00.6365047Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-07-24T05:25:00.6369799Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-07-24T05:25:00.6379974Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-07-24T05:25:00.6384430Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-07-24T05:25:00.6390572Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-07-24T05:25:00.6395422Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-07-24T05:25:00.6401904Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-07-24T05:25:00.6406389Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-07-24T05:25:00.6410231Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-07-24T05:25:00.6414487Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-07-24T05:25:00.6418518Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-07-24T05:25:00.6422655Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-07-24T05:25:00.6427620Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-07-24T05:25:00.6431730Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-07-24T05:25:00.6440535Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-07-24T05:25:00.6445178Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-07-24T05:25:00.6450925Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-07-24T05:25:00.6455002Z adding 'torch/ao/nn/sparse/__init__.py' 2025-07-24T05:25:00.6458753Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-07-24T05:25:00.6463648Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-07-24T05:25:00.6467717Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-07-24T05:25:00.6471509Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-07-24T05:25:00.6476034Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-07-24T05:25:00.6480039Z adding 'torch/ao/ns/__init__.py' 2025-07-24T05:25:00.6487326Z adding 'torch/ao/ns/_numeric_suite.py' 2025-07-24T05:25:00.6501692Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-07-24T05:25:00.6506744Z adding 'torch/ao/ns/fx/__init__.py' 2025-07-24T05:25:00.6514923Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-07-24T05:25:00.6530234Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-07-24T05:25:00.6537662Z adding 'torch/ao/ns/fx/mappings.py' 2025-07-24T05:25:00.6556371Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-07-24T05:25:00.6561304Z adding 'torch/ao/ns/fx/ns_types.py' 2025-07-24T05:25:00.6566230Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-07-24T05:25:00.6571801Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-07-24T05:25:00.6579942Z adding 'torch/ao/ns/fx/utils.py' 2025-07-24T05:25:00.6586975Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-07-24T05:25:00.6591372Z adding 'torch/ao/pruning/__init__.py' 2025-07-24T05:25:00.6594523Z adding 'torch/ao/pruning/_mappings.py' 2025-07-24T05:25:00.6598344Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-07-24T05:25:00.6602036Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-07-24T05:25:00.6610293Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-07-24T05:25:00.6614488Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-07-24T05:25:00.6619450Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-07-24T05:25:00.6623555Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-07-24T05:25:00.6630596Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-07-24T05:25:00.6635910Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-07-24T05:25:00.6640400Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-07-24T05:25:00.6644340Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-07-24T05:25:00.6648143Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-07-24T05:25:00.6651694Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-07-24T05:25:00.6656048Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-07-24T05:25:00.6661040Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-07-24T05:25:00.6664156Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-07-24T05:25:00.6669786Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-07-24T05:25:00.6673761Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-07-24T05:25:00.6677277Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-07-24T05:25:00.6680879Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-07-24T05:25:00.6688008Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-07-24T05:25:00.6691982Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-07-24T05:25:00.6695870Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-07-24T05:25:00.6700532Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-07-24T05:25:00.6704847Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-07-24T05:25:00.6708871Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-07-24T05:25:00.6712725Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-07-24T05:25:00.6719248Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-07-24T05:25:00.6723398Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-07-24T05:25:00.6727943Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-07-24T05:25:00.6733503Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-07-24T05:25:00.6739334Z adding 'torch/ao/quantization/__init__.py' 2025-07-24T05:25:00.6744014Z adding 'torch/ao/quantization/_correct_bias.py' 2025-07-24T05:25:00.6749940Z adding 'torch/ao/quantization/_equalize.py' 2025-07-24T05:25:00.6754908Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-07-24T05:25:00.6763185Z adding 'torch/ao/quantization/fake_quantize.py' 2025-07-24T05:25:00.6768507Z adding 'torch/ao/quantization/fuse_modules.py' 2025-07-24T05:25:00.6773814Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-07-24T05:25:00.6801028Z adding 'torch/ao/quantization/observer.py' 2025-07-24T05:25:00.6811596Z adding 'torch/ao/quantization/qconfig.py' 2025-07-24T05:25:00.6818399Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-07-24T05:25:00.6822331Z adding 'torch/ao/quantization/quant_type.py' 2025-07-24T05:25:00.6828496Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-07-24T05:25:00.6840349Z adding 'torch/ao/quantization/quantize.py' 2025-07-24T05:25:00.6852432Z adding 'torch/ao/quantization/quantize_fx.py' 2025-07-24T05:25:00.6859945Z adding 'torch/ao/quantization/quantize_jit.py' 2025-07-24T05:25:00.6866204Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-07-24T05:25:00.6870961Z adding 'torch/ao/quantization/stubs.py' 2025-07-24T05:25:00.6885198Z adding 'torch/ao/quantization/utils.py' 2025-07-24T05:25:00.6891645Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-07-24T05:25:00.6901804Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-07-24T05:25:00.6907635Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-07-24T05:25:00.6920127Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-07-24T05:25:00.6926774Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-07-24T05:25:00.6930961Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-07-24T05:25:00.6935206Z adding 'torch/ao/quantization/backend_config/native.py' 2025-07-24T05:25:00.6938782Z adding 'torch/ao/quantization/backend_config/observation_type.py' 2025-07-24T05:25:00.6944784Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-07-24T05:25:00.6949339Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-07-24T05:25:00.6953494Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-07-24T05:25:00.6959404Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-07-24T05:25:00.6963424Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-07-24T05:25:00.6967585Z adding 'torch/ao/quantization/fx/__init__.py' 2025-07-24T05:25:00.6978661Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-07-24T05:25:00.6994008Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-07-24T05:25:00.7012265Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-07-24T05:25:00.7034121Z adding 'torch/ao/quantization/fx/convert.py' 2025-07-24T05:25:00.7042596Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-07-24T05:25:00.7048006Z adding 'torch/ao/quantization/fx/fuse.py' 2025-07-24T05:25:00.7052426Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-07-24T05:25:00.7057119Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-07-24T05:25:00.7060808Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-07-24T05:25:00.7063840Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-07-24T05:25:00.7069368Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-07-24T05:25:00.7075019Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-07-24T05:25:00.7079733Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-07-24T05:25:00.7114815Z adding 'torch/ao/quantization/fx/prepare.py' 2025-07-24T05:25:00.7124187Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-07-24T05:25:00.7129914Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-07-24T05:25:00.7133998Z adding 'torch/ao/quantization/fx/tracer.py' 2025-07-24T05:25:00.7149732Z adding 'torch/ao/quantization/fx/utils.py' 2025-07-24T05:25:00.7154870Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-07-24T05:25:00.7179464Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-07-24T05:25:00.7192512Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-07-24T05:25:00.7199639Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-07-24T05:25:00.7211632Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-07-24T05:25:00.7216398Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-07-24T05:25:00.7227570Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-07-24T05:25:00.7234864Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-07-24T05:25:00.7238944Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-07-24T05:25:00.7243799Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-07-24T05:25:00.7248641Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-07-24T05:25:00.7252337Z adding 'torch/ao/quantization/pt2e/lowering.py' 2025-07-24T05:25:00.7257987Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-07-24T05:25:00.7267662Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-07-24T05:25:00.7280846Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-07-24T05:25:00.7291006Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-07-24T05:25:00.7295593Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-07-24T05:25:00.7303680Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-07-24T05:25:00.7315767Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-07-24T05:25:00.7316252Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-07-24T05:25:00.7320036Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-07-24T05:25:00.7324924Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-07-24T05:25:00.7328818Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-07-24T05:25:00.7346782Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-07-24T05:25:00.7355081Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-07-24T05:25:00.7367189Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-07-24T05:25:00.7372236Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-07-24T05:25:00.7383526Z adding 'torch/autograd/__init__.py' 2025-07-24T05:25:00.7388725Z adding 'torch/autograd/anomaly_mode.py' 2025-07-24T05:25:00.7393865Z adding 'torch/autograd/forward_ad.py' 2025-07-24T05:25:00.7406683Z adding 'torch/autograd/function.py' 2025-07-24T05:25:00.7423796Z adding 'torch/autograd/functional.py' 2025-07-24T05:25:00.7430955Z adding 'torch/autograd/grad_mode.py' 2025-07-24T05:25:00.7465727Z adding 'torch/autograd/gradcheck.py' 2025-07-24T05:25:00.7480147Z adding 'torch/autograd/graph.py' 2025-07-24T05:25:00.7498548Z adding 'torch/autograd/profiler.py' 2025-07-24T05:25:00.7505623Z adding 'torch/autograd/profiler_legacy.py' 2025-07-24T05:25:00.7521328Z adding 'torch/autograd/profiler_util.py' 2025-07-24T05:25:00.7525519Z adding 'torch/autograd/variable.py' 2025-07-24T05:25:00.7529316Z adding 'torch/autograd/_functions/__init__.py' 2025-07-24T05:25:00.7532806Z adding 'torch/autograd/_functions/tensor.py' 2025-07-24T05:25:00.7536332Z adding 'torch/autograd/_functions/utils.py' 2025-07-24T05:25:00.7541182Z adding 'torch/backends/__init__.py' 2025-07-24T05:25:00.7545022Z adding 'torch/backends/_coreml/__init__.py' 2025-07-24T05:25:00.7549315Z adding 'torch/backends/_coreml/preprocess.py' 2025-07-24T05:25:00.7553171Z adding 'torch/backends/_nnapi/__init__.py' 2025-07-24T05:25:00.7557725Z adding 'torch/backends/_nnapi/prepare.py' 2025-07-24T05:25:00.7582744Z adding 'torch/backends/_nnapi/serializer.py' 2025-07-24T05:25:00.7588764Z adding 'torch/backends/cpu/__init__.py' 2025-07-24T05:25:00.7596293Z adding 'torch/backends/cuda/__init__.py' 2025-07-24T05:25:00.7602403Z adding 'torch/backends/cudnn/__init__.py' 2025-07-24T05:25:00.7606164Z adding 'torch/backends/cudnn/rnn.py' 2025-07-24T05:25:00.7610224Z adding 'torch/backends/cusparselt/__init__.py' 2025-07-24T05:25:00.7613954Z adding 'torch/backends/kleidiai/__init__.py' 2025-07-24T05:25:00.7618275Z adding 'torch/backends/mha/__init__.py' 2025-07-24T05:25:00.7622497Z adding 'torch/backends/mkl/__init__.py' 2025-07-24T05:25:00.7627374Z adding 'torch/backends/mkldnn/__init__.py' 2025-07-24T05:25:00.7631789Z adding 'torch/backends/mps/__init__.py' 2025-07-24T05:25:00.7635696Z adding 'torch/backends/nnpack/__init__.py' 2025-07-24T05:25:00.7639592Z adding 'torch/backends/openmp/__init__.py' 2025-07-24T05:25:00.7644342Z adding 'torch/backends/opt_einsum/__init__.py' 2025-07-24T05:25:00.7648989Z adding 'torch/backends/quantized/__init__.py' 2025-07-24T05:25:00.7652684Z adding 'torch/backends/xeon/__init__.py' 2025-07-24T05:25:00.7665475Z adding 'torch/backends/xeon/run_cpu.py' 2025-07-24T05:25:00.7670610Z adding 'torch/backends/xnnpack/__init__.py' 2025-07-24T05:25:00.7897369Z adding 'torch/bin/FileStoreTest.exe' 2025-07-24T05:25:00.8101218Z adding 'torch/bin/ProcessGroupGlooAsyncTest.exe' 2025-07-24T05:25:00.8372140Z adding 'torch/bin/ProcessGroupGlooTest.exe' 2025-07-24T05:25:00.8620563Z adding 'torch/bin/TCPStoreTest.exe' 2025-07-24T05:25:00.8867012Z adding 'torch/bin/asmjit.dll' 2025-07-24T05:25:01.0644924Z adding 'torch/bin/fbgemm.dll' 2025-07-24T05:25:01.2289860Z adding 'torch/bin/protoc.exe' 2025-07-24T05:25:01.6992362Z adding 'torch/bin/test_api.exe' 2025-07-24T05:25:01.9902452Z adding 'torch/bin/test_jit.exe' 2025-07-24T05:25:02.1097432Z adding 'torch/bin/test_lazy.exe' 2025-07-24T05:25:02.2013556Z adding 'torch/bin/test_nativert.exe' 2025-07-24T05:25:02.5548012Z adding 'torch/bin/test_tensorexpr.exe' 2025-07-24T05:25:02.5775414Z adding 'torch/bin/tutorial_tensorexpr.exe' 2025-07-24T05:25:02.5790940Z adding 'torch/compiler/__init__.py' 2025-07-24T05:25:02.5797943Z adding 'torch/compiler/_cache.py' 2025-07-24T05:25:02.5802308Z adding 'torch/compiler/config.py' 2025-07-24T05:25:02.5806517Z adding 'torch/contrib/__init__.py' 2025-07-24T05:25:02.5811222Z adding 'torch/contrib/_tensorboard_vis.py' 2025-07-24T05:25:02.5816370Z adding 'torch/cpu/__init__.py' 2025-07-24T05:25:02.5820250Z adding 'torch/cpu/amp/__init__.py' 2025-07-24T05:25:02.5823939Z adding 'torch/cpu/amp/autocast_mode.py' 2025-07-24T05:25:02.5827448Z adding 'torch/cpu/amp/grad_scaler.py' 2025-07-24T05:25:02.5833119Z adding 'torch/csrc/inductor/aoti_runtime/model.h' 2025-07-24T05:25:02.5857714Z adding 'torch/cuda/__init__.py' 2025-07-24T05:25:02.5862636Z adding 'torch/cuda/_gpu_trace.py' 2025-07-24T05:25:02.5873872Z adding 'torch/cuda/_memory_viz.py' 2025-07-24T05:25:02.5877998Z adding 'torch/cuda/_pin_memory_utils.py' 2025-07-24T05:25:02.5887061Z adding 'torch/cuda/_sanitizer.py' 2025-07-24T05:25:02.5894350Z adding 'torch/cuda/_utils.py' 2025-07-24T05:25:02.5897764Z adding 'torch/cuda/comm.py' 2025-07-24T05:25:02.5900728Z adding 'torch/cuda/error.py' 2025-07-24T05:25:02.5905124Z adding 'torch/cuda/gds.py' 2025-07-24T05:25:02.5916126Z adding 'torch/cuda/graphs.py' 2025-07-24T05:25:02.5921617Z adding 'torch/cuda/jiterator.py' 2025-07-24T05:25:02.5939705Z adding 'torch/cuda/memory.py' 2025-07-24T05:25:02.5945465Z adding 'torch/cuda/nccl.py' 2025-07-24T05:25:02.5949961Z adding 'torch/cuda/nvtx.py' 2025-07-24T05:25:02.5954131Z adding 'torch/cuda/profiler.py' 2025-07-24T05:25:02.5958639Z adding 'torch/cuda/random.py' 2025-07-24T05:25:02.5962140Z adding 'torch/cuda/sparse.py' 2025-07-24T05:25:02.5968005Z adding 'torch/cuda/streams.py' 2025-07-24T05:25:02.5981137Z adding 'torch/cuda/tunable.py' 2025-07-24T05:25:02.5986182Z adding 'torch/cuda/amp/__init__.py' 2025-07-24T05:25:02.5989947Z adding 'torch/cuda/amp/autocast_mode.py' 2025-07-24T05:25:02.5993195Z adding 'torch/cuda/amp/common.py' 2025-07-24T05:25:02.5996497Z adding 'torch/cuda/amp/grad_scaler.py' 2025-07-24T05:25:02.6002520Z adding 'torch/distributed/__init__.py' 2025-07-24T05:25:02.6006175Z adding 'torch/distributed/_checkpointable.py' 2025-07-24T05:25:02.6010090Z adding 'torch/distributed/_composable_state.py' 2025-07-24T05:25:02.6014159Z adding 'torch/distributed/_dist2.py' 2025-07-24T05:25:02.6030463Z adding 'torch/distributed/_functional_collectives.py' 2025-07-24T05:25:02.6035174Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-07-24T05:25:02.6039469Z adding 'torch/distributed/_serialization.py' 2025-07-24T05:25:02.6050633Z adding 'torch/distributed/_state_dict_utils.py' 2025-07-24T05:25:02.6055333Z adding 'torch/distributed/argparse_util.py' 2025-07-24T05:25:02.6059240Z adding 'torch/distributed/c10d_logger.py' 2025-07-24T05:25:02.6064302Z adding 'torch/distributed/collective_utils.py' 2025-07-24T05:25:02.6068215Z adding 'torch/distributed/constants.py' 2025-07-24T05:25:02.6086512Z adding 'torch/distributed/device_mesh.py' 2025-07-24T05:25:02.6164029Z adding 'torch/distributed/distributed_c10d.py' 2025-07-24T05:25:02.6174238Z adding 'torch/distributed/launch.py' 2025-07-24T05:25:02.6177617Z adding 'torch/distributed/logging_handlers.py' 2025-07-24T05:25:02.6181597Z adding 'torch/distributed/remote_device.py' 2025-07-24T05:25:02.6187507Z adding 'torch/distributed/rendezvous.py' 2025-07-24T05:25:02.6200894Z adding 'torch/distributed/run.py' 2025-07-24T05:25:02.6207975Z adding 'torch/distributed/utils.py' 2025-07-24T05:25:02.6212816Z adding 'torch/distributed/_composable/__init__.py' 2025-07-24T05:25:02.6217108Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-07-24T05:25:02.6222539Z adding 'torch/distributed/_composable/contract.py' 2025-07-24T05:25:02.6228489Z adding 'torch/distributed/_composable/replicate.py' 2025-07-24T05:25:02.6232636Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-07-24T05:25:02.6237371Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-07-24T05:25:02.6241525Z adding 'torch/distributed/_shard/__init__.py' 2025-07-24T05:25:02.6244718Z adding 'torch/distributed/_shard/_utils.py' 2025-07-24T05:25:02.6250816Z adding 'torch/distributed/_shard/api.py' 2025-07-24T05:25:02.6254993Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-07-24T05:25:02.6258633Z adding 'torch/distributed/_shard/metadata.py' 2025-07-24T05:25:02.6262142Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-07-24T05:25:02.6265898Z adding 'torch/distributed/_shard/sharder.py' 2025-07-24T05:25:02.6269785Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-07-24T05:25:02.6274232Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-07-24T05:25:02.6278493Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-07-24T05:25:02.6286174Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-07-24T05:25:02.6305911Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-07-24T05:25:02.6310744Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-07-24T05:25:02.6314010Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-07-24T05:25:02.6323719Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-07-24T05:25:02.6324263Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-07-24T05:25:02.6327424Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-07-24T05:25:02.6333248Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-07-24T05:25:02.6337736Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-07-24T05:25:02.6341991Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-07-24T05:25:02.6346082Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-07-24T05:25:02.6350520Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-07-24T05:25:02.6354069Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-07-24T05:25:02.6358902Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-07-24T05:25:02.6362858Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-07-24T05:25:02.6367144Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-07-24T05:25:02.6371165Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-07-24T05:25:02.6376754Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-07-24T05:25:02.6382697Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-07-24T05:25:02.6388630Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-07-24T05:25:02.6392975Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-07-24T05:25:02.6399692Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-07-24T05:25:02.6406151Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-07-24T05:25:02.6414391Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-07-24T05:25:02.6418940Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-07-24T05:25:02.6423036Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-07-24T05:25:02.6446251Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-07-24T05:25:02.6452724Z adding 'torch/distributed/_symmetric_memory/_nvshmem_triton.py' 2025-07-24T05:25:02.6457490Z adding 'torch/distributed/_tensor/__init__.py' 2025-07-24T05:25:02.6460940Z adding 'torch/distributed/_tensor/api.py' 2025-07-24T05:25:02.6464364Z adding 'torch/distributed/_tensor/placement_types.py' 2025-07-24T05:25:02.6468843Z adding 'torch/distributed/_tools/__init__.py' 2025-07-24T05:25:02.6472539Z adding 'torch/distributed/_tools/common_utils.py' 2025-07-24T05:25:02.6478034Z adding 'torch/distributed/_tools/fake_collectives.py' 2025-07-24T05:25:02.6487485Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-07-24T05:25:02.6493827Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-07-24T05:25:02.6510056Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-07-24T05:25:02.6517129Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-07-24T05:25:02.6522745Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-07-24T05:25:02.6531678Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-07-24T05:25:02.6547630Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-07-24T05:25:02.6554512Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-07-24T05:25:02.6559034Z adding 'torch/distributed/algorithms/__init__.py' 2025-07-24T05:25:02.6565466Z adding 'torch/distributed/algorithms/join.py' 2025-07-24T05:25:02.6569727Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-07-24T05:25:02.6575914Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-07-24T05:25:02.6581229Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-07-24T05:25:02.6586283Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-07-24T05:25:02.6590347Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-07-24T05:25:02.6594357Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-07-24T05:25:02.6598182Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-07-24T05:25:02.6602363Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-07-24T05:25:02.6607385Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-07-24T05:25:02.6615103Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-07-24T05:25:02.6619037Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-07-24T05:25:02.6623639Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-07-24T05:25:02.6628178Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-07-24T05:25:02.6632691Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-07-24T05:25:02.6637155Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-07-24T05:25:02.6651987Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-07-24T05:25:02.6657988Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-07-24T05:25:02.6661873Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-07-24T05:25:02.6666357Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-07-24T05:25:02.6671983Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-07-24T05:25:02.6676095Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-07-24T05:25:02.6680501Z adding 'torch/distributed/autograd/__init__.py' 2025-07-24T05:25:02.6695265Z adding 'torch/distributed/checkpoint/__init__.py' 2025-07-24T05:25:02.6695716Z adding 'torch/distributed/checkpoint/_async_executor.py' 2025-07-24T05:25:02.6697596Z adding 'torch/distributed/checkpoint/_async_process_executor.py' 2025-07-24T05:25:02.6701244Z adding 'torch/distributed/checkpoint/_async_thread_executor.py' 2025-07-24T05:25:02.6705422Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-07-24T05:25:02.6717848Z adding 'torch/distributed/checkpoint/_consolidate_hf_safetensors.py' 2025-07-24T05:25:02.6722385Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-07-24T05:25:02.6726031Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-07-24T05:25:02.6731256Z adding 'torch/distributed/checkpoint/_extension.py' 2025-07-24T05:25:02.6735780Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-07-24T05:25:02.6739507Z adding 'torch/distributed/checkpoint/_hf_utils.py' 2025-07-24T05:25:02.6743241Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-07-24T05:25:02.6750168Z adding 'torch/distributed/checkpoint/_pg_transport.py' 2025-07-24T05:25:02.6754849Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-07-24T05:25:02.6761576Z adding 'torch/distributed/checkpoint/_state_dict_stager.py' 2025-07-24T05:25:02.6765195Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-07-24T05:25:02.6769725Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-07-24T05:25:02.6773245Z adding 'torch/distributed/checkpoint/_version.py' 2025-07-24T05:25:02.6776617Z adding 'torch/distributed/checkpoint/api.py' 2025-07-24T05:25:02.6786860Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-07-24T05:25:02.6799826Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-07-24T05:25:02.6806292Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-07-24T05:25:02.6813233Z adding 'torch/distributed/checkpoint/hf_storage.py' 2025-07-24T05:25:02.6817564Z adding 'torch/distributed/checkpoint/logger.py' 2025-07-24T05:25:02.6820783Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-07-24T05:25:02.6825159Z adding 'torch/distributed/checkpoint/metadata.py' 2025-07-24T05:25:02.6831772Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-07-24T05:25:02.6839293Z adding 'torch/distributed/checkpoint/planner.py' 2025-07-24T05:25:02.6846606Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-07-24T05:25:02.6850617Z adding 'torch/distributed/checkpoint/resharding.py' 2025-07-24T05:25:02.6857711Z adding 'torch/distributed/checkpoint/staging.py' 2025-07-24T05:25:02.6880425Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-07-24T05:25:02.6889254Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-07-24T05:25:02.6897104Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-07-24T05:25:02.6900761Z adding 'torch/distributed/checkpoint/stateful.py' 2025-07-24T05:25:02.6905844Z adding 'torch/distributed/checkpoint/storage.py' 2025-07-24T05:25:02.6913173Z adding 'torch/distributed/checkpoint/utils.py' 2025-07-24T05:25:02.6918325Z adding 'torch/distributed/checkpoint/_experimental/__init__.py' 2025-07-24T05:25:02.6923910Z adding 'torch/distributed/checkpoint/_experimental/barriers.py' 2025-07-24T05:25:02.6929005Z adding 'torch/distributed/checkpoint/_experimental/builder.py' 2025-07-24T05:25:02.6935314Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_process.py' 2025-07-24T05:25:02.6940820Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_reader.py' 2025-07-24T05:25:02.6945671Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_writer.py' 2025-07-24T05:25:02.6951333Z adding 'torch/distributed/checkpoint/_experimental/checkpointer.py' 2025-07-24T05:25:02.6955361Z adding 'torch/distributed/checkpoint/_experimental/config.py' 2025-07-24T05:25:02.6960493Z adding 'torch/distributed/checkpoint/_experimental/staging.py' 2025-07-24T05:25:02.6964134Z adding 'torch/distributed/checkpoint/_experimental/types.py' 2025-07-24T05:25:02.6967792Z adding 'torch/distributed/checkpoint/_experimental/utils.py' 2025-07-24T05:25:02.6973342Z adding 'torch/distributed/elastic/__init__.py' 2025-07-24T05:25:02.6977257Z adding 'torch/distributed/elastic/control_plane.py' 2025-07-24T05:25:02.6981336Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-07-24T05:25:02.6986249Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-07-24T05:25:02.7002508Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-07-24T05:25:02.7007089Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-07-24T05:25:02.7014572Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-07-24T05:25:02.7020389Z adding 'torch/distributed/elastic/events/__init__.py' 2025-07-24T05:25:02.7024655Z adding 'torch/distributed/elastic/events/api.py' 2025-07-24T05:25:02.7028120Z adding 'torch/distributed/elastic/events/handlers.py' 2025-07-24T05:25:02.7033417Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-07-24T05:25:02.7038168Z adding 'torch/distributed/elastic/metrics/api.py' 2025-07-24T05:25:02.7044448Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-07-24T05:25:02.7057968Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-07-24T05:25:02.7062736Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-07-24T05:25:02.7067141Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-07-24T05:25:02.7076305Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-07-24T05:25:02.7081628Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-07-24T05:25:02.7084969Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-07-24T05:25:02.7089000Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-07-24T05:25:02.7092155Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-07-24T05:25:02.7096187Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-07-24T05:25:02.7101769Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-07-24T05:25:02.7105534Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-07-24T05:25:02.7112068Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-07-24T05:25:02.7118220Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-07-24T05:25:02.7134782Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-07-24T05:25:02.7153275Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-07-24T05:25:02.7159786Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-07-24T05:25:02.7166096Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-07-24T05:25:02.7171981Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-07-24T05:25:02.7176194Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-07-24T05:25:02.7180753Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-07-24T05:25:02.7186834Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-07-24T05:25:02.7192057Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-07-24T05:25:02.7197984Z adding 'torch/distributed/elastic/timer/api.py' 2025-07-24T05:25:02.7201730Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-07-24T05:25:02.7209462Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-07-24T05:25:02.7213691Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-07-24T05:25:02.7217966Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-07-24T05:25:02.7221477Z adding 'torch/distributed/elastic/utils/api.py' 2025-07-24T05:25:02.7226525Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-07-24T05:25:02.7229816Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-07-24T05:25:02.7233408Z adding 'torch/distributed/elastic/utils/logging.py' 2025-07-24T05:25:02.7238529Z adding 'torch/distributed/elastic/utils/store.py' 2025-07-24T05:25:02.7242750Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-07-24T05:25:02.7246489Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-07-24T05:25:02.7250420Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-07-24T05:25:02.7254688Z adding 'torch/distributed/fsdp/__init__.py' 2025-07-24T05:25:02.7264581Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-07-24T05:25:02.7269954Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-07-24T05:25:02.7273867Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-07-24T05:25:02.7280605Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-07-24T05:25:02.7325504Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-07-24T05:25:02.7332388Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-07-24T05:25:02.7350414Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-07-24T05:25:02.7354805Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-07-24T05:25:02.7388270Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-07-24T05:25:02.7415258Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-07-24T05:25:02.7420879Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-07-24T05:25:02.7432996Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-07-24T05:25:02.7439743Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-07-24T05:25:02.7444405Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-07-24T05:25:02.7450811Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-07-24T05:25:02.7457362Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-07-24T05:25:02.7466631Z adding 'torch/distributed/fsdp/api.py' 2025-07-24T05:25:02.7504068Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-07-24T05:25:02.7513858Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-07-24T05:25:02.7523941Z adding 'torch/distributed/fsdp/wrap.py' 2025-07-24T05:25:02.7528863Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-07-24T05:25:02.7533378Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-07-24T05:25:02.7544491Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-07-24T05:25:02.7549881Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-07-24T05:25:02.7556158Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-07-24T05:25:02.7571967Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-07-24T05:25:02.7586601Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-07-24T05:25:02.7595031Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-07-24T05:25:02.7608395Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-07-24T05:25:02.7612872Z adding 'torch/distributed/launcher/__init__.py' 2025-07-24T05:25:02.7618861Z adding 'torch/distributed/launcher/api.py' 2025-07-24T05:25:02.7623049Z adding 'torch/distributed/nn/__init__.py' 2025-07-24T05:25:02.7629481Z adding 'torch/distributed/nn/functional.py' 2025-07-24T05:25:02.7633713Z adding 'torch/distributed/nn/api/__init__.py' 2025-07-24T05:25:02.7644337Z adding 'torch/distributed/nn/api/remote_module.py' 2025-07-24T05:25:02.7648790Z adding 'torch/distributed/nn/jit/__init__.py' 2025-07-24T05:25:02.7653115Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-07-24T05:25:02.7657251Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-07-24T05:25:02.7660911Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-07-24T05:25:02.7665419Z adding 'torch/distributed/optim/__init__.py' 2025-07-24T05:25:02.7668672Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-07-24T05:25:02.7673003Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-07-24T05:25:02.7677042Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-07-24T05:25:02.7681148Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-07-24T05:25:02.7685701Z adding 'torch/distributed/optim/functional_adam.py' 2025-07-24T05:25:02.7689978Z adding 'torch/distributed/optim/functional_adamax.py' 2025-07-24T05:25:02.7694583Z adding 'torch/distributed/optim/functional_adamw.py' 2025-07-24T05:25:02.7698895Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-07-24T05:25:02.7702930Z adding 'torch/distributed/optim/functional_rprop.py' 2025-07-24T05:25:02.7707404Z adding 'torch/distributed/optim/functional_sgd.py' 2025-07-24T05:25:02.7713991Z adding 'torch/distributed/optim/named_optimizer.py' 2025-07-24T05:25:02.7719975Z adding 'torch/distributed/optim/optimizer.py' 2025-07-24T05:25:02.7724415Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-07-24T05:25:02.7727971Z adding 'torch/distributed/optim/utils.py' 2025-07-24T05:25:02.7754600Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-07-24T05:25:02.7760085Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-07-24T05:25:02.7782088Z adding 'torch/distributed/pipelining/_IR.py' 2025-07-24T05:25:02.7786631Z adding 'torch/distributed/pipelining/__init__.py' 2025-07-24T05:25:02.7794170Z adding 'torch/distributed/pipelining/_backward.py' 2025-07-24T05:25:02.7798200Z adding 'torch/distributed/pipelining/_debug.py' 2025-07-24T05:25:02.7802750Z adding 'torch/distributed/pipelining/_schedule_visualizer.py' 2025-07-24T05:25:02.7806412Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-07-24T05:25:02.7810412Z adding 'torch/distributed/pipelining/_utils.py' 2025-07-24T05:25:02.7818162Z adding 'torch/distributed/pipelining/microbatch.py' 2025-07-24T05:25:02.7854251Z adding 'torch/distributed/pipelining/schedules.py' 2025-07-24T05:25:02.7881329Z adding 'torch/distributed/pipelining/stage.py' 2025-07-24T05:25:02.7889298Z adding 'torch/distributed/rpc/__init__.py' 2025-07-24T05:25:02.7893384Z adding 'torch/distributed/rpc/_utils.py' 2025-07-24T05:25:02.7906295Z adding 'torch/distributed/rpc/api.py' 2025-07-24T05:25:02.7914684Z adding 'torch/distributed/rpc/backend_registry.py' 2025-07-24T05:25:02.7918393Z adding 'torch/distributed/rpc/constants.py' 2025-07-24T05:25:02.7923129Z adding 'torch/distributed/rpc/functions.py' 2025-07-24T05:25:02.7929130Z adding 'torch/distributed/rpc/internal.py' 2025-07-24T05:25:02.7934445Z adding 'torch/distributed/rpc/options.py' 2025-07-24T05:25:02.7938469Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-07-24T05:25:02.7943634Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-07-24T05:25:02.7948273Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-07-24T05:25:02.7952127Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-07-24T05:25:02.7957107Z adding 'torch/distributed/tensor/__init__.py' 2025-07-24T05:25:02.7977288Z adding 'torch/distributed/tensor/_api.py' 2025-07-24T05:25:02.7985690Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-07-24T05:25:02.7994403Z adding 'torch/distributed/tensor/_dispatch.py' 2025-07-24T05:25:02.8000590Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-07-24T05:25:02.8010440Z adding 'torch/distributed/tensor/_op_schema.py' 2025-07-24T05:25:02.8018352Z adding 'torch/distributed/tensor/_random.py' 2025-07-24T05:25:02.8025978Z adding 'torch/distributed/tensor/_redistribute.py' 2025-07-24T05:25:02.8037125Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-07-24T05:25:02.8044641Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-07-24T05:25:02.8049276Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-07-24T05:25:02.8057034Z adding 'torch/distributed/tensor/_utils.py' 2025-07-24T05:25:02.8060499Z adding 'torch/distributed/tensor/device_mesh.py' 2025-07-24T05:25:02.8071553Z adding 'torch/distributed/tensor/placement_types.py' 2025-07-24T05:25:02.8076318Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-07-24T05:25:02.8082511Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-07-24T05:25:02.8086616Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-07-24T05:25:02.8091473Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-07-24T05:25:02.8096942Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-07-24T05:25:02.8110803Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-07-24T05:25:02.8122453Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-07-24T05:25:02.8132713Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-07-24T05:25:02.8136726Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-07-24T05:25:02.8153178Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-07-24T05:25:02.8165594Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-07-24T05:25:02.8173044Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-07-24T05:25:02.8177671Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-07-24T05:25:02.8187711Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-07-24T05:25:02.8192247Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-07-24T05:25:02.8197622Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-07-24T05:25:02.8202228Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-07-24T05:25:02.8219995Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-07-24T05:25:02.8227228Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-07-24T05:25:02.8232280Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-07-24T05:25:02.8241049Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-07-24T05:25:02.8245520Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-07-24T05:25:02.8249211Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-07-24T05:25:02.8253859Z adding 'torch/distributed/tensor/parallel/api.py' 2025-07-24T05:25:02.8257999Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-07-24T05:25:02.8265121Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-07-24T05:25:02.8269466Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-07-24T05:25:02.8277220Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-07-24T05:25:02.8288036Z adding 'torch/distributed/tensor/parallel/style.py' 2025-07-24T05:25:02.8295615Z adding 'torch/distributions/__init__.py' 2025-07-24T05:25:02.8299789Z adding 'torch/distributions/bernoulli.py' 2025-07-24T05:25:02.8303898Z adding 'torch/distributions/beta.py' 2025-07-24T05:25:02.8308828Z adding 'torch/distributions/binomial.py' 2025-07-24T05:25:02.8313848Z adding 'torch/distributions/categorical.py' 2025-07-24T05:25:02.8317570Z adding 'torch/distributions/cauchy.py' 2025-07-24T05:25:02.8321214Z adding 'torch/distributions/chi2.py' 2025-07-24T05:25:02.8326562Z adding 'torch/distributions/constraint_registry.py' 2025-07-24T05:25:02.8334705Z adding 'torch/distributions/constraints.py' 2025-07-24T05:25:02.8340703Z adding 'torch/distributions/continuous_bernoulli.py' 2025-07-24T05:25:02.8345162Z adding 'torch/distributions/dirichlet.py' 2025-07-24T05:25:02.8351393Z adding 'torch/distributions/distribution.py' 2025-07-24T05:25:02.8355557Z adding 'torch/distributions/exp_family.py' 2025-07-24T05:25:02.8359260Z adding 'torch/distributions/exponential.py' 2025-07-24T05:25:02.8363479Z adding 'torch/distributions/fishersnedecor.py' 2025-07-24T05:25:02.8367522Z adding 'torch/distributions/gamma.py' 2025-07-24T05:25:02.8372670Z adding 'torch/distributions/generalized_pareto.py' 2025-07-24T05:25:02.8376709Z adding 'torch/distributions/geometric.py' 2025-07-24T05:25:02.8380604Z adding 'torch/distributions/gumbel.py' 2025-07-24T05:25:02.8384306Z adding 'torch/distributions/half_cauchy.py' 2025-07-24T05:25:02.8388255Z adding 'torch/distributions/half_normal.py' 2025-07-24T05:25:02.8392459Z adding 'torch/distributions/independent.py' 2025-07-24T05:25:02.8396535Z adding 'torch/distributions/inverse_gamma.py' 2025-07-24T05:25:02.8407239Z adding 'torch/distributions/kl.py' 2025-07-24T05:25:02.8412005Z adding 'torch/distributions/kumaraswamy.py' 2025-07-24T05:25:02.8416182Z adding 'torch/distributions/laplace.py' 2025-07-24T05:25:02.8420929Z adding 'torch/distributions/lkj_cholesky.py' 2025-07-24T05:25:02.8424926Z adding 'torch/distributions/log_normal.py' 2025-07-24T05:25:02.8429002Z adding 'torch/distributions/logistic_normal.py' 2025-07-24T05:25:02.8434238Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-07-24T05:25:02.8439474Z adding 'torch/distributions/mixture_same_family.py' 2025-07-24T05:25:02.8444234Z adding 'torch/distributions/multinomial.py' 2025-07-24T05:25:02.8449953Z adding 'torch/distributions/multivariate_normal.py' 2025-07-24T05:25:02.8454741Z adding 'torch/distributions/negative_binomial.py' 2025-07-24T05:25:02.8458723Z adding 'torch/distributions/normal.py' 2025-07-24T05:25:02.8463266Z adding 'torch/distributions/one_hot_categorical.py' 2025-07-24T05:25:02.8466833Z adding 'torch/distributions/pareto.py' 2025-07-24T05:25:02.8470749Z adding 'torch/distributions/poisson.py' 2025-07-24T05:25:02.8475132Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-07-24T05:25:02.8479476Z adding 'torch/distributions/relaxed_categorical.py' 2025-07-24T05:25:02.8483615Z adding 'torch/distributions/studentT.py' 2025-07-24T05:25:02.8488769Z adding 'torch/distributions/transformed_distribution.py' 2025-07-24T05:25:02.8502992Z adding 'torch/distributions/transforms.py' 2025-07-24T05:25:02.8508039Z adding 'torch/distributions/uniform.py' 2025-07-24T05:25:02.8513278Z adding 'torch/distributions/utils.py' 2025-07-24T05:25:02.8518176Z adding 'torch/distributions/von_mises.py' 2025-07-24T05:25:02.8522083Z adding 'torch/distributions/weibull.py' 2025-07-24T05:25:02.8528279Z adding 'torch/distributions/wishart.py' 2025-07-24T05:25:02.8538941Z adding 'torch/export/__init__.py' 2025-07-24T05:25:02.8548560Z adding 'torch/export/_draft_export.py' 2025-07-24T05:25:02.8552759Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-07-24T05:25:02.8557547Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-07-24T05:25:02.8561552Z adding 'torch/export/_safeguard.py' 2025-07-24T05:25:02.8569407Z adding 'torch/export/_swap.py' 2025-07-24T05:25:02.8605518Z adding 'torch/export/_trace.py' 2025-07-24T05:25:02.8611434Z adding 'torch/export/_tree_utils.py' 2025-07-24T05:25:02.8619601Z adding 'torch/export/_unlift.py' 2025-07-24T05:25:02.8623342Z adding 'torch/export/_wrapper_utils.py' 2025-07-24T05:25:02.8626420Z adding 'torch/export/custom_obj.py' 2025-07-24T05:25:02.8629719Z adding 'torch/export/custom_ops.py' 2025-07-24T05:25:02.8634038Z adding 'torch/export/decomp_utils.py' 2025-07-24T05:25:02.8655024Z adding 'torch/export/dynamic_shapes.py' 2025-07-24T05:25:02.8681556Z adding 'torch/export/exported_program.py' 2025-07-24T05:25:02.8691742Z adding 'torch/export/graph_signature.py' 2025-07-24T05:25:02.8719236Z adding 'torch/export/unflatten.py' 2025-07-24T05:25:02.8729522Z adding 'torch/export/experimental/__init__.py' 2025-07-24T05:25:02.8734805Z adding 'torch/export/experimental/_utils.py' 2025-07-24T05:25:02.8739447Z adding 'torch/export/passes/__init__.py' 2025-07-24T05:25:02.8743321Z adding 'torch/export/pt2_archive/__init__.py' 2025-07-24T05:25:02.8753134Z adding 'torch/export/pt2_archive/_package.py' 2025-07-24T05:25:02.8757732Z adding 'torch/export/pt2_archive/_package_weights.py' 2025-07-24T05:25:02.8761095Z adding 'torch/export/pt2_archive/constants.py' 2025-07-24T05:25:02.8774885Z adding 'torch/fft/__init__.py' 2025-07-24T05:25:02.8780413Z adding 'torch/func/__init__.py' 2025-07-24T05:25:02.8787980Z adding 'torch/futures/__init__.py' 2025-07-24T05:25:02.8793526Z adding 'torch/fx/__init__.py' 2025-07-24T05:25:02.8797156Z adding 'torch/fx/_compatibility.py' 2025-07-24T05:25:02.8805596Z adding 'torch/fx/_graph_pickler.py' 2025-07-24T05:25:02.8810864Z adding 'torch/fx/_lazy_graph_module.py' 2025-07-24T05:25:02.8814758Z adding 'torch/fx/_pytree.py' 2025-07-24T05:25:02.8835178Z adding 'torch/fx/_symbolic_trace.py' 2025-07-24T05:25:02.8839872Z adding 'torch/fx/_utils.py' 2025-07-24T05:25:02.8843173Z adding 'torch/fx/annotate.py' 2025-07-24T05:25:02.8846147Z adding 'torch/fx/config.py' 2025-07-24T05:25:02.8875871Z adding 'torch/fx/graph.py' 2025-07-24T05:25:02.8894820Z adding 'torch/fx/graph_module.py' 2025-07-24T05:25:02.8899613Z adding 'torch/fx/immutable_collections.py' 2025-07-24T05:25:02.8908322Z adding 'torch/fx/interpreter.py' 2025-07-24T05:25:02.8923307Z adding 'torch/fx/node.py' 2025-07-24T05:25:02.8933375Z adding 'torch/fx/operator_schemas.py' 2025-07-24T05:25:02.8946105Z adding 'torch/fx/proxy.py' 2025-07-24T05:25:02.8954424Z adding 'torch/fx/subgraph_rewriter.py' 2025-07-24T05:25:02.8958446Z adding 'torch/fx/tensor_type.py' 2025-07-24T05:25:02.8964074Z adding 'torch/fx/traceback.py' 2025-07-24T05:25:02.8968505Z adding 'torch/fx/experimental/__init__.py' 2025-07-24T05:25:02.8971774Z adding 'torch/fx/experimental/_backward_state.py' 2025-07-24T05:25:02.8976005Z adding 'torch/fx/experimental/_config.py' 2025-07-24T05:25:02.8979365Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-07-24T05:25:02.8983496Z adding 'torch/fx/experimental/_dynamism.py' 2025-07-24T05:25:02.9001457Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-07-24T05:25:02.9009684Z adding 'torch/fx/experimental/const_fold.py' 2025-07-24T05:25:02.9013655Z adding 'torch/fx/experimental/debug.py' 2025-07-24T05:25:02.9026855Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-07-24T05:25:02.9033082Z adding 'torch/fx/experimental/merge_matmul.py' 2025-07-24T05:25:02.9039447Z adding 'torch/fx/experimental/meta_tracer.py' 2025-07-24T05:25:02.9044605Z adding 'torch/fx/experimental/normalize.py' 2025-07-24T05:25:02.9053388Z adding 'torch/fx/experimental/optimization.py' 2025-07-24T05:25:02.9060228Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-07-24T05:25:02.9098830Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-07-24T05:25:02.9110625Z adding 'torch/fx/experimental/recording.py' 2025-07-24T05:25:02.9114323Z adding 'torch/fx/experimental/refinement_types.py' 2025-07-24T05:25:02.9118723Z adding 'torch/fx/experimental/rewriter.py' 2025-07-24T05:25:02.9123252Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-07-24T05:25:02.9145390Z adding 'torch/fx/experimental/sym_node.py' 2025-07-24T05:25:02.9283891Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-07-24T05:25:02.9295799Z adding 'torch/fx/experimental/unify_refinements.py' 2025-07-24T05:25:02.9309711Z adding 'torch/fx/experimental/validator.py' 2025-07-24T05:25:02.9314774Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-07-24T05:25:02.9321817Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-07-24T05:25:02.9338132Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-07-24T05:25:02.9354093Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-07-24T05:25:02.9358388Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-07-24T05:25:02.9364914Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-07-24T05:25:02.9369031Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-07-24T05:25:02.9372108Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-07-24T05:25:02.9376224Z adding 'torch/fx/experimental/unification/__init__.py' 2025-07-24T05:25:02.9380194Z adding 'torch/fx/experimental/unification/core.py' 2025-07-24T05:25:02.9383261Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-07-24T05:25:02.9387357Z adding 'torch/fx/experimental/unification/match.py' 2025-07-24T05:25:02.9391024Z adding 'torch/fx/experimental/unification/more.py' 2025-07-24T05:25:02.9397091Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-07-24T05:25:02.9401442Z adding 'torch/fx/experimental/unification/utils.py' 2025-07-24T05:25:02.9405268Z adding 'torch/fx/experimental/unification/variable.py' 2025-07-24T05:25:02.9409297Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-07-24T05:25:02.9413482Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-07-24T05:25:02.9417560Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-07-24T05:25:02.9424595Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-07-24T05:25:02.9429445Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-07-24T05:25:02.9433425Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-07-24T05:25:02.9437758Z adding 'torch/fx/passes/__init__.py' 2025-07-24T05:25:02.9445184Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-07-24T05:25:02.9449295Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-07-24T05:25:02.9453864Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-07-24T05:25:02.9461944Z adding 'torch/fx/passes/graph_drawer.py' 2025-07-24T05:25:02.9467219Z adding 'torch/fx/passes/graph_manipulation.py' 2025-07-24T05:25:02.9472621Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-07-24T05:25:02.9486157Z adding 'torch/fx/passes/net_min_base.py' 2025-07-24T05:25:02.9492171Z adding 'torch/fx/passes/operator_support.py' 2025-07-24T05:25:02.9496553Z adding 'torch/fx/passes/param_fetch.py' 2025-07-24T05:25:02.9501691Z adding 'torch/fx/passes/pass_manager.py' 2025-07-24T05:25:02.9516481Z adding 'torch/fx/passes/reinplace.py' 2025-07-24T05:25:02.9528195Z adding 'torch/fx/passes/runtime_assert.py' 2025-07-24T05:25:02.9534132Z adding 'torch/fx/passes/shape_prop.py' 2025-07-24T05:25:02.9544653Z adding 'torch/fx/passes/split_module.py' 2025-07-24T05:25:02.9551529Z adding 'torch/fx/passes/split_utils.py' 2025-07-24T05:25:02.9564856Z adding 'torch/fx/passes/splitter_base.py' 2025-07-24T05:25:02.9571699Z adding 'torch/fx/passes/tools_common.py' 2025-07-24T05:25:02.9575917Z adding 'torch/fx/passes/backends/__init__.py' 2025-07-24T05:25:02.9579507Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-07-24T05:25:02.9583196Z adding 'torch/fx/passes/dialect/__init__.py' 2025-07-24T05:25:02.9586969Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-07-24T05:25:02.9591199Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-07-24T05:25:02.9595128Z adding 'torch/fx/passes/infra/__init__.py' 2025-07-24T05:25:02.9602212Z adding 'torch/fx/passes/infra/partitioner.py' 2025-07-24T05:25:02.9606237Z adding 'torch/fx/passes/infra/pass_base.py' 2025-07-24T05:25:02.9612296Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-07-24T05:25:02.9616306Z adding 'torch/fx/passes/tests/__init__.py' 2025-07-24T05:25:02.9619626Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-07-24T05:25:02.9623371Z adding 'torch/fx/passes/utils/__init__.py' 2025-07-24T05:25:02.9627256Z adding 'torch/fx/passes/utils/common.py' 2025-07-24T05:25:02.9633014Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-07-24T05:25:02.9641004Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-07-24T05:25:02.9645684Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-07-24T05:25:02.9650293Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-07-24T05:25:02.9660190Z adding 'torch/include/advisor-annotate.h' 2025-07-24T05:25:02.9674369Z adding 'torch/include/cpuinfo.h' 2025-07-24T05:25:02.9679025Z adding 'torch/include/dnnl.h' 2025-07-24T05:25:02.9682216Z adding 'torch/include/dnnl.hpp' 2025-07-24T05:25:02.9685402Z adding 'torch/include/dnnl_config.h' 2025-07-24T05:25:02.9688634Z adding 'torch/include/dnnl_debug.h' 2025-07-24T05:25:02.9692072Z adding 'torch/include/dnnl_ocl.h' 2025-07-24T05:25:02.9695171Z adding 'torch/include/dnnl_ocl.hpp' 2025-07-24T05:25:02.9698316Z adding 'torch/include/dnnl_sycl.h' 2025-07-24T05:25:02.9701454Z adding 'torch/include/dnnl_sycl.hpp' 2025-07-24T05:25:02.9704579Z adding 'torch/include/dnnl_sycl_types.h' 2025-07-24T05:25:02.9707873Z adding 'torch/include/dnnl_threadpool.h' 2025-07-24T05:25:02.9710976Z adding 'torch/include/dnnl_threadpool.hpp' 2025-07-24T05:25:02.9714176Z adding 'torch/include/dnnl_threadpool_iface.hpp' 2025-07-24T05:25:02.9717201Z adding 'torch/include/dnnl_types.h' 2025-07-24T05:25:02.9720294Z adding 'torch/include/dnnl_version.h' 2025-07-24T05:25:02.9723350Z adding 'torch/include/experiments-config.h' 2025-07-24T05:25:02.9726162Z adding 'torch/include/fp16.h' 2025-07-24T05:25:02.9731499Z adding 'torch/include/fxdiv.h' 2025-07-24T05:25:02.9735643Z adding 'torch/include/ittnotify-zca.h' 2025-07-24T05:25:02.9784187Z adding 'torch/include/ittnotify.h' 2025-07-24T05:25:02.9799189Z adding 'torch/include/jitprofiling.h' 2025-07-24T05:25:02.9803103Z adding 'torch/include/libittnotify.h' 2025-07-24T05:25:02.9806427Z adding 'torch/include/libshm.h' 2025-07-24T05:25:02.9816991Z adding 'torch/include/psimd.h' 2025-07-24T05:25:02.9832679Z adding 'torch/include/pthreadpool.h' 2025-07-24T05:25:02.9878032Z adding 'torch/include/sleef.h' 2025-07-24T05:25:02.9922055Z adding 'torch/include/xnnpack.h' 2025-07-24T05:25:02.9933856Z adding 'torch/include/ATen/ATen.h' 2025-07-24T05:25:02.9938358Z adding 'torch/include/ATen/AccumulateType.h' 2025-07-24T05:25:02.9941477Z adding 'torch/include/ATen/ArrayRef.h' 2025-07-24T05:25:02.9944417Z adding 'torch/include/ATen/Backend.h' 2025-07-24T05:25:02.9947385Z adding 'torch/include/ATen/Backtrace.h' 2025-07-24T05:25:02.9950611Z adding 'torch/include/ATen/BlasBackend.h' 2025-07-24T05:25:02.9956221Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-07-24T05:25:02.9959779Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-07-24T05:25:02.9963638Z adding 'torch/include/ATen/CPUFunctions.h' 2025-07-24T05:25:02.9970651Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-07-24T05:25:02.9975135Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-07-24T05:25:02.9979069Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-07-24T05:25:02.9986795Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-07-24T05:25:02.9991273Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-07-24T05:25:02.9994944Z adding 'torch/include/ATen/CollapseDims.h' 2025-07-24T05:25:02.9998889Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-07-24T05:25:03.0006517Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-07-24T05:25:03.0011412Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-07-24T05:25:03.0016866Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-07-24T05:25:03.0020996Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-07-24T05:25:03.0027987Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-07-24T05:25:03.0032488Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-07-24T05:25:03.0035877Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-07-24T05:25:03.0038975Z adding 'torch/include/ATen/Config.h' 2025-07-24T05:25:03.0048012Z adding 'torch/include/ATen/Context.h' 2025-07-24T05:25:03.0052304Z adding 'torch/include/ATen/DLConvertor.h' 2025-07-24T05:25:03.0055256Z adding 'torch/include/ATen/Device.h' 2025-07-24T05:25:03.0058981Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-07-24T05:25:03.0062328Z adding 'torch/include/ATen/DeviceGuard.h' 2025-07-24T05:25:03.0065346Z adding 'torch/include/ATen/DimVector.h' 2025-07-24T05:25:03.0068426Z adding 'torch/include/ATen/Dimname.h' 2025-07-24T05:25:03.0077542Z adding 'torch/include/ATen/Dispatch.h' 2025-07-24T05:25:03.0086880Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-07-24T05:25:03.0091576Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-07-24T05:25:03.0095059Z adding 'torch/include/ATen/EmptyTensor.h' 2025-07-24T05:25:03.0098325Z adding 'torch/include/ATen/ExpandBase.h' 2025-07-24T05:25:03.0104381Z adding 'torch/include/ATen/ExpandUtils.h' 2025-07-24T05:25:03.0107870Z adding 'torch/include/ATen/Formatting.h' 2025-07-24T05:25:03.0111291Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-07-24T05:25:03.0116754Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-07-24T05:25:03.0124904Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-07-24T05:25:03.0137109Z adding 'torch/include/ATen/Functions.h' 2025-07-24T05:25:03.0141428Z adding 'torch/include/ATen/Generator.h' 2025-07-24T05:25:03.0145290Z adding 'torch/include/ATen/InferSize.h' 2025-07-24T05:25:03.0148509Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-07-24T05:25:03.0151298Z adding 'torch/include/ATen/Layout.h' 2025-07-24T05:25:03.0154505Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-07-24T05:25:03.0159053Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-07-24T05:25:03.0162415Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-07-24T05:25:03.0167615Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-07-24T05:25:03.0170958Z adding 'torch/include/ATen/LinalgBackend.h' 2025-07-24T05:25:03.0174747Z adding 'torch/include/ATen/MapAllocator.h' 2025-07-24T05:25:03.0178591Z adding 'torch/include/ATen/MatrixRef.h' 2025-07-24T05:25:03.0181934Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-07-24T05:25:03.0185546Z adding 'torch/include/ATen/MetaFunctions.h' 2025-07-24T05:25:03.0190413Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-07-24T05:25:03.0195845Z adding 'torch/include/ATen/MethodOperators.h' 2025-07-24T05:25:03.0199108Z adding 'torch/include/ATen/NamedTensor.h' 2025-07-24T05:25:03.0203546Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-07-24T05:25:03.0215366Z adding 'torch/include/ATen/NativeFunctions.h' 2025-07-24T05:25:03.0227723Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-07-24T05:25:03.0234895Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-07-24T05:25:03.0239050Z adding 'torch/include/ATen/NumericUtils.h' 2025-07-24T05:25:03.0242552Z adding 'torch/include/ATen/OpMathType.h' 2025-07-24T05:25:03.0247126Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-07-24T05:25:03.0259102Z adding 'torch/include/ATen/Operators.h' 2025-07-24T05:25:03.0263959Z adding 'torch/include/ATen/PTThreadPool.h' 2025-07-24T05:25:03.0267109Z adding 'torch/include/ATen/PadNd.h' 2025-07-24T05:25:03.0270606Z adding 'torch/include/ATen/Parallel-inl.h' 2025-07-24T05:25:03.0274962Z adding 'torch/include/ATen/Parallel.h' 2025-07-24T05:25:03.0278183Z adding 'torch/include/ATen/ParallelFuture.h' 2025-07-24T05:25:03.0281389Z adding 'torch/include/ATen/ParallelNative.h' 2025-07-24T05:25:03.0284646Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-07-24T05:25:03.0288209Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-07-24T05:25:03.0291538Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-07-24T05:25:03.0574350Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-07-24T05:25:03.0774987Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-07-24T05:25:03.0801942Z adding 'torch/include/ATen/SDPBackend.h' 2025-07-24T05:25:03.0805815Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-07-24T05:25:03.0808818Z adding 'torch/include/ATen/Scalar.h' 2025-07-24T05:25:03.0812501Z adding 'torch/include/ATen/ScalarOps.h' 2025-07-24T05:25:03.0815493Z adding 'torch/include/ATen/ScalarType.h' 2025-07-24T05:25:03.0818661Z adding 'torch/include/ATen/SequenceNumber.h' 2025-07-24T05:25:03.0821507Z adding 'torch/include/ATen/SmallVector.h' 2025-07-24T05:25:03.0826457Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-07-24T05:25:03.0833246Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-07-24T05:25:03.0840640Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-07-24T05:25:03.0844220Z adding 'torch/include/ATen/Storage.h' 2025-07-24T05:25:03.0847678Z adding 'torch/include/ATen/StorageUtils.h' 2025-07-24T05:25:03.0850512Z adding 'torch/include/ATen/Tensor.h' 2025-07-24T05:25:03.0853462Z adding 'torch/include/ATen/TensorAccessor.h' 2025-07-24T05:25:03.0857345Z adding 'torch/include/ATen/TensorGeometry.h' 2025-07-24T05:25:03.0868206Z adding 'torch/include/ATen/TensorIndexing.h' 2025-07-24T05:25:03.0885042Z adding 'torch/include/ATen/TensorIterator.h' 2025-07-24T05:25:03.0889850Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-07-24T05:25:03.0894218Z adding 'torch/include/ATen/TensorMeta.h' 2025-07-24T05:25:03.0898211Z adding 'torch/include/ATen/TensorNames.h' 2025-07-24T05:25:03.0902024Z adding 'torch/include/ATen/TensorOperators.h' 2025-07-24T05:25:03.0905064Z adding 'torch/include/ATen/TensorOptions.h' 2025-07-24T05:25:03.0909166Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-07-24T05:25:03.0913540Z adding 'torch/include/ATen/TensorUtils.h' 2025-07-24T05:25:03.0916941Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-07-24T05:25:03.0921152Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-07-24T05:25:03.0925920Z adding 'torch/include/ATen/TracerMode.h' 2025-07-24T05:25:03.0929217Z adding 'torch/include/ATen/TypeDefault.h' 2025-07-24T05:25:03.0933113Z adding 'torch/include/ATen/Utils.h' 2025-07-24T05:25:03.0936255Z adding 'torch/include/ATen/Version.h' 2025-07-24T05:25:03.1122949Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-07-24T05:25:03.1169144Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-07-24T05:25:03.1172805Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-07-24T05:25:03.1184368Z adding 'torch/include/ATen/autocast_mode.h' 2025-07-24T05:25:03.1188729Z adding 'torch/include/ATen/ceil_div.h' 2025-07-24T05:25:03.1193557Z adding 'torch/include/ATen/code_template.h' 2025-07-24T05:25:03.1197604Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-07-24T05:25:03.1200727Z adding 'torch/include/ATen/div_rtn.h' 2025-07-24T05:25:03.1206551Z adding 'torch/include/ATen/dlpack.h' 2025-07-24T05:25:03.1216598Z adding 'torch/include/ATen/jit_macros.h' 2025-07-24T05:25:03.1217012Z adding 'torch/include/ATen/jiterator_macros.h' 2025-07-24T05:25:03.1222787Z adding 'torch/include/ATen/record_function.h' 2025-07-24T05:25:03.1228599Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-07-24T05:25:03.1231543Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-07-24T05:25:03.1234676Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-07-24T05:25:03.1238667Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-07-24T05:25:03.1242033Z adding 'torch/include/ATen/core/Array.h' 2025-07-24T05:25:03.1244925Z adding 'torch/include/ATen/core/Backtrace.h' 2025-07-24T05:25:03.1256207Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-07-24T05:25:03.1260135Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-07-24T05:25:03.1264060Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-07-24T05:25:03.1267618Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-07-24T05:25:03.1274230Z adding 'torch/include/ATen/core/Dict.h' 2025-07-24T05:25:03.1279270Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-07-24T05:25:03.1282913Z adding 'torch/include/ATen/core/DimVector.h' 2025-07-24T05:25:03.1286164Z adding 'torch/include/ATen/core/Dimname.h' 2025-07-24T05:25:03.1291381Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-07-24T05:25:03.1294871Z adding 'torch/include/ATen/core/Formatting.h' 2025-07-24T05:25:03.1299669Z adding 'torch/include/ATen/core/Generator.h' 2025-07-24T05:25:03.1303230Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-07-24T05:25:03.1311924Z adding 'torch/include/ATen/core/IListRef.h' 2025-07-24T05:25:03.1316641Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-07-24T05:25:03.1321122Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-07-24T05:25:03.1328006Z adding 'torch/include/ATen/core/List.h' 2025-07-24T05:25:03.1333845Z adding 'torch/include/ATen/core/List_inl.h' 2025-07-24T05:25:03.1338930Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-07-24T05:25:03.1343437Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-07-24T05:25:03.1348297Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-07-24T05:25:03.1353457Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-07-24T05:25:03.1356966Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-07-24T05:25:03.1360185Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-07-24T05:25:03.1363768Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-07-24T05:25:03.1366851Z adding 'torch/include/ATen/core/Range.h' 2025-07-24T05:25:03.1369904Z adding 'torch/include/ATen/core/Reduction.h' 2025-07-24T05:25:03.1372720Z adding 'torch/include/ATen/core/Scalar.h' 2025-07-24T05:25:03.1375504Z adding 'torch/include/ATen/core/ScalarType.h' 2025-07-24T05:25:03.1379105Z adding 'torch/include/ATen/core/Tensor.h' 2025-07-24T05:25:03.1384039Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-07-24T05:25:03.1400545Z adding 'torch/include/ATen/core/TensorBase.h' 2025-07-24T05:25:03.1460456Z adding 'torch/include/ATen/core/TensorBody.h' 2025-07-24T05:25:03.1471133Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-07-24T05:25:03.1476252Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-07-24T05:25:03.1479821Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-07-24T05:25:03.1483304Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-07-24T05:25:03.1487695Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-07-24T05:25:03.1491865Z adding 'torch/include/ATen/core/Variadic.h' 2025-07-24T05:25:03.1495934Z adding 'torch/include/ATen/core/Vitals.h' 2025-07-24T05:25:03.1500702Z adding 'torch/include/ATen/core/alias_info.h' 2025-07-24T05:25:03.1517769Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-07-24T05:25:03.1523845Z adding 'torch/include/ATen/core/blob.h' 2025-07-24T05:25:03.1527774Z adding 'torch/include/ATen/core/builtin_function.h' 2025-07-24T05:25:03.1534630Z adding 'torch/include/ATen/core/class_type.h' 2025-07-24T05:25:03.1538314Z adding 'torch/include/ATen/core/custom_class.h' 2025-07-24T05:25:03.1544079Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-07-24T05:25:03.1548142Z adding 'torch/include/ATen/core/enum_tag.h' 2025-07-24T05:25:03.1551835Z adding 'torch/include/ATen/core/enum_type.h' 2025-07-24T05:25:03.1555850Z adding 'torch/include/ATen/core/function.h' 2025-07-24T05:25:03.1566437Z adding 'torch/include/ATen/core/function_schema.h' 2025-07-24T05:25:03.1570796Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-07-24T05:25:03.1574170Z adding 'torch/include/ATen/core/functional.h' 2025-07-24T05:25:03.1577143Z adding 'torch/include/ATen/core/grad_mode.h' 2025-07-24T05:25:03.1582964Z adding 'torch/include/ATen/core/interned_strings.h' 2025-07-24T05:25:03.1586713Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-07-24T05:25:03.1606903Z adding 'torch/include/ATen/core/ivalue.h' 2025-07-24T05:25:03.1639156Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-07-24T05:25:03.1644550Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-07-24T05:25:03.1668462Z adding 'torch/include/ATen/core/jit_type.h' 2025-07-24T05:25:03.1679053Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-07-24T05:25:03.1683541Z adding 'torch/include/ATen/core/operator_name.h' 2025-07-24T05:25:03.1687828Z adding 'torch/include/ATen/core/qualified_name.h' 2025-07-24T05:25:03.1691282Z adding 'torch/include/ATen/core/rref_interface.h' 2025-07-24T05:25:03.1695836Z adding 'torch/include/ATen/core/stack.h' 2025-07-24T05:25:03.1702246Z adding 'torch/include/ATen/core/symbol.h' 2025-07-24T05:25:03.1706303Z adding 'torch/include/ATen/core/type_factory.h' 2025-07-24T05:25:03.1709699Z adding 'torch/include/ATen/core/type_ptr.h' 2025-07-24T05:25:03.1712661Z adding 'torch/include/ATen/core/typeid.h' 2025-07-24T05:25:03.1718940Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-07-24T05:25:03.1722916Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-07-24T05:25:03.1727781Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-07-24T05:25:03.1733510Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-07-24T05:25:03.1737056Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-07-24T05:25:03.1741512Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-07-24T05:25:03.1745080Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-07-24T05:25:03.1751408Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-07-24T05:25:03.1762152Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-07-24T05:25:03.1766921Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-07-24T05:25:03.1771743Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-07-24T05:25:03.1777757Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-07-24T05:25:03.1792006Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-07-24T05:25:03.1796052Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-07-24T05:25:03.1802744Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-07-24T05:25:03.1806408Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-07-24T05:25:03.1809600Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-07-24T05:25:03.1814139Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-07-24T05:25:03.1818663Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-07-24T05:25:03.1823461Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-07-24T05:25:03.1832439Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-07-24T05:25:03.1837167Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-07-24T05:25:03.1840350Z adding 'torch/include/ATen/cpu/Utils.h' 2025-07-24T05:25:03.1844782Z adding 'torch/include/ATen/cpu/vml.h' 2025-07-24T05:25:03.1848880Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-07-24T05:25:03.1854361Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-07-24T05:25:03.1861192Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-07-24T05:25:03.1865397Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-07-24T05:25:03.1868770Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-07-24T05:25:03.1882587Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-07-24T05:25:03.1887349Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-07-24T05:25:03.1891373Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-07-24T05:25:03.1896590Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-07-24T05:25:03.1902154Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-07-24T05:25:03.1906703Z adding 'torch/include/ATen/cpu/vec/vec_quant.h' 2025-07-24T05:25:03.1911301Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-07-24T05:25:03.1918025Z adding 'torch/include/ATen/cpu/vec/sve/vec_bfloat16.h' 2025-07-24T05:25:03.1923093Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-07-24T05:25:03.1929417Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-07-24T05:25:03.1938028Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-07-24T05:25:03.1945413Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-07-24T05:25:03.1952459Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-07-24T05:25:03.1957101Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-07-24T05:25:03.1964198Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-07-24T05:25:03.1968289Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-07-24T05:25:03.1975133Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-07-24T05:25:03.1982560Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-07-24T05:25:03.1988128Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-07-24T05:25:03.1993583Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-07-24T05:25:03.1997004Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-07-24T05:25:03.2002408Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-07-24T05:25:03.2011720Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h' 2025-07-24T05:25:03.2016996Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-07-24T05:25:03.2024515Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-07-24T05:25:03.2032962Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-07-24T05:25:03.2038465Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-07-24T05:25:03.2044278Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-07-24T05:25:03.2053636Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-07-24T05:25:03.2059443Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half.h' 2025-07-24T05:25:03.2076204Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-07-24T05:25:03.2083355Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-07-24T05:25:03.2096443Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-07-24T05:25:03.2102936Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-07-24T05:25:03.2108259Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-07-24T05:25:03.2116767Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-07-24T05:25:03.2126174Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-07-24T05:25:03.2132754Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-07-24T05:25:03.2139143Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-07-24T05:25:03.2145169Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-07-24T05:25:03.2150643Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-07-24T05:25:03.2155766Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-07-24T05:25:03.2161266Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-07-24T05:25:03.2167875Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-07-24T05:25:03.2174707Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-07-24T05:25:03.2182873Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-07-24T05:25:03.2209343Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-07-24T05:25:03.2217855Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-07-24T05:25:03.2235114Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-07-24T05:25:03.2245198Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-07-24T05:25:03.2256296Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-07-24T05:25:03.2262253Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-07-24T05:25:03.2268518Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-07-24T05:25:03.2278597Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-07-24T05:25:03.2287260Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float8.h' 2025-07-24T05:25:03.2300992Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-07-24T05:25:03.2308211Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-07-24T05:25:03.2320303Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-07-24T05:25:03.2326431Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-07-24T05:25:03.2329859Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-07-24T05:25:03.2333480Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-07-24T05:25:03.2340933Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-07-24T05:25:03.2350113Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-07-24T05:25:03.2356274Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-07-24T05:25:03.2360094Z adding 'torch/include/ATen/cuda/CUDAConfig.h' 2025-07-24T05:25:03.2363216Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-07-24T05:25:03.2367057Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-07-24T05:25:03.2370728Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-07-24T05:25:03.2374123Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-07-24T05:25:03.2379674Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-07-24T05:25:03.2384730Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-07-24T05:25:03.2389801Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-07-24T05:25:03.2393564Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-07-24T05:25:03.2397130Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-07-24T05:25:03.2402053Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-07-24T05:25:03.2407082Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-07-24T05:25:03.2410409Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-07-24T05:25:03.2413732Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-07-24T05:25:03.2417343Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-07-24T05:25:03.2421056Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-07-24T05:25:03.2424422Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-07-24T05:25:03.2429635Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-07-24T05:25:03.2433835Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-07-24T05:25:03.2437231Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-07-24T05:25:03.2440100Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-07-24T05:25:03.2443096Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-07-24T05:25:03.2446073Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-07-24T05:25:03.2449657Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-07-24T05:25:03.2452814Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-07-24T05:25:03.2455998Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-07-24T05:25:03.2459651Z adding 'torch/include/ATen/cuda/cub-RadixSortPairs.cuh' 2025-07-24T05:25:03.2468061Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-07-24T05:25:03.2472672Z adding 'torch/include/ATen/cuda/cub.h' 2025-07-24T05:25:03.2476259Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-07-24T05:25:03.2480397Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-07-24T05:25:03.2484964Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-07-24T05:25:03.2488627Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-07-24T05:25:03.2493972Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-07-24T05:25:03.2499555Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-07-24T05:25:03.2503211Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-07-24T05:25:03.2507601Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-07-24T05:25:03.2511358Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-07-24T05:25:03.2514581Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-07-24T05:25:03.2518732Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-07-24T05:25:03.2522290Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-07-24T05:25:03.2526213Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-07-24T05:25:03.2529820Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-07-24T05:25:03.2537314Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-07-24T05:25:03.2545106Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-07-24T05:25:03.2550406Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-07-24T05:25:03.2553984Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-07-24T05:25:03.2558671Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-07-24T05:25:03.2563374Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-07-24T05:25:03.2570087Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-07-24T05:25:03.2578413Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-07-24T05:25:03.2581899Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-07-24T05:25:03.2584675Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-07-24T05:25:03.2587872Z adding 'torch/include/ATen/cudnn/Types.h' 2025-07-24T05:25:03.2590957Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-07-24T05:25:03.2594134Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-07-24T05:25:03.2598795Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-07-24T05:25:03.2603415Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-07-24T05:25:03.2607239Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-07-24T05:25:03.2610855Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-07-24T05:25:03.2614224Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-07-24T05:25:03.2617525Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-07-24T05:25:03.2620932Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-07-24T05:25:03.2624604Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-07-24T05:25:03.2628660Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-07-24T05:25:03.2633175Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-07-24T05:25:03.2637058Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-07-24T05:25:03.2642024Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-07-24T05:25:03.2649749Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-07-24T05:25:03.2654539Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-07-24T05:25:03.2660082Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-07-24T05:25:03.2664999Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-07-24T05:25:03.2670125Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-07-24T05:25:03.2674115Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-07-24T05:25:03.2681090Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-07-24T05:25:03.2687569Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-07-24T05:25:03.2690848Z adding 'torch/include/ATen/functorch/Macros.h' 2025-07-24T05:25:03.2694839Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-07-24T05:25:03.2699222Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-07-24T05:25:03.2702851Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-07-24T05:25:03.2708105Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-07-24T05:25:03.2711328Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-07-24T05:25:03.2717603Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-07-24T05:25:03.2722550Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-07-24T05:25:03.2726366Z adding 'torch/include/ATen/metal/Context.h' 2025-07-24T05:25:03.2731592Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-07-24T05:25:03.2735533Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-07-24T05:25:03.2738351Z adding 'torch/include/ATen/miopen/Handle.h' 2025-07-24T05:25:03.2741410Z adding 'torch/include/ATen/miopen/Types.h' 2025-07-24T05:25:03.2744438Z adding 'torch/include/ATen/miopen/Utils.h' 2025-07-24T05:25:03.2747685Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-07-24T05:25:03.2751726Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-07-24T05:25:03.2755758Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-07-24T05:25:03.2764827Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-07-24T05:25:03.2769286Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-07-24T05:25:03.2772783Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-07-24T05:25:03.2776756Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-07-24T05:25:03.2780262Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-07-24T05:25:03.2785162Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-07-24T05:25:03.2788948Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-07-24T05:25:03.2796517Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-07-24T05:25:03.2800979Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-07-24T05:25:03.2807280Z adding 'torch/include/ATen/native/Activation.h' 2025-07-24T05:25:03.2810841Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-07-24T05:25:03.2814405Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-07-24T05:25:03.2819054Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-07-24T05:25:03.2823348Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-07-24T05:25:03.2828423Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-07-24T05:25:03.2833033Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-07-24T05:25:03.2836773Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-07-24T05:25:03.2839925Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-07-24T05:25:03.2843853Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-07-24T05:25:03.2847170Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-07-24T05:25:03.2851783Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-07-24T05:25:03.2858837Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-07-24T05:25:03.2862462Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-07-24T05:25:03.2865950Z adding 'torch/include/ATen/native/Copy.h' 2025-07-24T05:25:03.2868670Z adding 'torch/include/ATen/native/Cross.h' 2025-07-24T05:25:03.2873101Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-07-24T05:25:03.2879335Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-07-24T05:25:03.2882904Z adding 'torch/include/ATen/native/Distance.h' 2025-07-24T05:25:03.2889765Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-07-24T05:25:03.2899344Z adding 'torch/include/ATen/native/Distributions.h' 2025-07-24T05:25:03.2904072Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-07-24T05:25:03.2907467Z adding 'torch/include/ATen/native/Fill.h' 2025-07-24T05:25:03.2918640Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-07-24T05:25:03.2921231Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-07-24T05:25:03.2924670Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-07-24T05:25:03.2927822Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-07-24T05:25:03.2930648Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-07-24T05:25:03.2933655Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-07-24T05:25:03.2936834Z adding 'torch/include/ATen/native/Gelu.h' 2025-07-24T05:25:03.2941800Z adding 'torch/include/ATen/native/GridSampler.h' 2025-07-24T05:25:03.2946012Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-07-24T05:25:03.2949209Z adding 'torch/include/ATen/native/Histogram.h' 2025-07-24T05:25:03.2952473Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-07-24T05:25:03.2956914Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-07-24T05:25:03.2960460Z adding 'torch/include/ATen/native/Lerp.h' 2025-07-24T05:25:03.2963579Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-07-24T05:25:03.2974806Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-07-24T05:25:03.2978911Z adding 'torch/include/ATen/native/LossMulti.h' 2025-07-24T05:25:03.3027877Z adding 'torch/include/ATen/native/Math.h' 2025-07-24T05:25:03.3034820Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-07-24T05:25:03.3039810Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-07-24T05:25:03.3043753Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-07-24T05:25:03.3047014Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-07-24T05:25:03.3050483Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-07-24T05:25:03.3053641Z adding 'torch/include/ATen/native/Normalization.h' 2025-07-24T05:25:03.3056988Z adding 'torch/include/ATen/native/Padding.h' 2025-07-24T05:25:03.3060297Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-07-24T05:25:03.3063471Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-07-24T05:25:03.3069290Z adding 'torch/include/ATen/native/Pool.h' 2025-07-24T05:25:03.3072995Z adding 'torch/include/ATen/native/Pow.h' 2025-07-24T05:25:03.3076474Z adding 'torch/include/ATen/native/RNN.h' 2025-07-24T05:25:03.3079559Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-07-24T05:25:03.3083067Z adding 'torch/include/ATen/native/RangeUtils.h' 2025-07-24T05:25:03.3086138Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-07-24T05:25:03.3089381Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-07-24T05:25:03.3096228Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-07-24T05:25:03.3099639Z adding 'torch/include/ATen/native/ReductionType.h' 2025-07-24T05:25:03.3102988Z adding 'torch/include/ATen/native/Repeat.h' 2025-07-24T05:25:03.3108305Z adding 'torch/include/ATen/native/Resize.h' 2025-07-24T05:25:03.3112238Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-07-24T05:25:03.3116121Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-07-24T05:25:03.3119366Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-07-24T05:25:03.3125523Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-07-24T05:25:03.3130222Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-07-24T05:25:03.3133356Z adding 'torch/include/ATen/native/Sorting.h' 2025-07-24T05:25:03.3136873Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-07-24T05:25:03.3141753Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-07-24T05:25:03.3147035Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-07-24T05:25:03.3151531Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-07-24T05:25:03.3155217Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-07-24T05:25:03.3159377Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-07-24T05:25:03.3162848Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-07-24T05:25:03.3166081Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-07-24T05:25:03.3169645Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-07-24T05:25:03.3174445Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-07-24T05:25:03.3177345Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-07-24T05:25:03.3180974Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-07-24T05:25:03.3183981Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-07-24T05:25:03.3188783Z adding 'torch/include/ATen/native/TensorShape.h' 2025-07-24T05:25:03.3192481Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-07-24T05:25:03.3195820Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-07-24T05:25:03.3199246Z adding 'torch/include/ATen/native/TransposeType.h' 2025-07-24T05:25:03.3202771Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-07-24T05:25:03.3206122Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-07-24T05:25:03.3210134Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-07-24T05:25:03.3213679Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-07-24T05:25:03.3216957Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-07-24T05:25:03.3220768Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-07-24T05:25:03.3228740Z adding 'torch/include/ATen/native/UpSample.h' 2025-07-24T05:25:03.3232566Z adding 'torch/include/ATen/native/batch_norm.h' 2025-07-24T05:25:03.3235977Z adding 'torch/include/ATen/native/group_norm.h' 2025-07-24T05:25:03.3240260Z adding 'torch/include/ATen/native/im2col.h' 2025-07-24T05:25:03.3244744Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-07-24T05:25:03.3248868Z adding 'torch/include/ATen/native/layer_norm.h' 2025-07-24T05:25:03.3252279Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-07-24T05:25:03.3255697Z adding 'torch/include/ATen/native/vol2col.h' 2025-07-24T05:25:03.3261871Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h' 2025-07-24T05:25:03.3266073Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h' 2025-07-24T05:25:03.3270734Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h' 2025-07-24T05:25:03.3274876Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-07-24T05:25:03.3278049Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-07-24T05:25:03.3281331Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-07-24T05:25:03.3284272Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-07-24T05:25:03.3287598Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-07-24T05:25:03.3293753Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-07-24T05:25:03.3297689Z adding 'torch/include/ATen/native/cpu/Elu.h' 2025-07-24T05:25:03.3301517Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-07-24T05:25:03.3304952Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-07-24T05:25:03.3308961Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-07-24T05:25:03.3312503Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-07-24T05:25:03.3315972Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-07-24T05:25:03.3319785Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-07-24T05:25:03.3325683Z adding 'torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h' 2025-07-24T05:25:03.3332338Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-07-24T05:25:03.3336152Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-07-24T05:25:03.3339140Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-07-24T05:25:03.3345417Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-07-24T05:25:03.3350481Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-07-24T05:25:03.3354326Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-07-24T05:25:03.3357333Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-07-24T05:25:03.3361924Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-07-24T05:25:03.3365556Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-07-24T05:25:03.3368605Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-07-24T05:25:03.3371955Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-07-24T05:25:03.3388794Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-07-24T05:25:03.3393129Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-07-24T05:25:03.3399977Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-07-24T05:25:03.3404306Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-07-24T05:25:03.3407814Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-07-24T05:25:03.3412582Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-07-24T05:25:03.3417469Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-07-24T05:25:03.3421884Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-07-24T05:25:03.3427699Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-07-24T05:25:03.3431247Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-07-24T05:25:03.3437498Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-07-24T05:25:03.3448753Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-07-24T05:25:03.3452874Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-07-24T05:25:03.3456018Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-07-24T05:25:03.3464243Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-07-24T05:25:03.3468522Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-07-24T05:25:03.3471735Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-07-24T05:25:03.3481227Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-07-24T05:25:03.3485132Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-07-24T05:25:03.3489914Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-07-24T05:25:03.3495768Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-07-24T05:25:03.3500138Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-07-24T05:25:03.3504504Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-07-24T05:25:03.3508146Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-07-24T05:25:03.3511199Z adding 'torch/include/ATen/native/cuda/GroupMM.h' 2025-07-24T05:25:03.3515811Z adding 'torch/include/ATen/native/cuda/GroupMMCommon.cuh' 2025-07-24T05:25:03.3519080Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-07-24T05:25:03.3522595Z adding 'torch/include/ATen/native/cuda/IndexKernelUtils.h' 2025-07-24T05:25:03.3527460Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-07-24T05:25:03.3533400Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-07-24T05:25:03.3536849Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-07-24T05:25:03.3542400Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-07-24T05:25:03.3579290Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-07-24T05:25:03.3591827Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-07-24T05:25:03.3596108Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-07-24T05:25:03.3602506Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-07-24T05:25:03.3623870Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-07-24T05:25:03.3632549Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-07-24T05:25:03.3636724Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-07-24T05:25:03.3640367Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-07-24T05:25:03.3658746Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-07-24T05:25:03.3663006Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-07-24T05:25:03.3666575Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-07-24T05:25:03.3669734Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-07-24T05:25:03.3672732Z adding 'torch/include/ATen/native/cuda/ScaledGroupMM.h' 2025-07-24T05:25:03.3675970Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-07-24T05:25:03.3683381Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-07-24T05:25:03.3687059Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-07-24T05:25:03.3690177Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-07-24T05:25:03.3695817Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-07-24T05:25:03.3699287Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-07-24T05:25:03.3703493Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-07-24T05:25:03.3710236Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-07-24T05:25:03.3717952Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-07-24T05:25:03.3721475Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-07-24T05:25:03.3724493Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-07-24T05:25:03.3727472Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-07-24T05:25:03.3732946Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-07-24T05:25:03.3737158Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-07-24T05:25:03.3740507Z adding 'torch/include/ATen/native/cuda/cutlass_common.cuh' 2025-07-24T05:25:03.3743675Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-07-24T05:25:03.3746857Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-07-24T05:25:03.3751897Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-07-24T05:25:03.3755317Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-07-24T05:25:03.3758391Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-07-24T05:25:03.3763360Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-07-24T05:25:03.3768338Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-07-24T05:25:03.3776871Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-07-24T05:25:03.3780806Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-07-24T05:25:03.3786286Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-07-24T05:25:03.3790208Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-07-24T05:25:03.3793342Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-07-24T05:25:03.3798710Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-07-24T05:25:03.3802548Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-07-24T05:25:03.3807056Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h' 2025-07-24T05:25:03.3811550Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h' 2025-07-24T05:25:03.3815738Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-07-24T05:25:03.3819212Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-07-24T05:25:03.3823098Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-07-24T05:25:03.3827963Z adding 'torch/include/ATen/native/mkldnn/xpu/Conv.h' 2025-07-24T05:25:03.3831461Z adding 'torch/include/ATen/native/mkldnn/xpu/FusionUtils.h' 2025-07-24T05:25:03.3839461Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-07-24T05:25:03.3846927Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h' 2025-07-24T05:25:03.3851109Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h' 2025-07-24T05:25:03.3855121Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-07-24T05:25:03.3859221Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-07-24T05:25:03.3863492Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-07-24T05:25:03.3867446Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-07-24T05:25:03.3871284Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-07-24T05:25:03.3874474Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2025-07-24T05:25:03.3879008Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2025-07-24T05:25:03.3883780Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-07-24T05:25:03.3893483Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-07-24T05:25:03.3897480Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-07-24T05:25:03.3901687Z adding 'torch/include/ATen/native/mps/kernels/Pooling.h' 2025-07-24T05:25:03.3904872Z adding 'torch/include/ATen/native/mps/kernels/UpSample.h' 2025-07-24T05:25:03.3908981Z adding 'torch/include/ATen/native/mps/operations/BinaryKernel.h' 2025-07-24T05:25:03.3912319Z adding 'torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h' 2025-07-24T05:25:03.3915437Z adding 'torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h' 2025-07-24T05:25:03.3918717Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h' 2025-07-24T05:25:03.3921784Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h' 2025-07-24T05:25:03.3927857Z adding 'torch/include/ATen/native/mps/operations/MultiTensorApply.h' 2025-07-24T05:25:03.3932407Z adding 'torch/include/ATen/native/mtia/EmptyTensor.h' 2025-07-24T05:25:03.3936655Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-07-24T05:25:03.3940315Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-07-24T05:25:03.3944304Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-07-24T05:25:03.3947899Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-07-24T05:25:03.3955090Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-07-24T05:25:03.3960042Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-07-24T05:25:03.3963656Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-07-24T05:25:03.3967204Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-07-24T05:25:03.3970283Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-07-24T05:25:03.3973689Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-07-24T05:25:03.3976950Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-07-24T05:25:03.3981044Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-07-24T05:25:03.3983946Z adding 'torch/include/ATen/native/quantized/library.h' 2025-07-24T05:25:03.3989952Z adding 'torch/include/ATen/native/quantized/cpu/ACLUtils.h' 2025-07-24T05:25:03.3993567Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-07-24T05:25:03.3996833Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-07-24T05:25:03.4003554Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-07-24T05:25:03.4011778Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-07-24T05:25:03.4018231Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-07-24T05:25:03.4023514Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-07-24T05:25:03.4028085Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-07-24T05:25:03.4033685Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-07-24T05:25:03.4040268Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-07-24T05:25:03.4046212Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-07-24T05:25:03.4049868Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-07-24T05:25:03.4053228Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-07-24T05:25:03.4056535Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-07-24T05:25:03.4060062Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-07-24T05:25:03.4063141Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-07-24T05:25:03.4069294Z adding 'torch/include/ATen/native/quantized/cudnn/utils.h' 2025-07-24T05:25:03.4073981Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-07-24T05:25:03.4077999Z adding 'torch/include/ATen/native/transformers/sdp_utils.h' 2025-07-24T05:25:03.4085099Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-07-24T05:25:03.4089576Z adding 'torch/include/ATen/native/transformers/cuda/sdp_utils.h' 2025-07-24T05:25:03.4094219Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h' 2025-07-24T05:25:03.4098029Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h' 2025-07-24T05:25:03.4103919Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h' 2025-07-24T05:25:03.4109385Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h' 2025-07-24T05:25:03.4139969Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h' 2025-07-24T05:25:03.4161748Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h' 2025-07-24T05:25:03.4166225Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h' 2025-07-24T05:25:03.4175090Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h' 2025-07-24T05:25:03.4180561Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h' 2025-07-24T05:25:03.4185495Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h' 2025-07-24T05:25:03.4190186Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h' 2025-07-24T05:25:03.4194913Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h' 2025-07-24T05:25:03.4204323Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h' 2025-07-24T05:25:03.4211541Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h' 2025-07-24T05:25:03.4216133Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h' 2025-07-24T05:25:03.4221892Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h' 2025-07-24T05:25:03.4243309Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h' 2025-07-24T05:25:03.4250487Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h' 2025-07-24T05:25:03.4258057Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h' 2025-07-24T05:25:03.4262039Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h' 2025-07-24T05:25:03.4274198Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h' 2025-07-24T05:25:03.4286772Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h' 2025-07-24T05:25:03.4291497Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h' 2025-07-24T05:25:03.4297186Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h' 2025-07-24T05:25:03.4311909Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h' 2025-07-24T05:25:03.4319928Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h' 2025-07-24T05:25:03.4325278Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h' 2025-07-24T05:25:03.4329964Z adding 'torch/include/ATen/native/transformers/hip/aotriton_adapter.h' 2025-07-24T05:25:03.4336786Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h' 2025-07-24T05:25:03.4341733Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h' 2025-07-24T05:25:03.4345803Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-07-24T05:25:03.4349283Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-07-24T05:25:03.4352983Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-07-24T05:25:03.4553581Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-07-24T05:25:03.4557139Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-07-24T05:25:03.4560588Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.4563732Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-07-24T05:25:03.4566910Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-07-24T05:25:03.4570097Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-07-24T05:25:03.4573643Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-07-24T05:25:03.4577153Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.4580313Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-07-24T05:25:03.4583463Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-07-24T05:25:03.4586680Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-07-24T05:25:03.4589977Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-07-24T05:25:03.4593447Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-07-24T05:25:03.4596792Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-07-24T05:25:03.4600252Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.4603616Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-07-24T05:25:03.4606800Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-07-24T05:25:03.4609861Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-07-24T05:25:03.4613216Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-07-24T05:25:03.4616630Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.4619667Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-07-24T05:25:03.4622884Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-07-24T05:25:03.4626172Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-07-24T05:25:03.4629452Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-07-24T05:25:03.4632630Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-07-24T05:25:03.4635938Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.4638900Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-07-24T05:25:03.4642170Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-07-24T05:25:03.4645462Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-07-24T05:25:03.4649026Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.4652190Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-07-24T05:25:03.4655409Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-07-24T05:25:03.4658555Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-07-24T05:25:03.4667082Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-07-24T05:25:03.4667489Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-07-24T05:25:03.4669507Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.4672507Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-07-24T05:25:03.4675765Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-07-24T05:25:03.4678895Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-07-24T05:25:03.4682115Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-07-24T05:25:03.4685244Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-07-24T05:25:03.4688575Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-07-24T05:25:03.4691925Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-07-24T05:25:03.4695352Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.4698539Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-07-24T05:25:03.4701759Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-07-24T05:25:03.4704935Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-07-24T05:25:03.4708446Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-07-24T05:25:03.4711932Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-07-24T05:25:03.4715445Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.4718620Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-07-24T05:25:03.4721843Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-07-24T05:25:03.4724980Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-07-24T05:25:03.4728534Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-07-24T05:25:03.4731859Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-07-24T05:25:03.4735473Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.4738558Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-07-24T05:25:03.4741754Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-07-24T05:25:03.4745038Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-07-24T05:25:03.4748269Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-07-24T05:25:03.4751764Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-07-24T05:25:03.4755041Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-07-24T05:25:03.4758249Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-07-24T05:25:03.4761362Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-07-24T05:25:03.4764417Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-07-24T05:25:03.4767695Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-07-24T05:25:03.4770864Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-07-24T05:25:03.4774202Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.4777174Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-07-24T05:25:03.4780340Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-07-24T05:25:03.4783764Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-07-24T05:25:03.4787409Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.4790592Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-07-24T05:25:03.4793733Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-07-24T05:25:03.4797108Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-07-24T05:25:03.4800226Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-07-24T05:25:03.4803570Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.4806770Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-07-24T05:25:03.4809982Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-07-24T05:25:03.4813210Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-07-24T05:25:03.4816642Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.4819940Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-07-24T05:25:03.4823252Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-07-24T05:25:03.4827020Z adding 'torch/include/ATen/ops/_backward.h' 2025-07-24T05:25:03.4832129Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.4835689Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-07-24T05:25:03.4839516Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-07-24T05:25:03.4843563Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-07-24T05:25:03.4847044Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-07-24T05:25:03.4851030Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.4854577Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-07-24T05:25:03.4858378Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-07-24T05:25:03.4862259Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.4865842Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-07-24T05:25:03.4869589Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-07-24T05:25:03.4873784Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-07-24T05:25:03.4877550Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.4881236Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-07-24T05:25:03.4885024Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-07-24T05:25:03.4888661Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-07-24T05:25:03.4892303Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.4895683Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-07-24T05:25:03.4899228Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-07-24T05:25:03.4902761Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-07-24T05:25:03.4906575Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-07-24T05:25:03.4909924Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-07-24T05:25:03.4913315Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.4916235Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-07-24T05:25:03.4919558Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-07-24T05:25:03.4922813Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-07-24T05:25:03.4926139Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.4929111Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-07-24T05:25:03.4932252Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-07-24T05:25:03.4935407Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-07-24T05:25:03.4938941Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.4941907Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-07-24T05:25:03.4945172Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-07-24T05:25:03.4948290Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-07-24T05:25:03.4951597Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.4954535Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-07-24T05:25:03.4957713Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-07-24T05:25:03.4960829Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-07-24T05:25:03.4964110Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.4967100Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-07-24T05:25:03.4970486Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-07-24T05:25:03.4973814Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-07-24T05:25:03.4977074Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.4980019Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-07-24T05:25:03.4983220Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-07-24T05:25:03.4986510Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-07-24T05:25:03.4989831Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.4992803Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-07-24T05:25:03.4996008Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-07-24T05:25:03.4999107Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-07-24T05:25:03.5002405Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.5005353Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-07-24T05:25:03.5008512Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-07-24T05:25:03.5011722Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-07-24T05:25:03.5015112Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5018224Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-07-24T05:25:03.5021717Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-07-24T05:25:03.5024900Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-07-24T05:25:03.5028272Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-07-24T05:25:03.5031509Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-07-24T05:25:03.5034908Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5038352Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-07-24T05:25:03.5041279Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-07-24T05:25:03.5044389Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-07-24T05:25:03.5047733Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-07-24T05:25:03.5050995Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-07-24T05:25:03.5054501Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5057481Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-07-24T05:25:03.5060647Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-07-24T05:25:03.5063762Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-07-24T05:25:03.5067191Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-07-24T05:25:03.5070371Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-07-24T05:25:03.5073735Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.5076678Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-07-24T05:25:03.5079874Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-07-24T05:25:03.5083023Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-07-24T05:25:03.5086766Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5089930Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-07-24T05:25:03.5093024Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-07-24T05:25:03.5096291Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-07-24T05:25:03.5099469Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-07-24T05:25:03.5102790Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5105887Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-07-24T05:25:03.5109134Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-07-24T05:25:03.5112328Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-07-24T05:25:03.5115711Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5118778Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-07-24T05:25:03.5122079Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-07-24T05:25:03.5125735Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-07-24T05:25:03.5129089Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-07-24T05:25:03.5132680Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-07-24T05:25:03.5136178Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-07-24T05:25:03.5139627Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-07-24T05:25:03.5143695Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-07-24T05:25:03.5147047Z adding 'torch/include/ATen/ops/_conj.h' 2025-07-24T05:25:03.5150442Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5153606Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-07-24T05:25:03.5156985Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5160382Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.5163331Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-07-24T05:25:03.5166770Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-07-24T05:25:03.5170074Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-07-24T05:25:03.5173328Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-07-24T05:25:03.5176643Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-07-24T05:25:03.5180098Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5183261Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-07-24T05:25:03.5186660Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-07-24T05:25:03.5190547Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-07-24T05:25:03.5194131Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-07-24T05:25:03.5197508Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-07-24T05:25:03.5201011Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-07-24T05:25:03.5204507Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-07-24T05:25:03.5208166Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.5211168Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-07-24T05:25:03.5214520Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-07-24T05:25:03.5217672Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-07-24T05:25:03.5221073Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-07-24T05:25:03.5224262Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-07-24T05:25:03.5227923Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-07-24T05:25:03.5231223Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-07-24T05:25:03.5234887Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.5237966Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-07-24T05:25:03.5241385Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-07-24T05:25:03.5244546Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-07-24T05:25:03.5247976Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-07-24T05:25:03.5251176Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-07-24T05:25:03.5254713Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-07-24T05:25:03.5257959Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-07-24T05:25:03.5261332Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-07-24T05:25:03.5264620Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-07-24T05:25:03.5268019Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-07-24T05:25:03.5271288Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-07-24T05:25:03.5274551Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-07-24T05:25:03.5277799Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-07-24T05:25:03.5281038Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-07-24T05:25:03.5285365Z adding 'torch/include/ATen/ops/_convolution.h' 2025-07-24T05:25:03.5289323Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5292832Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.5296425Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-07-24T05:25:03.5300019Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.5303273Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-07-24T05:25:03.5306815Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-07-24T05:25:03.5310338Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-07-24T05:25:03.5313932Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.5317156Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-07-24T05:25:03.5320699Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-07-24T05:25:03.5324174Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-07-24T05:25:03.5327933Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-07-24T05:25:03.5331289Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-07-24T05:25:03.5334695Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-07-24T05:25:03.5338200Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5341289Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-07-24T05:25:03.5344603Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-07-24T05:25:03.5348252Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5351234Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-07-24T05:25:03.5354713Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-07-24T05:25:03.5357857Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-07-24T05:25:03.5361514Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-07-24T05:25:03.5364614Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-07-24T05:25:03.5367694Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-07-24T05:25:03.5371081Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-07-24T05:25:03.5374432Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-07-24T05:25:03.5377710Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-07-24T05:25:03.5381028Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-07-24T05:25:03.5384490Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-07-24T05:25:03.5387918Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-07-24T05:25:03.5391198Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-07-24T05:25:03.5394664Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-07-24T05:25:03.5398114Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-07-24T05:25:03.5401773Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-07-24T05:25:03.5405305Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5408632Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-07-24T05:25:03.5411888Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-07-24T05:25:03.5415054Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-07-24T05:25:03.5418816Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-07-24T05:25:03.5422383Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5425645Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-07-24T05:25:03.5428873Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-07-24T05:25:03.5432067Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-07-24T05:25:03.5435465Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-07-24T05:25:03.5439125Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-07-24T05:25:03.5443114Z adding 'torch/include/ATen/ops/_cudnn_attention_forward.h' 2025-07-24T05:25:03.5446301Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h' 2025-07-24T05:25:03.5449449Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_native.h' 2025-07-24T05:25:03.5452867Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_ops.h' 2025-07-24T05:25:03.5456334Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-07-24T05:25:03.5459810Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5462954Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-07-24T05:25:03.5466429Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-07-24T05:25:03.5469944Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-07-24T05:25:03.5473416Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-07-24T05:25:03.5476850Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5480002Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-07-24T05:25:03.5483142Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-07-24T05:25:03.5486606Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-07-24T05:25:03.5490651Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-07-24T05:25:03.5495380Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-07-24T05:25:03.5499481Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5502888Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-07-24T05:25:03.5506342Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-07-24T05:25:03.5510125Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-07-24T05:25:03.5513814Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5517094Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-07-24T05:25:03.5521120Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-07-24T05:25:03.5524905Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5528276Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-07-24T05:25:03.5531934Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-07-24T05:25:03.5535816Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-07-24T05:25:03.5539553Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-07-24T05:25:03.5543814Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-07-24T05:25:03.5547672Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-07-24T05:25:03.5551451Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.5554879Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-07-24T05:25:03.5558510Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-07-24T05:25:03.5562129Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-07-24T05:25:03.5565950Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.5569332Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-07-24T05:25:03.5572999Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-07-24T05:25:03.5576891Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-07-24T05:25:03.5580328Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.5583315Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-07-24T05:25:03.5586878Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-07-24T05:25:03.5590042Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-07-24T05:25:03.5593911Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.5596681Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-07-24T05:25:03.5600110Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-07-24T05:25:03.5603248Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-07-24T05:25:03.5606460Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-07-24T05:25:03.5609782Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-07-24T05:25:03.5613950Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-07-24T05:25:03.5617059Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-07-24T05:25:03.5620195Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-07-24T05:25:03.5623543Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-07-24T05:25:03.5626985Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-07-24T05:25:03.5630124Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-07-24T05:25:03.5633384Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-07-24T05:25:03.5636566Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-07-24T05:25:03.5639999Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.5642843Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-07-24T05:25:03.5645997Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-07-24T05:25:03.5648949Z adding 'torch/include/ATen/ops/_dimI.h' 2025-07-24T05:25:03.5652005Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-07-24T05:25:03.5655167Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-07-24T05:25:03.5658449Z adding 'torch/include/ATen/ops/_dimV.h' 2025-07-24T05:25:03.5661590Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-07-24T05:25:03.5664923Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-07-24T05:25:03.5668103Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-07-24T05:25:03.5671430Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.5674396Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-07-24T05:25:03.5677614Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-07-24T05:25:03.5680810Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-07-24T05:25:03.5684200Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5687315Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-07-24T05:25:03.5690472Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-07-24T05:25:03.5693534Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-07-24T05:25:03.5696818Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-07-24T05:25:03.5700083Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-07-24T05:25:03.5703337Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-07-24T05:25:03.5706555Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-07-24T05:25:03.5710079Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-07-24T05:25:03.5713290Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-07-24T05:25:03.5716661Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-07-24T05:25:03.5719798Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-07-24T05:25:03.5723063Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-07-24T05:25:03.5726733Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-07-24T05:25:03.5730356Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-07-24T05:25:03.5733920Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-07-24T05:25:03.5737210Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-07-24T05:25:03.5740913Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-07-24T05:25:03.5744431Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-07-24T05:25:03.5747849Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-07-24T05:25:03.5751282Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-07-24T05:25:03.5754914Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-07-24T05:25:03.5758520Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5761740Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-07-24T05:25:03.5764945Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-07-24T05:25:03.5768163Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-07-24T05:25:03.5771325Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-07-24T05:25:03.5774677Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-07-24T05:25:03.5778107Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-07-24T05:25:03.5781646Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-07-24T05:25:03.5785218Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-07-24T05:25:03.5788567Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-07-24T05:25:03.5791673Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-07-24T05:25:03.5795061Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-07-24T05:25:03.5798567Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5801747Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-07-24T05:25:03.5804957Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-07-24T05:25:03.5808732Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-07-24T05:25:03.5812693Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5816266Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-07-24T05:25:03.5819894Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-07-24T05:25:03.5822928Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-07-24T05:25:03.5826671Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-07-24T05:25:03.5830168Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-07-24T05:25:03.5833954Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5837364Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-07-24T05:25:03.5840596Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-07-24T05:25:03.5844167Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-07-24T05:25:03.5847554Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-07-24T05:25:03.5851023Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-07-24T05:25:03.5854815Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-07-24T05:25:03.5858400Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-07-24T05:25:03.5862332Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5865599Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-07-24T05:25:03.5868986Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-07-24T05:25:03.5872132Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-07-24T05:25:03.5875740Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-07-24T05:25:03.5879368Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-07-24T05:25:03.5882823Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.5886112Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-07-24T05:25:03.5889679Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-07-24T05:25:03.5893746Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-07-24T05:25:03.5897838Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5900828Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-07-24T05:25:03.5904208Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-07-24T05:25:03.5907883Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-07-24T05:25:03.5912147Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-07-24T05:25:03.5916132Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5919409Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-07-24T05:25:03.5922894Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-07-24T05:25:03.5926866Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-07-24T05:25:03.5929839Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-07-24T05:25:03.5933588Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5936505Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-07-24T05:25:03.5939944Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-07-24T05:25:03.5943388Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-07-24T05:25:03.5947034Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-07-24T05:25:03.5950775Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-07-24T05:25:03.5953894Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-07-24T05:25:03.5957491Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-07-24T05:25:03.5960617Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-07-24T05:25:03.5964208Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.5967344Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-07-24T05:25:03.5970751Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-07-24T05:25:03.5974192Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-07-24T05:25:03.5977567Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-07-24T05:25:03.5981264Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-07-24T05:25:03.5984406Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-07-24T05:25:03.5988044Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-07-24T05:25:03.5991296Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-07-24T05:25:03.5994594Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-07-24T05:25:03.5998285Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-07-24T05:25:03.6001601Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6005226Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-07-24T05:25:03.6008861Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-07-24T05:25:03.6012508Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-07-24T05:25:03.6016189Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-07-24T05:25:03.6019597Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-07-24T05:25:03.6023868Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6027410Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-07-24T05:25:03.6031133Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-07-24T05:25:03.6034773Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-07-24T05:25:03.6038564Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-07-24T05:25:03.6041908Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-07-24T05:25:03.6045504Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-07-24T05:25:03.6048965Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-07-24T05:25:03.6052110Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-07-24T05:25:03.6055735Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-07-24T05:25:03.6059504Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-07-24T05:25:03.6062895Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-07-24T05:25:03.6066277Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-07-24T05:25:03.6069398Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-07-24T05:25:03.6073041Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-07-24T05:25:03.6076313Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-07-24T05:25:03.6079584Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-07-24T05:25:03.6082825Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-07-24T05:25:03.6085881Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-07-24T05:25:03.6089443Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-07-24T05:25:03.6092686Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-07-24T05:25:03.6095946Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-07-24T05:25:03.6099133Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-07-24T05:25:03.6102185Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-07-24T05:25:03.6105560Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-07-24T05:25:03.6109111Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-07-24T05:25:03.6112616Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-07-24T05:25:03.6115784Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-07-24T05:25:03.6119449Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-07-24T05:25:03.6123118Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-07-24T05:25:03.6126646Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-07-24T05:25:03.6129825Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-07-24T05:25:03.6133276Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-07-24T05:25:03.6136547Z adding 'torch/include/ATen/ops/_foobar.h' 2025-07-24T05:25:03.6139900Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6142970Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-07-24T05:25:03.6146193Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-07-24T05:25:03.6149490Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-07-24T05:25:03.6152711Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-07-24T05:25:03.6156075Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6165675Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-07-24T05:25:03.6166452Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-07-24T05:25:03.6170702Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-07-24T05:25:03.6174081Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-07-24T05:25:03.6177724Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6180855Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-07-24T05:25:03.6183932Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-07-24T05:25:03.6187480Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-07-24T05:25:03.6191076Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-07-24T05:25:03.6194744Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6198066Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-07-24T05:25:03.6201422Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-07-24T05:25:03.6205481Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-07-24T05:25:03.6209295Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-07-24T05:25:03.6212837Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6216130Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-07-24T05:25:03.6219492Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-07-24T05:25:03.6223463Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-07-24T05:25:03.6227335Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-07-24T05:25:03.6230985Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6234234Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-07-24T05:25:03.6237677Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-07-24T05:25:03.6241605Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-07-24T05:25:03.6245006Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-07-24T05:25:03.6248384Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6251470Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-07-24T05:25:03.6254526Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-07-24T05:25:03.6257836Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-07-24T05:25:03.6261090Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-07-24T05:25:03.6264458Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6267709Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-07-24T05:25:03.6270789Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-07-24T05:25:03.6274127Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-07-24T05:25:03.6277848Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-07-24T05:25:03.6281016Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6284229Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-07-24T05:25:03.6287351Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-07-24T05:25:03.6290865Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-07-24T05:25:03.6294566Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-07-24T05:25:03.6298164Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6301690Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-07-24T05:25:03.6304830Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-07-24T05:25:03.6308826Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-07-24T05:25:03.6312646Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-07-24T05:25:03.6316219Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6319679Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-07-24T05:25:03.6322901Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-07-24T05:25:03.6326835Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-07-24T05:25:03.6330526Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-07-24T05:25:03.6333894Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6337357Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-07-24T05:25:03.6340328Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-07-24T05:25:03.6343880Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-07-24T05:25:03.6347260Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-07-24T05:25:03.6350809Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6353919Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-07-24T05:25:03.6357157Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-07-24T05:25:03.6360904Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-07-24T05:25:03.6364047Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-07-24T05:25:03.6367598Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6370706Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-07-24T05:25:03.6373928Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-07-24T05:25:03.6377219Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-07-24T05:25:03.6381023Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-07-24T05:25:03.6384842Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6388159Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-07-24T05:25:03.6391641Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-07-24T05:25:03.6395615Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-07-24T05:25:03.6399313Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-07-24T05:25:03.6403782Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6407003Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-07-24T05:25:03.6410301Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-07-24T05:25:03.6413624Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-07-24T05:25:03.6417077Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-07-24T05:25:03.6420753Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6423785Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-07-24T05:25:03.6427245Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-07-24T05:25:03.6430420Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-07-24T05:25:03.6433827Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-07-24T05:25:03.6437220Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6440550Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-07-24T05:25:03.6443696Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-07-24T05:25:03.6447175Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-07-24T05:25:03.6450592Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-07-24T05:25:03.6453908Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6457151Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-07-24T05:25:03.6460183Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-07-24T05:25:03.6463656Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-07-24T05:25:03.6466992Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-07-24T05:25:03.6470601Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6473946Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-07-24T05:25:03.6476993Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-07-24T05:25:03.6480528Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-07-24T05:25:03.6483724Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-07-24T05:25:03.6487244Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6490393Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-07-24T05:25:03.6493612Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-07-24T05:25:03.6496942Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-07-24T05:25:03.6500743Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-07-24T05:25:03.6504687Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6507841Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-07-24T05:25:03.6511277Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-07-24T05:25:03.6516745Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-07-24T05:25:03.6519696Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-07-24T05:25:03.6523443Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6526864Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-07-24T05:25:03.6530334Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-07-24T05:25:03.6533578Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-07-24T05:25:03.6537042Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-07-24T05:25:03.6540255Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-07-24T05:25:03.6543925Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6547298Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-07-24T05:25:03.6550659Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-07-24T05:25:03.6554003Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-07-24T05:25:03.6557232Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-07-24T05:25:03.6560972Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6563881Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-07-24T05:25:03.6567006Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-07-24T05:25:03.6570369Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-07-24T05:25:03.6573578Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-07-24T05:25:03.6577375Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6580335Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-07-24T05:25:03.6583405Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-07-24T05:25:03.6586831Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-07-24T05:25:03.6590240Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6593689Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-07-24T05:25:03.6598397Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-07-24T05:25:03.6601701Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-07-24T05:25:03.6604918Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-07-24T05:25:03.6608688Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6611606Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-07-24T05:25:03.6615069Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-07-24T05:25:03.6618020Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-07-24T05:25:03.6621465Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-07-24T05:25:03.6625046Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6628289Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-07-24T05:25:03.6631600Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-07-24T05:25:03.6635338Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-07-24T05:25:03.6638968Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-07-24T05:25:03.6642525Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6645720Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-07-24T05:25:03.6648970Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-07-24T05:25:03.6652969Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-07-24T05:25:03.6656662Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-07-24T05:25:03.6660585Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6663680Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-07-24T05:25:03.6667520Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-07-24T05:25:03.6671744Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-07-24T05:25:03.6675154Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-07-24T05:25:03.6679056Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6682153Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-07-24T05:25:03.6685244Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-07-24T05:25:03.6689253Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-07-24T05:25:03.6692669Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-07-24T05:25:03.6696078Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6699215Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-07-24T05:25:03.6702334Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-07-24T05:25:03.6705760Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-07-24T05:25:03.6709186Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-07-24T05:25:03.6712769Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6715957Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-07-24T05:25:03.6719209Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-07-24T05:25:03.6722955Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-07-24T05:25:03.6726379Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-07-24T05:25:03.6729766Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6732892Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-07-24T05:25:03.6736043Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-07-24T05:25:03.6739377Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-07-24T05:25:03.6742545Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-07-24T05:25:03.6746023Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6749105Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-07-24T05:25:03.6752169Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-07-24T05:25:03.6755470Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-07-24T05:25:03.6758670Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-07-24T05:25:03.6762037Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6765116Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-07-24T05:25:03.6768437Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-07-24T05:25:03.6771851Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-07-24T05:25:03.6775163Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-07-24T05:25:03.6778987Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6781832Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-07-24T05:25:03.6785262Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-07-24T05:25:03.6788617Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-07-24T05:25:03.6792082Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-07-24T05:25:03.6795457Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6798718Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-07-24T05:25:03.6801784Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-07-24T05:25:03.6805263Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-07-24T05:25:03.6808710Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-07-24T05:25:03.6812194Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6815409Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-07-24T05:25:03.6818447Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-07-24T05:25:03.6821937Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-07-24T05:25:03.6825440Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-07-24T05:25:03.6828960Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6832304Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-07-24T05:25:03.6844660Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-07-24T05:25:03.6845703Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-07-24T05:25:03.6846094Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-07-24T05:25:03.6846590Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6848699Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-07-24T05:25:03.6852016Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-07-24T05:25:03.6855316Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-07-24T05:25:03.6859019Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-07-24T05:25:03.6863062Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6866218Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-07-24T05:25:03.6869773Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-07-24T05:25:03.6875025Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-07-24T05:25:03.6879245Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-07-24T05:25:03.6883331Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6887020Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-07-24T05:25:03.6890022Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-07-24T05:25:03.6893605Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-07-24T05:25:03.6896833Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-07-24T05:25:03.6900302Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6903386Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-07-24T05:25:03.6907135Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-07-24T05:25:03.6910330Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-07-24T05:25:03.6913914Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-07-24T05:25:03.6917907Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6921280Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-07-24T05:25:03.6924708Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-07-24T05:25:03.6928416Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-07-24T05:25:03.6932043Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-07-24T05:25:03.6935480Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6938559Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-07-24T05:25:03.6942320Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-07-24T05:25:03.6946188Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-07-24T05:25:03.6949915Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-07-24T05:25:03.6953077Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-07-24T05:25:03.6956443Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-07-24T05:25:03.6959643Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-07-24T05:25:03.6963164Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-07-24T05:25:03.6966376Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6969789Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-07-24T05:25:03.6972814Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-07-24T05:25:03.6976041Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-07-24T05:25:03.6979707Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6982906Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-07-24T05:25:03.6986708Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.6989481Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-07-24T05:25:03.6992747Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-07-24T05:25:03.6995911Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-07-24T05:25:03.6999483Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-07-24T05:25:03.7003130Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-07-24T05:25:03.7006832Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7010010Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-07-24T05:25:03.7013296Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-07-24T05:25:03.7017240Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-07-24T05:25:03.7021268Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-07-24T05:25:03.7025150Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7028518Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-07-24T05:25:03.7031926Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-07-24T05:25:03.7035310Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-07-24T05:25:03.7039448Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-07-24T05:25:03.7043578Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-07-24T05:25:03.7047388Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7050630Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-07-24T05:25:03.7053873Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-07-24T05:25:03.7057197Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-07-24T05:25:03.7061537Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-07-24T05:25:03.7065588Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-07-24T05:25:03.7068739Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7071883Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-07-24T05:25:03.7074973Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-07-24T05:25:03.7078359Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-07-24T05:25:03.7082265Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-07-24T05:25:03.7086279Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7089584Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-07-24T05:25:03.7092887Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-07-24T05:25:03.7096128Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-07-24T05:25:03.7099891Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-07-24T05:25:03.7103122Z adding 'torch/include/ATen/ops/_fused_rms_norm.h' 2025-07-24T05:25:03.7106577Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward.h' 2025-07-24T05:25:03.7109879Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_cuda_dispatch.h' 2025-07-24T05:25:03.7113004Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_native.h' 2025-07-24T05:25:03.7116317Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_ops.h' 2025-07-24T05:25:03.7119673Z adding 'torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.7122787Z adding 'torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h' 2025-07-24T05:25:03.7125943Z adding 'torch/include/ATen/ops/_fused_rms_norm_native.h' 2025-07-24T05:25:03.7129250Z adding 'torch/include/ATen/ops/_fused_rms_norm_ops.h' 2025-07-24T05:25:03.7132418Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-07-24T05:25:03.7135701Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-07-24T05:25:03.7138889Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-07-24T05:25:03.7142315Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-07-24T05:25:03.7145357Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-07-24T05:25:03.7148691Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-07-24T05:25:03.7152380Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-07-24T05:25:03.7156129Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7159369Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-07-24T05:25:03.7162597Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-07-24T05:25:03.7165965Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-07-24T05:25:03.7170129Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-07-24T05:25:03.7173521Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-07-24T05:25:03.7176843Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7179883Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-07-24T05:25:03.7183292Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7186931Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.7190974Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-07-24T05:25:03.7194764Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-07-24T05:25:03.7198297Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-07-24T05:25:03.7201929Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-07-24T05:25:03.7205527Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-07-24T05:25:03.7209405Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.7212698Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-07-24T05:25:03.7216296Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-07-24T05:25:03.7220090Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-07-24T05:25:03.7223905Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-07-24T05:25:03.7228022Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.7231292Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-07-24T05:25:03.7234960Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-07-24T05:25:03.7238802Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7242230Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-07-24T05:25:03.7245705Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-07-24T05:25:03.7248974Z adding 'torch/include/ATen/ops/_grouped_mm.h' 2025-07-24T05:25:03.7252414Z adding 'torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h' 2025-07-24T05:25:03.7255735Z adding 'torch/include/ATen/ops/_grouped_mm_native.h' 2025-07-24T05:25:03.7259116Z adding 'torch/include/ATen/ops/_grouped_mm_ops.h' 2025-07-24T05:25:03.7262620Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-07-24T05:25:03.7266254Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.7269614Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-07-24T05:25:03.7272842Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-07-24T05:25:03.7275997Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-07-24T05:25:03.7279663Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7282737Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-07-24T05:25:03.7286184Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-07-24T05:25:03.7290040Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-07-24T05:25:03.7293692Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7297012Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-07-24T05:25:03.7300445Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-07-24T05:25:03.7303965Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-07-24T05:25:03.7307791Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-07-24T05:25:03.7311359Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7314688Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-07-24T05:25:03.7317879Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-07-24T05:25:03.7321231Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-07-24T05:25:03.7324702Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-07-24T05:25:03.7328237Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7331527Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-07-24T05:25:03.7334717Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-07-24T05:25:03.7338436Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-07-24T05:25:03.7341396Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-07-24T05:25:03.7344926Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7348088Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-07-24T05:25:03.7351261Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-07-24T05:25:03.7354460Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-07-24T05:25:03.7357688Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-07-24T05:25:03.7361178Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-07-24T05:25:03.7364285Z adding 'torch/include/ATen/ops/_indices.h' 2025-07-24T05:25:03.7367446Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-07-24T05:25:03.7370749Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7374001Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.7376884Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-07-24T05:25:03.7380138Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-07-24T05:25:03.7383666Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-07-24T05:25:03.7387056Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-07-24T05:25:03.7390290Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-07-24T05:25:03.7393540Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-07-24T05:25:03.7396701Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-07-24T05:25:03.7399800Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-07-24T05:25:03.7403078Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-07-24T05:25:03.7406203Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-07-24T05:25:03.7409492Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7412510Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-07-24T05:25:03.7415637Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-07-24T05:25:03.7418723Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-07-24T05:25:03.7422122Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7425068Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-07-24T05:25:03.7428236Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-07-24T05:25:03.7431349Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-07-24T05:25:03.7434843Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.7437746Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-07-24T05:25:03.7440976Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-07-24T05:25:03.7444370Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-07-24T05:25:03.7447709Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-07-24T05:25:03.7450924Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-07-24T05:25:03.7454096Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-07-24T05:25:03.7457390Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-07-24T05:25:03.7460408Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-07-24T05:25:03.7463688Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7466808Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-07-24T05:25:03.7469972Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-07-24T05:25:03.7473144Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-07-24T05:25:03.7476798Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7479763Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-07-24T05:25:03.7483333Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-07-24T05:25:03.7486432Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-07-24T05:25:03.7490067Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.7493490Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-07-24T05:25:03.7502066Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-07-24T05:25:03.7505283Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-07-24T05:25:03.7508809Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-07-24T05:25:03.7511821Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-07-24T05:25:03.7515825Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-07-24T05:25:03.7519563Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-07-24T05:25:03.7523658Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.7526953Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-07-24T05:25:03.7530560Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-07-24T05:25:03.7534005Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-07-24T05:25:03.7537810Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-07-24T05:25:03.7541351Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-07-24T05:25:03.7545126Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-07-24T05:25:03.7548725Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-07-24T05:25:03.7552431Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-07-24T05:25:03.7555960Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-07-24T05:25:03.7559442Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-07-24T05:25:03.7563085Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-07-24T05:25:03.7566515Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-07-24T05:25:03.7569988Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.7573337Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-07-24T05:25:03.7576566Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-07-24T05:25:03.7580007Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-07-24T05:25:03.7583139Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-07-24T05:25:03.7586676Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-07-24T05:25:03.7589985Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-07-24T05:25:03.7593314Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-07-24T05:25:03.7597003Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.7600099Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-07-24T05:25:03.7603353Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-07-24T05:25:03.7606506Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-07-24T05:25:03.7609786Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-07-24T05:25:03.7613152Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-07-24T05:25:03.7616543Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-07-24T05:25:03.7620196Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-07-24T05:25:03.7623720Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.7626961Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-07-24T05:25:03.7630251Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-07-24T05:25:03.7633419Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-07-24T05:25:03.7636700Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-07-24T05:25:03.7639789Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-07-24T05:25:03.7643476Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-07-24T05:25:03.7646555Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-07-24T05:25:03.7649812Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-07-24T05:25:03.7652931Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-07-24T05:25:03.7655994Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-07-24T05:25:03.7659215Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-07-24T05:25:03.7662411Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-07-24T05:25:03.7665841Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-07-24T05:25:03.7669919Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.7672671Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-07-24T05:25:03.7675883Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-07-24T05:25:03.7679003Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-07-24T05:25:03.7682286Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-07-24T05:25:03.7685426Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-07-24T05:25:03.7688755Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-07-24T05:25:03.7692183Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.7695212Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-07-24T05:25:03.7698404Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-07-24T05:25:03.7701740Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-07-24T05:25:03.7704955Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-07-24T05:25:03.7708435Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-07-24T05:25:03.7712089Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-07-24T05:25:03.7715223Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-07-24T05:25:03.7718792Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-07-24T05:25:03.7721947Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-07-24T05:25:03.7725579Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-07-24T05:25:03.7728482Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-07-24T05:25:03.7731994Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-07-24T05:25:03.7735559Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7738773Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-07-24T05:25:03.7742779Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-07-24T05:25:03.7745922Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-07-24T05:25:03.7749487Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.7752386Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-07-24T05:25:03.7755763Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-07-24T05:25:03.7759075Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-07-24T05:25:03.7762601Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-07-24T05:25:03.7765767Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-07-24T05:25:03.7769232Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-07-24T05:25:03.7772638Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-07-24T05:25:03.7776024Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7779285Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-07-24T05:25:03.7782683Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7786289Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.7793845Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-07-24T05:25:03.7797396Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-07-24T05:25:03.7800486Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-07-24T05:25:03.7803875Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-07-24T05:25:03.7807247Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-07-24T05:25:03.7810814Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7814031Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-07-24T05:25:03.7817328Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-07-24T05:25:03.7820638Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-07-24T05:25:03.7824019Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-07-24T05:25:03.7827571Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-07-24T05:25:03.7831000Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7834507Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-07-24T05:25:03.7837725Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-07-24T05:25:03.7841303Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-07-24T05:25:03.7844730Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-07-24T05:25:03.7847768Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-07-24T05:25:03.7851554Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7854426Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-07-24T05:25:03.7857775Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-07-24T05:25:03.7861019Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-07-24T05:25:03.7864475Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-07-24T05:25:03.7867957Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-07-24T05:25:03.7871729Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7875079Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-07-24T05:25:03.7878189Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-07-24T05:25:03.7881565Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-07-24T05:25:03.7889585Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-07-24T05:25:03.7893434Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7896291Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-07-24T05:25:03.7899679Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-07-24T05:25:03.7902797Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-07-24T05:25:03.7906461Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-07-24T05:25:03.7909742Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-07-24T05:25:03.7913261Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-07-24T05:25:03.7916637Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-07-24T05:25:03.7920288Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-07-24T05:25:03.7923826Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-07-24T05:25:03.7927230Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7930403Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-07-24T05:25:03.7933750Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-07-24T05:25:03.7937257Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-07-24T05:25:03.7941048Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7943904Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-07-24T05:25:03.7947292Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-07-24T05:25:03.7950682Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-07-24T05:25:03.7954572Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-07-24T05:25:03.7958651Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7961459Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-07-24T05:25:03.7965012Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-07-24T05:25:03.7968782Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-07-24T05:25:03.7972655Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.7976060Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-07-24T05:25:03.8021224Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-07-24T05:25:03.8025404Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-07-24T05:25:03.8028928Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8032611Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-07-24T05:25:03.8035950Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-07-24T05:25:03.8039856Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-07-24T05:25:03.8043119Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-07-24T05:25:03.8053054Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8056448Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-07-24T05:25:03.8059982Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-07-24T05:25:03.8063832Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-07-24T05:25:03.8067668Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-07-24T05:25:03.8071767Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8074835Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-07-24T05:25:03.8078029Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-07-24T05:25:03.8081237Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-07-24T05:25:03.8084852Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-07-24T05:25:03.8088099Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-07-24T05:25:03.8091742Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8094820Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-07-24T05:25:03.8098200Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8101446Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.8104838Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-07-24T05:25:03.8108061Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-07-24T05:25:03.8111131Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-07-24T05:25:03.8114444Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-07-24T05:25:03.8117777Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-07-24T05:25:03.8121069Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-07-24T05:25:03.8124241Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-07-24T05:25:03.8127311Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-07-24T05:25:03.8130528Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-07-24T05:25:03.8133692Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-07-24T05:25:03.8136996Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-07-24T05:25:03.8140459Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8143508Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-07-24T05:25:03.8147125Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-07-24T05:25:03.8150351Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8153482Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-07-24T05:25:03.8156672Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-07-24T05:25:03.8159745Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-07-24T05:25:03.8163261Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-07-24T05:25:03.8166723Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-07-24T05:25:03.8169888Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-07-24T05:25:03.8173280Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-07-24T05:25:03.8176445Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-07-24T05:25:03.8179509Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-07-24T05:25:03.8182704Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-07-24T05:25:03.8185940Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-07-24T05:25:03.8188965Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-07-24T05:25:03.8192172Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-07-24T05:25:03.8195313Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-07-24T05:25:03.8198374Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-07-24T05:25:03.8201532Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-07-24T05:25:03.8204668Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-07-24T05:25:03.8207721Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-07-24T05:25:03.8210840Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-07-24T05:25:03.8213891Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-07-24T05:25:03.8216922Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-07-24T05:25:03.8220168Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-07-24T05:25:03.8223598Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-07-24T05:25:03.8226477Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-07-24T05:25:03.8229634Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-07-24T05:25:03.8232688Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-07-24T05:25:03.8235889Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-07-24T05:25:03.8239320Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8242568Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.8245379Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-07-24T05:25:03.8248661Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-07-24T05:25:03.8251713Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-07-24T05:25:03.8254917Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-07-24T05:25:03.8258157Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-07-24T05:25:03.8261299Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-07-24T05:25:03.8264523Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-07-24T05:25:03.8267843Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-07-24T05:25:03.8270942Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-07-24T05:25:03.8274192Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-07-24T05:25:03.8277451Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-07-24T05:25:03.8280861Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8283937Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-07-24T05:25:03.8287124Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-07-24T05:25:03.8290241Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-07-24T05:25:03.8293466Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-07-24T05:25:03.8296646Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-07-24T05:25:03.8299687Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-07-24T05:25:03.8302919Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-07-24T05:25:03.8306148Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-07-24T05:25:03.8309443Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-07-24T05:25:03.8312815Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-07-24T05:25:03.8316330Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8319367Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-07-24T05:25:03.8322759Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-07-24T05:25:03.8325962Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-07-24T05:25:03.8329744Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8332542Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-07-24T05:25:03.8336015Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-07-24T05:25:03.8339295Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-07-24T05:25:03.8342621Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-07-24T05:25:03.8345921Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-07-24T05:25:03.8349216Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-07-24T05:25:03.8353087Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8355776Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-07-24T05:25:03.8359395Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-07-24T05:25:03.8362325Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-07-24T05:25:03.8365947Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8368922Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-07-24T05:25:03.8372375Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-07-24T05:25:03.8375531Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-07-24T05:25:03.8379041Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-07-24T05:25:03.8384198Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8387816Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.8390998Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-07-24T05:25:03.8394670Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-07-24T05:25:03.8397843Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-07-24T05:25:03.8401330Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-07-24T05:25:03.8404260Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-07-24T05:25:03.8407707Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-07-24T05:25:03.8410922Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-07-24T05:25:03.8414547Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-07-24T05:25:03.8418427Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8421504Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.8424937Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-07-24T05:25:03.8428265Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-07-24T05:25:03.8431472Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-07-24T05:25:03.8434764Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-07-24T05:25:03.8438232Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-07-24T05:25:03.8441915Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8444841Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-07-24T05:25:03.8448532Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-07-24T05:25:03.8451532Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-07-24T05:25:03.8455294Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.8458273Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-07-24T05:25:03.8461636Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-07-24T05:25:03.8465400Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-07-24T05:25:03.8469248Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8472702Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-07-24T05:25:03.8476042Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-07-24T05:25:03.8479129Z adding 'torch/include/ATen/ops/_nnz.h' 2025-07-24T05:25:03.8482228Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-07-24T05:25:03.8485640Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-07-24T05:25:03.8488961Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-07-24T05:25:03.8492520Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-07-24T05:25:03.8496393Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.8499102Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-07-24T05:25:03.8502594Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-07-24T05:25:03.8506029Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8509253Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-07-24T05:25:03.8512626Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-07-24T05:25:03.8516081Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-07-24T05:25:03.8519891Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.8523228Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-07-24T05:25:03.8526275Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-07-24T05:25:03.8529874Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-07-24T05:25:03.8533934Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.8537111Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-07-24T05:25:03.8540819Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-07-24T05:25:03.8544555Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-07-24T05:25:03.8548664Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.8551917Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-07-24T05:25:03.8555098Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-07-24T05:25:03.8558663Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-07-24T05:25:03.8562023Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-07-24T05:25:03.8565515Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-07-24T05:25:03.8568651Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-07-24T05:25:03.8572157Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-07-24T05:25:03.8575343Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-07-24T05:25:03.8578729Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8582295Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-07-24T05:25:03.8585392Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-07-24T05:25:03.8588539Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-07-24T05:25:03.8591875Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-07-24T05:25:03.8595082Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-07-24T05:25:03.8598947Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8601771Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-07-24T05:25:03.8604902Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-07-24T05:25:03.8607938Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-07-24T05:25:03.8611224Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-07-24T05:25:03.8614487Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-07-24T05:25:03.8617795Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8620892Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-07-24T05:25:03.8624762Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-07-24T05:25:03.8627479Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-07-24T05:25:03.8630851Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-07-24T05:25:03.8634112Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-07-24T05:25:03.8637305Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-07-24T05:25:03.8640448Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-07-24T05:25:03.8643722Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-07-24T05:25:03.8646885Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-07-24T05:25:03.8650037Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-07-24T05:25:03.8653104Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-07-24T05:25:03.8656315Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-07-24T05:25:03.8659418Z adding 'torch/include/ATen/ops/_print.h' 2025-07-24T05:25:03.8662709Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8665891Z adding 'torch/include/ATen/ops/_print_native.h' 2025-07-24T05:25:03.8669139Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-07-24T05:25:03.8672327Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-07-24T05:25:03.8675822Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.8678780Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-07-24T05:25:03.8681969Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-07-24T05:25:03.8685184Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-07-24T05:25:03.8688601Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.8691577Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-07-24T05:25:03.8694801Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-07-24T05:25:03.8698086Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-07-24T05:25:03.8701582Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-07-24T05:25:03.8705173Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8708549Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.8711437Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-07-24T05:25:03.8714738Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-07-24T05:25:03.8718010Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-07-24T05:25:03.8721213Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-07-24T05:25:03.8724393Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-07-24T05:25:03.8727445Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-07-24T05:25:03.8730643Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-07-24T05:25:03.8733858Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-07-24T05:25:03.8737196Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8740099Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-07-24T05:25:03.8743300Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-07-24T05:25:03.8746677Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-07-24T05:25:03.8750037Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.8753011Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-07-24T05:25:03.8756276Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-07-24T05:25:03.8759769Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-07-24T05:25:03.8763297Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8766485Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-07-24T05:25:03.8769584Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-07-24T05:25:03.8772921Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-07-24T05:25:03.8776153Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-07-24T05:25:03.8779517Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.8782491Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-07-24T05:25:03.8786684Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-07-24T05:25:03.8789928Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-07-24T05:25:03.8793284Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8796236Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-07-24T05:25:03.8799830Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-07-24T05:25:03.8803161Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-07-24T05:25:03.8815333Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8815529Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-07-24T05:25:03.8815724Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-07-24T05:25:03.8819348Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-07-24T05:25:03.8822289Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-07-24T05:25:03.8825615Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-07-24T05:25:03.8829042Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.8832463Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-07-24T05:25:03.8835462Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-07-24T05:25:03.8838722Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-07-24T05:25:03.8842201Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.8845287Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-07-24T05:25:03.8848358Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-07-24T05:25:03.8851721Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-07-24T05:25:03.8854905Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-07-24T05:25:03.8858218Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-07-24T05:25:03.8861527Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-07-24T05:25:03.8865176Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-07-24T05:25:03.8868696Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-07-24T05:25:03.8871934Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-07-24T05:25:03.8875422Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-07-24T05:25:03.8878769Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-07-24T05:25:03.8881982Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-07-24T05:25:03.8885362Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-07-24T05:25:03.8888693Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-07-24T05:25:03.8892068Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-07-24T05:25:03.8895473Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-07-24T05:25:03.8898669Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-07-24T05:25:03.8902678Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-07-24T05:25:03.8905590Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-07-24T05:25:03.8908698Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-07-24T05:25:03.8912056Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-07-24T05:25:03.8915354Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-07-24T05:25:03.8918920Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-07-24T05:25:03.8922416Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-07-24T05:25:03.8925622Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-07-24T05:25:03.8929038Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-07-24T05:25:03.8932351Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-07-24T05:25:03.8935893Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-07-24T05:25:03.8939614Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-07-24T05:25:03.8942868Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-07-24T05:25:03.8946502Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-07-24T05:25:03.8949640Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-07-24T05:25:03.8953318Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-07-24T05:25:03.8956470Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-07-24T05:25:03.8960037Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-07-24T05:25:03.8963548Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-07-24T05:25:03.8966790Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-07-24T05:25:03.8970412Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-07-24T05:25:03.8974094Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-07-24T05:25:03.8977942Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8981484Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-07-24T05:25:03.8984981Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-07-24T05:25:03.8988562Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.8991610Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-07-24T05:25:03.8995166Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-07-24T05:25:03.8998368Z adding 'torch/include/ATen/ops/_scaled_grouped_mm.h' 2025-07-24T05:25:03.9001923Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h' 2025-07-24T05:25:03.9005306Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_native.h' 2025-07-24T05:25:03.9008626Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_ops.h' 2025-07-24T05:25:03.9012158Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-07-24T05:25:03.9015551Z adding 'torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h' 2025-07-24T05:25:03.9019079Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-07-24T05:25:03.9022325Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-07-24T05:25:03.9026538Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-07-24T05:25:03.9031544Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-07-24T05:25:03.9034779Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9038074Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-07-24T05:25:03.9041662Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-07-24T05:25:03.9045197Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-07-24T05:25:03.9049166Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-07-24T05:25:03.9052391Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-07-24T05:25:03.9055885Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9059446Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-07-24T05:25:03.9062952Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-07-24T05:25:03.9067767Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-07-24T05:25:03.9071532Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9075076Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-07-24T05:25:03.9078465Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-07-24T05:25:03.9082018Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-07-24T05:25:03.9085875Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-07-24T05:25:03.9089633Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-07-24T05:25:03.9093709Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-07-24T05:25:03.9096816Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-07-24T05:25:03.9099984Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-07-24T05:25:03.9103540Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-07-24T05:25:03.9106971Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-07-24T05:25:03.9110324Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9113334Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-07-24T05:25:03.9116602Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-07-24T05:25:03.9119872Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-07-24T05:25:03.9123782Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9126792Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-07-24T05:25:03.9130053Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-07-24T05:25:03.9133214Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-07-24T05:25:03.9136583Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9139527Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-07-24T05:25:03.9142693Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-07-24T05:25:03.9145956Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-07-24T05:25:03.9149328Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9152581Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-07-24T05:25:03.9155687Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-07-24T05:25:03.9158835Z adding 'torch/include/ATen/ops/_softmax.h' 2025-07-24T05:25:03.9162129Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-07-24T05:25:03.9165642Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.9168667Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-07-24T05:25:03.9172250Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-07-24T05:25:03.9175996Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-07-24T05:25:03.9178935Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-07-24T05:25:03.9181995Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-07-24T05:25:03.9185509Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-07-24T05:25:03.9188926Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.9191989Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-07-24T05:25:03.9195172Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-07-24T05:25:03.9198294Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-07-24T05:25:03.9201521Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-07-24T05:25:03.9204593Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-07-24T05:25:03.9207878Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-07-24T05:25:03.9211131Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-07-24T05:25:03.9214494Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9217484Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-07-24T05:25:03.9220853Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-07-24T05:25:03.9224077Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-07-24T05:25:03.9227488Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-07-24T05:25:03.9230879Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9234156Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.9237083Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-07-24T05:25:03.9240533Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-07-24T05:25:03.9243643Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-07-24T05:25:03.9246854Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-07-24T05:25:03.9250237Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-07-24T05:25:03.9253639Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9256661Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-07-24T05:25:03.9259960Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-07-24T05:25:03.9263239Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-07-24T05:25:03.9266819Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9269851Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-07-24T05:25:03.9273165Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-07-24T05:25:03.9276807Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-07-24T05:25:03.9280454Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9283573Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-07-24T05:25:03.9286896Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-07-24T05:25:03.9290239Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-07-24T05:25:03.9293776Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9296816Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-07-24T05:25:03.9300187Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-07-24T05:25:03.9303776Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-07-24T05:25:03.9307551Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9310593Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-07-24T05:25:03.9314039Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-07-24T05:25:03.9317367Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-07-24T05:25:03.9321380Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-07-24T05:25:03.9325155Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9328428Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-07-24T05:25:03.9331599Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-07-24T05:25:03.9335492Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-07-24T05:25:03.9338812Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9342046Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-07-24T05:25:03.9345299Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-07-24T05:25:03.9348908Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-07-24T05:25:03.9352480Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-07-24T05:25:03.9355910Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9359151Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-07-24T05:25:03.9362518Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-07-24T05:25:03.9365975Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-07-24T05:25:03.9369502Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9372634Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-07-24T05:25:03.9376234Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-07-24T05:25:03.9379441Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-07-24T05:25:03.9383135Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9386151Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-07-24T05:25:03.9389685Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-07-24T05:25:03.9393019Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-07-24T05:25:03.9396644Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9399952Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-07-24T05:25:03.9403198Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-07-24T05:25:03.9406789Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-07-24T05:25:03.9410069Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-07-24T05:25:03.9413698Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9416722Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-07-24T05:25:03.9420245Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-07-24T05:25:03.9423987Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9427262Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9430621Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-07-24T05:25:03.9433984Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-07-24T05:25:03.9437463Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-07-24T05:25:03.9440929Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9444109Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-07-24T05:25:03.9447669Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-07-24T05:25:03.9450896Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-07-24T05:25:03.9454484Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9457318Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-07-24T05:25:03.9460731Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-07-24T05:25:03.9463992Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-07-24T05:25:03.9467581Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-07-24T05:25:03.9471347Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-07-24T05:25:03.9474548Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-07-24T05:25:03.9477986Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-07-24T05:25:03.9481113Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-07-24T05:25:03.9484559Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-07-24T05:25:03.9487891Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-07-24T05:25:03.9491221Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-07-24T05:25:03.9494545Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-07-24T05:25:03.9497924Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-07-24T05:25:03.9501552Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-07-24T05:25:03.9504591Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-07-24T05:25:03.9508142Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-07-24T05:25:03.9511258Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-07-24T05:25:03.9514697Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-07-24T05:25:03.9517816Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-07-24T05:25:03.9521246Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-07-24T05:25:03.9524677Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-07-24T05:25:03.9528079Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-07-24T05:25:03.9531435Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-07-24T05:25:03.9535252Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-07-24T05:25:03.9538862Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-07-24T05:25:03.9542624Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-07-24T05:25:03.9546296Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-07-24T05:25:03.9549973Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-07-24T05:25:03.9553644Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-07-24T05:25:03.9557438Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-07-24T05:25:03.9560503Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-07-24T05:25:03.9564700Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-07-24T05:25:03.9568907Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-07-24T05:25:03.9572561Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-07-24T05:25:03.9576027Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9579298Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-07-24T05:25:03.9582628Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-07-24T05:25:03.9586083Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9589948Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9592772Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-07-24T05:25:03.9596164Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-07-24T05:25:03.9599364Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-07-24T05:25:03.9602700Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9606072Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-07-24T05:25:03.9609180Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-07-24T05:25:03.9612488Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-07-24T05:25:03.9615835Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-07-24T05:25:03.9619199Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9622161Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-07-24T05:25:03.9625610Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-07-24T05:25:03.9628963Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9632132Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9635119Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-07-24T05:25:03.9638817Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-07-24T05:25:03.9642133Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-07-24T05:25:03.9645508Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9648600Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-07-24T05:25:03.9651655Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-07-24T05:25:03.9654968Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-07-24T05:25:03.9658147Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-07-24T05:25:03.9661241Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-07-24T05:25:03.9664422Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-07-24T05:25:03.9667809Z adding 'torch/include/ATen/ops/_stack.h' 2025-07-24T05:25:03.9671173Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9674248Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-07-24T05:25:03.9677330Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-07-24T05:25:03.9680575Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-07-24T05:25:03.9684041Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-07-24T05:25:03.9687455Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9690543Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-07-24T05:25:03.9694046Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-07-24T05:25:03.9697060Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-07-24T05:25:03.9700417Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9703481Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-07-24T05:25:03.9706746Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-07-24T05:25:03.9709806Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-07-24T05:25:03.9713058Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-07-24T05:25:03.9716209Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-07-24T05:25:03.9719521Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-07-24T05:25:03.9722750Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-07-24T05:25:03.9726083Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9729125Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-07-24T05:25:03.9732384Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-07-24T05:25:03.9735617Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-07-24T05:25:03.9739103Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9742199Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9745351Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-07-24T05:25:03.9748717Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-07-24T05:25:03.9751887Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-07-24T05:25:03.9755280Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9758346Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-07-24T05:25:03.9761780Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9765140Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:03.9768067Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-07-24T05:25:03.9771339Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-07-24T05:25:03.9774398Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-07-24T05:25:03.9777586Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-07-24T05:25:03.9780633Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-07-24T05:25:03.9783979Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9787136Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-07-24T05:25:03.9790330Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-07-24T05:25:03.9793557Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-07-24T05:25:03.9797249Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9800588Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-07-24T05:25:03.9803717Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-07-24T05:25:03.9807406Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-07-24T05:25:03.9810487Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-07-24T05:25:03.9814049Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9817169Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-07-24T05:25:03.9820442Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-07-24T05:25:03.9823758Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-07-24T05:25:03.9827285Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-07-24T05:25:03.9831074Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9833917Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-07-24T05:25:03.9837194Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-07-24T05:25:03.9840489Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-07-24T05:25:03.9844031Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-07-24T05:25:03.9847495Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9850791Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-07-24T05:25:03.9854261Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-07-24T05:25:03.9857686Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-07-24T05:25:03.9861075Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-07-24T05:25:03.9864504Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9867796Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-07-24T05:25:03.9870941Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-07-24T05:25:03.9874363Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-07-24T05:25:03.9878171Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9880900Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-07-24T05:25:03.9884391Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-07-24T05:25:03.9887419Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-07-24T05:25:03.9890957Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9893873Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-07-24T05:25:03.9897236Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-07-24T05:25:03.9900442Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-07-24T05:25:03.9904009Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9907131Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-07-24T05:25:03.9910531Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-07-24T05:25:03.9914152Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-07-24T05:25:03.9917420Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9920636Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-07-24T05:25:03.9923970Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-07-24T05:25:03.9927423Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-07-24T05:25:03.9930870Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9934077Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-07-24T05:25:03.9937773Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-07-24T05:25:03.9940843Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-07-24T05:25:03.9944419Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-07-24T05:25:03.9948037Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9951366Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-07-24T05:25:03.9954483Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-07-24T05:25:03.9958092Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-07-24T05:25:03.9961907Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9964883Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-07-24T05:25:03.9968147Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-07-24T05:25:03.9972189Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-07-24T05:25:03.9975876Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-07-24T05:25:03.9979454Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-07-24T05:25:03.9982734Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:03.9986222Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-07-24T05:25:03.9989812Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:03.9993137Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-07-24T05:25:03.9996330Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-07-24T05:25:03.9999956Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-07-24T05:25:04.0003481Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-07-24T05:25:04.0006608Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-07-24T05:25:04.0010182Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0013391Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-07-24T05:25:04.0016705Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-07-24T05:25:04.0020372Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-07-24T05:25:04.0024156Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-07-24T05:25:04.0027964Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0031047Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-07-24T05:25:04.0034747Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-07-24T05:25:04.0037951Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-07-24T05:25:04.0041976Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0045247Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-07-24T05:25:04.0048788Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-07-24T05:25:04.0052230Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-07-24T05:25:04.0055537Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0058817Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-07-24T05:25:04.0062594Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-07-24T05:25:04.0066203Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-07-24T05:25:04.0069737Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-07-24T05:25:04.0073129Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0076762Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-07-24T05:25:04.0079726Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-07-24T05:25:04.0083027Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-07-24T05:25:04.0086222Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-07-24T05:25:04.0089753Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-07-24T05:25:04.0093151Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0096286Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-07-24T05:25:04.0099467Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-07-24T05:25:04.0102563Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-07-24T05:25:04.0106296Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-07-24T05:25:04.0109724Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0112995Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-07-24T05:25:04.0116102Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-07-24T05:25:04.0119467Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0122558Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-07-24T05:25:04.0125725Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-07-24T05:25:04.0137134Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-07-24T05:25:04.0137432Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-07-24T05:25:04.0137563Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-07-24T05:25:04.0139191Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0142224Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-07-24T05:25:04.0145457Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-07-24T05:25:04.0148672Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-07-24T05:25:04.0151957Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-07-24T05:25:04.0155145Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-07-24T05:25:04.0158300Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-07-24T05:25:04.0161782Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-07-24T05:25:04.0165132Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-07-24T05:25:04.0168287Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-07-24T05:25:04.0171340Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-07-24T05:25:04.0174543Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-07-24T05:25:04.0177780Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-07-24T05:25:04.0181182Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0184322Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-07-24T05:25:04.0188240Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-07-24T05:25:04.0191184Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-07-24T05:25:04.0194460Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-07-24T05:25:04.0198049Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-07-24T05:25:04.0201724Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0204925Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-07-24T05:25:04.0208187Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-07-24T05:25:04.0211442Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-07-24T05:25:04.0215083Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-07-24T05:25:04.0218431Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-07-24T05:25:04.0221891Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0225353Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.0228352Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-07-24T05:25:04.0231703Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-07-24T05:25:04.0235163Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-07-24T05:25:04.0238653Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0241829Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-07-24T05:25:04.0245221Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-07-24T05:25:04.0248642Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-07-24T05:25:04.0251942Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-07-24T05:25:04.0255334Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0258433Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-07-24T05:25:04.0261499Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-07-24T05:25:04.0264915Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-07-24T05:25:04.0268195Z adding 'torch/include/ATen/ops/_unique.h' 2025-07-24T05:25:04.0271511Z adding 'torch/include/ATen/ops/_unique2.h' 2025-07-24T05:25:04.0274910Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0278008Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-07-24T05:25:04.0281173Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-07-24T05:25:04.0284341Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-07-24T05:25:04.0287968Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-07-24T05:25:04.0291428Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0294651Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-07-24T05:25:04.0297771Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-07-24T05:25:04.0301105Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-07-24T05:25:04.0304358Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-07-24T05:25:04.0307957Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-07-24T05:25:04.0311319Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0314472Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-07-24T05:25:04.0317660Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-07-24T05:25:04.0321032Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-07-24T05:25:04.0324631Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0327526Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-07-24T05:25:04.0331683Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-07-24T05:25:04.0334962Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-07-24T05:25:04.0338533Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0341643Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-07-24T05:25:04.0345070Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-07-24T05:25:04.0348584Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-07-24T05:25:04.0351844Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0354966Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-07-24T05:25:04.0358210Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-07-24T05:25:04.0361688Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-07-24T05:25:04.0365076Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0368657Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-07-24T05:25:04.0372449Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-07-24T05:25:04.0375509Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-07-24T05:25:04.0379131Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0382141Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-07-24T05:25:04.0385706Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-07-24T05:25:04.0389866Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-07-24T05:25:04.0393718Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-07-24T05:25:04.0397678Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.0400895Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-07-24T05:25:04.0404399Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-07-24T05:25:04.0407849Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-07-24T05:25:04.0411087Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-07-24T05:25:04.0414540Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-07-24T05:25:04.0417965Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-07-24T05:25:04.0421646Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.0425357Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0428513Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-07-24T05:25:04.0432283Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-07-24T05:25:04.0435258Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-07-24T05:25:04.0438785Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-07-24T05:25:04.0442018Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-07-24T05:25:04.0445760Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-07-24T05:25:04.0449861Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-07-24T05:25:04.0453772Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-07-24T05:25:04.0457732Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.0461278Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-07-24T05:25:04.0464582Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-07-24T05:25:04.0468226Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-07-24T05:25:04.0471443Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-07-24T05:25:04.0474842Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-07-24T05:25:04.0478254Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-07-24T05:25:04.0481979Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.0485540Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0488555Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-07-24T05:25:04.0492290Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-07-24T05:25:04.0495315Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-07-24T05:25:04.0498747Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-07-24T05:25:04.0502026Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-07-24T05:25:04.0505845Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-07-24T05:25:04.0509825Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-07-24T05:25:04.0513551Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-07-24T05:25:04.0517526Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.0521108Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-07-24T05:25:04.0524438Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-07-24T05:25:04.0527786Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-07-24T05:25:04.0531196Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-07-24T05:25:04.0534962Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-07-24T05:25:04.0538771Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-07-24T05:25:04.0542862Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.0546551Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0549618Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-07-24T05:25:04.0553318Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-07-24T05:25:04.0556312Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-07-24T05:25:04.0559896Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-07-24T05:25:04.0563090Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-07-24T05:25:04.0567101Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-07-24T05:25:04.0570638Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-07-24T05:25:04.0574482Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-07-24T05:25:04.0578927Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.0581759Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-07-24T05:25:04.0585205Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-07-24T05:25:04.0588400Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-07-24T05:25:04.0591755Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-07-24T05:25:04.0595343Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-07-24T05:25:04.0598635Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-07-24T05:25:04.0602158Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.0605332Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0608507Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-07-24T05:25:04.0611813Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-07-24T05:25:04.0615013Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-07-24T05:25:04.0618329Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-07-24T05:25:04.0621601Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-07-24T05:25:04.0625838Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-07-24T05:25:04.0629591Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-07-24T05:25:04.0633572Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-07-24T05:25:04.0637339Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.0640510Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-07-24T05:25:04.0644141Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-07-24T05:25:04.0647354Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-07-24T05:25:04.0650814Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-07-24T05:25:04.0654032Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-07-24T05:25:04.0657445Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-07-24T05:25:04.0660972Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.0664122Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0667488Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-07-24T05:25:04.0670798Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-07-24T05:25:04.0673910Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-07-24T05:25:04.0677228Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-07-24T05:25:04.0680748Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-07-24T05:25:04.0684173Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-07-24T05:25:04.0687458Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-07-24T05:25:04.0690757Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-07-24T05:25:04.0693923Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-07-24T05:25:04.0697513Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-07-24T05:25:04.0700583Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-07-24T05:25:04.0703754Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0706833Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-07-24T05:25:04.0710008Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-07-24T05:25:04.0713226Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-07-24T05:25:04.0716539Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-07-24T05:25:04.0719714Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-07-24T05:25:04.0722770Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-07-24T05:25:04.0726023Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-07-24T05:25:04.0729526Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-07-24T05:25:04.0733110Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0736115Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-07-24T05:25:04.0739384Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-07-24T05:25:04.0742577Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-07-24T05:25:04.0746130Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0749145Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-07-24T05:25:04.0752390Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-07-24T05:25:04.0755624Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-07-24T05:25:04.0759067Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0762062Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-07-24T05:25:04.0765363Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-07-24T05:25:04.0768525Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-07-24T05:25:04.0771905Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0774908Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-07-24T05:25:04.0778183Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-07-24T05:25:04.0781364Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-07-24T05:25:04.0784825Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0788008Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-07-24T05:25:04.0791279Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-07-24T05:25:04.0794472Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-07-24T05:25:04.0797791Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0800786Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-07-24T05:25:04.0804050Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-07-24T05:25:04.0807052Z adding 'torch/include/ATen/ops/_values.h' 2025-07-24T05:25:04.0810213Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-07-24T05:25:04.0813541Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0816795Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.0819664Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-07-24T05:25:04.0822975Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-07-24T05:25:04.0826553Z adding 'torch/include/ATen/ops/_values_native.h' 2025-07-24T05:25:04.0829442Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-07-24T05:25:04.0832528Z adding 'torch/include/ATen/ops/_version.h' 2025-07-24T05:25:04.0835796Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0838752Z adding 'torch/include/ATen/ops/_version_native.h' 2025-07-24T05:25:04.0841923Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-07-24T05:25:04.0845338Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-07-24T05:25:04.0848597Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-07-24T05:25:04.0852008Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-07-24T05:25:04.0855230Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-07-24T05:25:04.0858318Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-07-24T05:25:04.0861579Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-07-24T05:25:04.0864641Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-07-24T05:25:04.0868020Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-07-24T05:25:04.0871285Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h' 2025-07-24T05:25:04.0874351Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h' 2025-07-24T05:25:04.0877615Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h' 2025-07-24T05:25:04.0880678Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-07-24T05:25:04.0883916Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-07-24T05:25:04.0887003Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-07-24T05:25:04.0890204Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-07-24T05:25:04.0893310Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-07-24T05:25:04.0896625Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0899767Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-07-24T05:25:04.0903197Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0906367Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-07-24T05:25:04.0909667Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-07-24T05:25:04.0912883Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-07-24T05:25:04.0916218Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-07-24T05:25:04.0919672Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0922776Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-07-24T05:25:04.0926008Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-07-24T05:25:04.0934612Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-07-24T05:25:04.0938022Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-07-24T05:25:04.0941442Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0944626Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-07-24T05:25:04.0947937Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-07-24T05:25:04.0951285Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-07-24T05:25:04.0954544Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-07-24T05:25:04.0957639Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-07-24T05:25:04.0960825Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-07-24T05:25:04.0964015Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-07-24T05:25:04.0967855Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0970355Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-07-24T05:25:04.0973549Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-07-24T05:25:04.0976749Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-07-24T05:25:04.0980139Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.0983124Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-07-24T05:25:04.0986571Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-07-24T05:25:04.0989726Z adding 'torch/include/ATen/ops/abs.h' 2025-07-24T05:25:04.0993067Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.0996153Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-07-24T05:25:04.0999333Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-07-24T05:25:04.1002473Z adding 'torch/include/ATen/ops/abs_native.h' 2025-07-24T05:25:04.1005796Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-07-24T05:25:04.1008997Z adding 'torch/include/ATen/ops/absolute.h' 2025-07-24T05:25:04.1012304Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1015294Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-07-24T05:25:04.1018590Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-07-24T05:25:04.1021888Z adding 'torch/include/ATen/ops/acos.h' 2025-07-24T05:25:04.1025430Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1028429Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-07-24T05:25:04.1031571Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-07-24T05:25:04.1034595Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-07-24T05:25:04.1037980Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-07-24T05:25:04.1041025Z adding 'torch/include/ATen/ops/acos_native.h' 2025-07-24T05:25:04.1044351Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-07-24T05:25:04.1047588Z adding 'torch/include/ATen/ops/acosh.h' 2025-07-24T05:25:04.1050962Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1054511Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-07-24T05:25:04.1057692Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-07-24T05:25:04.1060870Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-07-24T05:25:04.1064746Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-07-24T05:25:04.1068319Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-07-24T05:25:04.1072034Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-07-24T05:25:04.1075960Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-07-24T05:25:04.1079850Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.1083455Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1086682Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-07-24T05:25:04.1090330Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-07-24T05:25:04.1094316Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-07-24T05:25:04.1098433Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1101848Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-07-24T05:25:04.1105758Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-07-24T05:25:04.1110107Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-07-24T05:25:04.1113946Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-07-24T05:25:04.1117571Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-07-24T05:25:04.1121041Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-07-24T05:25:04.1124892Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-07-24T05:25:04.1127704Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-07-24T05:25:04.1131038Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-07-24T05:25:04.1134296Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-07-24T05:25:04.1137917Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1141083Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-07-24T05:25:04.1144301Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-07-24T05:25:04.1147950Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-07-24T05:25:04.1151427Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-07-24T05:25:04.1154698Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-07-24T05:25:04.1158051Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1161016Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-07-24T05:25:04.1164414Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-07-24T05:25:04.1167621Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-07-24T05:25:04.1170893Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-07-24T05:25:04.1174427Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1177451Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-07-24T05:25:04.1180680Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-07-24T05:25:04.1183808Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-07-24T05:25:04.1187189Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-07-24T05:25:04.1190327Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-07-24T05:25:04.1193891Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-07-24T05:25:04.1197361Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1200394Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-07-24T05:25:04.1203672Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-07-24T05:25:04.1206756Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-07-24T05:25:04.1209998Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-07-24T05:25:04.1213092Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-07-24T05:25:04.1216452Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-07-24T05:25:04.1219713Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-07-24T05:25:04.1222984Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-07-24T05:25:04.1226647Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1229731Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-07-24T05:25:04.1232947Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-07-24T05:25:04.1236044Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-07-24T05:25:04.1239270Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-07-24T05:25:04.1242378Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-07-24T05:25:04.1245741Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-07-24T05:25:04.1249149Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1252736Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-07-24T05:25:04.1256100Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-07-24T05:25:04.1258782Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-07-24T05:25:04.1261967Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-07-24T05:25:04.1265158Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-07-24T05:25:04.1268503Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-07-24T05:25:04.1271783Z adding 'torch/include/ATen/ops/add.h' 2025-07-24T05:25:04.1275228Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.1278559Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1281588Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-07-24T05:25:04.1284808Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-07-24T05:25:04.1287895Z adding 'torch/include/ATen/ops/add_meta.h' 2025-07-24T05:25:04.1291109Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-07-24T05:25:04.1294378Z adding 'torch/include/ATen/ops/add_native.h' 2025-07-24T05:25:04.1298006Z adding 'torch/include/ATen/ops/add_ops.h' 2025-07-24T05:25:04.1301373Z adding 'torch/include/ATen/ops/addbmm.h' 2025-07-24T05:25:04.1304765Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-07-24T05:25:04.1308085Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-07-24T05:25:04.1311265Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-07-24T05:25:04.1314377Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-07-24T05:25:04.1318126Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-07-24T05:25:04.1321101Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-07-24T05:25:04.1324758Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1327802Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-07-24T05:25:04.1331003Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-07-24T05:25:04.1334127Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-07-24T05:25:04.1337366Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-07-24T05:25:04.1340453Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-07-24T05:25:04.1343811Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-07-24T05:25:04.1347224Z adding 'torch/include/ATen/ops/addcmul.h' 2025-07-24T05:25:04.1350702Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1354007Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-07-24T05:25:04.1357205Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-07-24T05:25:04.1360380Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-07-24T05:25:04.1363649Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-07-24T05:25:04.1366968Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-07-24T05:25:04.1370372Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-07-24T05:25:04.1373751Z adding 'torch/include/ATen/ops/addmm.h' 2025-07-24T05:25:04.1377247Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1380342Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-07-24T05:25:04.1383979Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-07-24T05:25:04.1387315Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-07-24T05:25:04.1390579Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-07-24T05:25:04.1393878Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-07-24T05:25:04.1397495Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-07-24T05:25:04.1400859Z adding 'torch/include/ATen/ops/addmv.h' 2025-07-24T05:25:04.1404339Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1407425Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-07-24T05:25:04.1410718Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-07-24T05:25:04.1413841Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-07-24T05:25:04.1417013Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-07-24T05:25:04.1420145Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-07-24T05:25:04.1423562Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-07-24T05:25:04.1426989Z adding 'torch/include/ATen/ops/addr.h' 2025-07-24T05:25:04.1430435Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.1433545Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-07-24T05:25:04.1436758Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-07-24T05:25:04.1439951Z adding 'torch/include/ATen/ops/addr_native.h' 2025-07-24T05:25:04.1443314Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-07-24T05:25:04.1446501Z adding 'torch/include/ATen/ops/adjoint.h' 2025-07-24T05:25:04.1449815Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1453043Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-07-24T05:25:04.1456311Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-07-24T05:25:04.1460105Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-07-24T05:25:04.1463542Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-07-24T05:25:04.1467276Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1470284Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-07-24T05:25:04.1473727Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-07-24T05:25:04.1477472Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.1480403Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-07-24T05:25:04.1484031Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-07-24T05:25:04.1487073Z adding 'torch/include/ATen/ops/alias.h' 2025-07-24T05:25:04.1490596Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.1493630Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-07-24T05:25:04.1497185Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.1500500Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1503542Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-07-24T05:25:04.1507277Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-07-24T05:25:04.1510319Z adding 'torch/include/ATen/ops/alias_native.h' 2025-07-24T05:25:04.1513797Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-07-24T05:25:04.1516783Z adding 'torch/include/ATen/ops/align_as.h' 2025-07-24T05:25:04.1520271Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1523229Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-07-24T05:25:04.1526581Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-07-24T05:25:04.1529718Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-07-24T05:25:04.1533249Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1536210Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-07-24T05:25:04.1539634Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-07-24T05:25:04.1542923Z adding 'torch/include/ATen/ops/align_to.h' 2025-07-24T05:25:04.1546961Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1550116Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-07-24T05:25:04.1553888Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-07-24T05:25:04.1557665Z adding 'torch/include/ATen/ops/all.h' 2025-07-24T05:25:04.1561681Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.1565446Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1569897Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1573183Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-07-24T05:25:04.1576818Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-07-24T05:25:04.1580314Z adding 'torch/include/ATen/ops/all_meta.h' 2025-07-24T05:25:04.1584027Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-07-24T05:25:04.1587768Z adding 'torch/include/ATen/ops/all_native.h' 2025-07-24T05:25:04.1591758Z adding 'torch/include/ATen/ops/all_ops.h' 2025-07-24T05:25:04.1595148Z adding 'torch/include/ATen/ops/allclose.h' 2025-07-24T05:25:04.1598803Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.1601803Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-07-24T05:25:04.1605328Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-07-24T05:25:04.1608800Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-07-24T05:25:04.1612298Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1615336Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-07-24T05:25:04.1618629Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-07-24T05:25:04.1622156Z adding 'torch/include/ATen/ops/amax.h' 2025-07-24T05:25:04.1625628Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1628643Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-07-24T05:25:04.1631785Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-07-24T05:25:04.1634858Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-07-24T05:25:04.1638297Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-07-24T05:25:04.1641413Z adding 'torch/include/ATen/ops/amax_native.h' 2025-07-24T05:25:04.1644772Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-07-24T05:25:04.1648010Z adding 'torch/include/ATen/ops/amin.h' 2025-07-24T05:25:04.1651429Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1654431Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-07-24T05:25:04.1657602Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-07-24T05:25:04.1660667Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-07-24T05:25:04.1663833Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-07-24T05:25:04.1667068Z adding 'torch/include/ATen/ops/amin_native.h' 2025-07-24T05:25:04.1670688Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-07-24T05:25:04.1673993Z adding 'torch/include/ATen/ops/aminmax.h' 2025-07-24T05:25:04.1677466Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1680503Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-07-24T05:25:04.1683710Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-07-24T05:25:04.1686805Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-07-24T05:25:04.1690027Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-07-24T05:25:04.1693125Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-07-24T05:25:04.1696604Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-07-24T05:25:04.1699820Z adding 'torch/include/ATen/ops/and.h' 2025-07-24T05:25:04.1703160Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1706291Z adding 'torch/include/ATen/ops/and_native.h' 2025-07-24T05:25:04.1709702Z adding 'torch/include/ATen/ops/and_ops.h' 2025-07-24T05:25:04.1712921Z adding 'torch/include/ATen/ops/angle.h' 2025-07-24T05:25:04.1716112Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-07-24T05:25:04.1719278Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-07-24T05:25:04.1722366Z adding 'torch/include/ATen/ops/angle_native.h' 2025-07-24T05:25:04.1725646Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-07-24T05:25:04.1729135Z adding 'torch/include/ATen/ops/any.h' 2025-07-24T05:25:04.1732689Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.1736044Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1739128Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1742275Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-07-24T05:25:04.1745775Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-07-24T05:25:04.1748981Z adding 'torch/include/ATen/ops/any_meta.h' 2025-07-24T05:25:04.1752257Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-07-24T05:25:04.1755477Z adding 'torch/include/ATen/ops/any_native.h' 2025-07-24T05:25:04.1759096Z adding 'torch/include/ATen/ops/any_ops.h' 2025-07-24T05:25:04.1762707Z adding 'torch/include/ATen/ops/arange.h' 2025-07-24T05:25:04.1766261Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.1769334Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-07-24T05:25:04.1772538Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-07-24T05:25:04.1775723Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-07-24T05:25:04.1778845Z adding 'torch/include/ATen/ops/arange_native.h' 2025-07-24T05:25:04.1782438Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-07-24T05:25:04.1785835Z adding 'torch/include/ATen/ops/arccos.h' 2025-07-24T05:25:04.1789240Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1792252Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-07-24T05:25:04.1795625Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-07-24T05:25:04.1798868Z adding 'torch/include/ATen/ops/arccosh.h' 2025-07-24T05:25:04.1802237Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1805156Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-07-24T05:25:04.1808446Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-07-24T05:25:04.1811826Z adding 'torch/include/ATen/ops/arcsin.h' 2025-07-24T05:25:04.1815214Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1818163Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-07-24T05:25:04.1821433Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-07-24T05:25:04.1824621Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-07-24T05:25:04.1828117Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1831056Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-07-24T05:25:04.1834332Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-07-24T05:25:04.1837519Z adding 'torch/include/ATen/ops/arctan.h' 2025-07-24T05:25:04.1840717Z adding 'torch/include/ATen/ops/arctan2.h' 2025-07-24T05:25:04.1844072Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1847109Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-07-24T05:25:04.1850415Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-07-24T05:25:04.1854081Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1857220Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-07-24T05:25:04.1860529Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-07-24T05:25:04.1864016Z adding 'torch/include/ATen/ops/arctanh.h' 2025-07-24T05:25:04.1867428Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1871401Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-07-24T05:25:04.1874854Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-07-24T05:25:04.1878266Z adding 'torch/include/ATen/ops/argmax.h' 2025-07-24T05:25:04.1882266Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1885338Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-07-24T05:25:04.1888384Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-07-24T05:25:04.1891503Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-07-24T05:25:04.1894948Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-07-24T05:25:04.1898058Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-07-24T05:25:04.1901429Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-07-24T05:25:04.1904759Z adding 'torch/include/ATen/ops/argmin.h' 2025-07-24T05:25:04.1908655Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1911800Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-07-24T05:25:04.1915412Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-07-24T05:25:04.1918471Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-07-24T05:25:04.1921721Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-07-24T05:25:04.1925109Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-07-24T05:25:04.1928315Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-07-24T05:25:04.1931774Z adding 'torch/include/ATen/ops/argsort.h' 2025-07-24T05:25:04.1935273Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1938540Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-07-24T05:25:04.1942256Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-07-24T05:25:04.1945484Z adding 'torch/include/ATen/ops/argwhere.h' 2025-07-24T05:25:04.1949153Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.1951913Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-07-24T05:25:04.1955275Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-07-24T05:25:04.1958741Z adding 'torch/include/ATen/ops/as_strided.h' 2025-07-24T05:25:04.1962504Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1966683Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-07-24T05:25:04.1980198Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.1983928Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.1987074Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-07-24T05:25:04.1990467Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-07-24T05:25:04.1994442Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-07-24T05:25:04.1997954Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-07-24T05:25:04.2001156Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-07-24T05:25:04.2004668Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-07-24T05:25:04.2007856Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-07-24T05:25:04.2011710Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-07-24T05:25:04.2015637Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2018898Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2022233Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-07-24T05:25:04.2025561Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-07-24T05:25:04.2028947Z adding 'torch/include/ATen/ops/asin.h' 2025-07-24T05:25:04.2032352Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2035609Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-07-24T05:25:04.2038772Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-07-24T05:25:04.2042336Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-07-24T05:25:04.2046086Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-07-24T05:25:04.2049646Z adding 'torch/include/ATen/ops/asin_native.h' 2025-07-24T05:25:04.2053365Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-07-24T05:25:04.2056893Z adding 'torch/include/ATen/ops/asinh.h' 2025-07-24T05:25:04.2060935Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2064442Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-07-24T05:25:04.2068397Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-07-24T05:25:04.2071690Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-07-24T05:25:04.2074951Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-07-24T05:25:04.2078121Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-07-24T05:25:04.2081654Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-07-24T05:25:04.2085043Z adding 'torch/include/ATen/ops/atan.h' 2025-07-24T05:25:04.2088307Z adding 'torch/include/ATen/ops/atan2.h' 2025-07-24T05:25:04.2092247Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2095015Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-07-24T05:25:04.2098204Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-07-24T05:25:04.2101294Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-07-24T05:25:04.2104862Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-07-24T05:25:04.2108027Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-07-24T05:25:04.2111337Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-07-24T05:25:04.2114791Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2117805Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-07-24T05:25:04.2121222Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-07-24T05:25:04.2124307Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-07-24T05:25:04.2127485Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-07-24T05:25:04.2130628Z adding 'torch/include/ATen/ops/atan_native.h' 2025-07-24T05:25:04.2133943Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-07-24T05:25:04.2137161Z adding 'torch/include/ATen/ops/atanh.h' 2025-07-24T05:25:04.2140565Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2143561Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-07-24T05:25:04.2146870Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-07-24T05:25:04.2149927Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-07-24T05:25:04.2153287Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-07-24T05:25:04.2156392Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-07-24T05:25:04.2159726Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-07-24T05:25:04.2162966Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-07-24T05:25:04.2166321Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.2169297Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-07-24T05:25:04.2172563Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-07-24T05:25:04.2175741Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-07-24T05:25:04.2179096Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.2182256Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-07-24T05:25:04.2185785Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-07-24T05:25:04.2189035Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-07-24T05:25:04.2192395Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.2195365Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-07-24T05:25:04.2198738Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-07-24T05:25:04.2202008Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-07-24T05:25:04.2205417Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2208647Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.2211675Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-07-24T05:25:04.2215037Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-07-24T05:25:04.2218390Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-07-24T05:25:04.2222018Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-07-24T05:25:04.2225819Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2228831Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-07-24T05:25:04.2232105Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-07-24T05:25:04.2235266Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-07-24T05:25:04.2238558Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-07-24T05:25:04.2241758Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-07-24T05:25:04.2245150Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-07-24T05:25:04.2248609Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2251689Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-07-24T05:25:04.2254972Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-07-24T05:25:04.2258550Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-07-24T05:25:04.2261941Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-07-24T05:25:04.2265300Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-07-24T05:25:04.2268738Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-07-24T05:25:04.2272142Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-07-24T05:25:04.2275558Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-07-24T05:25:04.2279091Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2282204Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-07-24T05:25:04.2285448Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-07-24T05:25:04.2288589Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-07-24T05:25:04.2291845Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-07-24T05:25:04.2295072Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-07-24T05:25:04.2298527Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-07-24T05:25:04.2301976Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2305204Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-07-24T05:25:04.2308453Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-07-24T05:25:04.2311692Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-07-24T05:25:04.2314948Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-07-24T05:25:04.2318197Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-07-24T05:25:04.2321657Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-07-24T05:25:04.2325045Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-07-24T05:25:04.2328531Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2331597Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-07-24T05:25:04.2334876Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-07-24T05:25:04.2338011Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-07-24T05:25:04.2341221Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-07-24T05:25:04.2344420Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-07-24T05:25:04.2348185Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-07-24T05:25:04.2351762Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-07-24T05:25:04.2355517Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2358538Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-07-24T05:25:04.2362023Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-07-24T05:25:04.2365317Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-07-24T05:25:04.2368601Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-07-24T05:25:04.2371925Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-07-24T05:25:04.2375182Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-07-24T05:25:04.2378466Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-07-24T05:25:04.2381895Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2385092Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-07-24T05:25:04.2388267Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-07-24T05:25:04.2392148Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-07-24T05:25:04.2395471Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-07-24T05:25:04.2398893Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-07-24T05:25:04.2402356Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-07-24T05:25:04.2405880Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2409060Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-07-24T05:25:04.2412212Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-07-24T05:25:04.2415716Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-07-24T05:25:04.2419085Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.2422207Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-07-24T05:25:04.2425759Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-07-24T05:25:04.2428767Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-07-24T05:25:04.2432171Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-07-24T05:25:04.2435466Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-07-24T05:25:04.2438934Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2442081Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-07-24T05:25:04.2445194Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-07-24T05:25:04.2448625Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-07-24T05:25:04.2452052Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-07-24T05:25:04.2455860Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2458938Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-07-24T05:25:04.2462287Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-07-24T05:25:04.2465863Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-07-24T05:25:04.2469160Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-07-24T05:25:04.2472753Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-07-24T05:25:04.2475900Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-07-24T05:25:04.2479614Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2482792Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-07-24T05:25:04.2493654Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-07-24T05:25:04.2494096Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-07-24T05:25:04.2494502Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-07-24T05:25:04.2496191Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2499468Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-07-24T05:25:04.2502602Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-07-24T05:25:04.2506103Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-07-24T05:25:04.2509815Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-07-24T05:25:04.2513124Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-07-24T05:25:04.2516900Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2520116Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2523375Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-07-24T05:25:04.2526589Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-07-24T05:25:04.2530029Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-07-24T05:25:04.2533507Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-07-24T05:25:04.2537050Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-07-24T05:25:04.2540580Z adding 'torch/include/ATen/ops/bilinear.h' 2025-07-24T05:25:04.2543883Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.2547142Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-07-24T05:25:04.2550767Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-07-24T05:25:04.2554422Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-07-24T05:25:04.2558177Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-07-24T05:25:04.2561902Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-07-24T05:25:04.2565422Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-07-24T05:25:04.2569016Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-07-24T05:25:04.2572795Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-07-24T05:25:04.2576404Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-07-24T05:25:04.2579973Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-07-24T05:25:04.2583532Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-07-24T05:25:04.2587401Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-07-24T05:25:04.2591134Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-07-24T05:25:04.2594971Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2598382Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-07-24T05:25:04.2601696Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-07-24T05:25:04.2605314Z adding 'torch/include/ATen/ops/bincount.h' 2025-07-24T05:25:04.2608852Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2612181Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-07-24T05:25:04.2615428Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-07-24T05:25:04.2618709Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-07-24T05:25:04.2622106Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-07-24T05:25:04.2625502Z adding 'torch/include/ATen/ops/binomial.h' 2025-07-24T05:25:04.2628907Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2632254Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-07-24T05:25:04.2635463Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-07-24T05:25:04.2638571Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-07-24T05:25:04.2642139Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-07-24T05:25:04.2645318Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-07-24T05:25:04.2649061Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2652401Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2656263Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-07-24T05:25:04.2659576Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-07-24T05:25:04.2662654Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-07-24T05:25:04.2666275Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-07-24T05:25:04.2669262Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-07-24T05:25:04.2672864Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-07-24T05:25:04.2676323Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-07-24T05:25:04.2680036Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2683407Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2686452Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-07-24T05:25:04.2689606Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-07-24T05:25:04.2692691Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-07-24T05:25:04.2695875Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-07-24T05:25:04.2698994Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-07-24T05:25:04.2702836Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-07-24T05:25:04.2706287Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-07-24T05:25:04.2709769Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2712802Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-07-24T05:25:04.2715970Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-07-24T05:25:04.2719056Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-07-24T05:25:04.2722238Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-07-24T05:25:04.2725310Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-07-24T05:25:04.2728616Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-07-24T05:25:04.2732008Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-07-24T05:25:04.2735475Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2738764Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2741799Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-07-24T05:25:04.2745035Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-07-24T05:25:04.2748184Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-07-24T05:25:04.2751435Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-07-24T05:25:04.2754548Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-07-24T05:25:04.2758240Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-07-24T05:25:04.2761901Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-07-24T05:25:04.2765413Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2768728Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2771772Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-07-24T05:25:04.2774936Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-07-24T05:25:04.2778011Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-07-24T05:25:04.2781653Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-07-24T05:25:04.2784930Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-07-24T05:25:04.2788696Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-07-24T05:25:04.2792141Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-07-24T05:25:04.2795591Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2799393Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2802457Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-07-24T05:25:04.2805650Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-07-24T05:25:04.2808763Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-07-24T05:25:04.2811967Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-07-24T05:25:04.2815233Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-07-24T05:25:04.2818797Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-07-24T05:25:04.2822412Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-07-24T05:25:04.2826263Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2829368Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-07-24T05:25:04.2833172Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-07-24T05:25:04.2836183Z adding 'torch/include/ATen/ops/block_diag.h' 2025-07-24T05:25:04.2839558Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2842508Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-07-24T05:25:04.2845770Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-07-24T05:25:04.2849029Z adding 'torch/include/ATen/ops/bmm.h' 2025-07-24T05:25:04.2852509Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2855861Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-07-24T05:25:04.2859134Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-07-24T05:25:04.2862063Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-07-24T05:25:04.2865508Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-07-24T05:25:04.2868731Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-07-24T05:25:04.2872312Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-07-24T05:25:04.2875583Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-07-24T05:25:04.2879223Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.2882252Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-07-24T05:25:04.2885790Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-07-24T05:25:04.2889075Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-07-24T05:25:04.2892421Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.2895581Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-07-24T05:25:04.2898776Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-07-24T05:25:04.2902214Z adding 'torch/include/ATen/ops/bucketize.h' 2025-07-24T05:25:04.2905778Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2909140Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-07-24T05:25:04.2912468Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-07-24T05:25:04.2915861Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-07-24T05:25:04.2919280Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-07-24T05:25:04.2922621Z adding 'torch/include/ATen/ops/can_cast.h' 2025-07-24T05:25:04.2926156Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.2929195Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-07-24T05:25:04.2932557Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-07-24T05:25:04.2935797Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-07-24T05:25:04.2939375Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.2942249Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-07-24T05:25:04.2945722Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-07-24T05:25:04.2949036Z adding 'torch/include/ATen/ops/cat.h' 2025-07-24T05:25:04.2952727Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.2955962Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.2959211Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-07-24T05:25:04.2962534Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-07-24T05:25:04.2966354Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-07-24T05:25:04.2969809Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-07-24T05:25:04.2973139Z adding 'torch/include/ATen/ops/cat_native.h' 2025-07-24T05:25:04.2976712Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-07-24T05:25:04.2979990Z adding 'torch/include/ATen/ops/cauchy.h' 2025-07-24T05:25:04.2983589Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.2986886Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-07-24T05:25:04.2990261Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-07-24T05:25:04.2993589Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-07-24T05:25:04.2996847Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-07-24T05:25:04.3000212Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-07-24T05:25:04.3003393Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-07-24T05:25:04.3006880Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3009990Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-07-24T05:25:04.3013640Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3017034Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.3020028Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-07-24T05:25:04.3023282Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-07-24T05:25:04.3026631Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-07-24T05:25:04.3029850Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-07-24T05:25:04.3033213Z adding 'torch/include/ATen/ops/cdist.h' 2025-07-24T05:25:04.3036662Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3039895Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-07-24T05:25:04.3043119Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-07-24T05:25:04.3046703Z adding 'torch/include/ATen/ops/ceil.h' 2025-07-24T05:25:04.3050508Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.3053808Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-07-24T05:25:04.3057498Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-07-24T05:25:04.3060779Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-07-24T05:25:04.3064264Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-07-24T05:25:04.3067834Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-07-24T05:25:04.3071531Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-07-24T05:25:04.3075244Z adding 'torch/include/ATen/ops/celu.h' 2025-07-24T05:25:04.3078974Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3082348Z adding 'torch/include/ATen/ops/celu_native.h' 2025-07-24T05:25:04.3085733Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-07-24T05:25:04.3089176Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-07-24T05:25:04.3092650Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3095790Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-07-24T05:25:04.3099067Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-07-24T05:25:04.3102438Z adding 'torch/include/ATen/ops/chalf.h' 2025-07-24T05:25:04.3105944Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3109027Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-07-24T05:25:04.3112468Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-07-24T05:25:04.3115829Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-07-24T05:25:04.3119383Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3122826Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-07-24T05:25:04.3126037Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-07-24T05:25:04.3129412Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-07-24T05:25:04.3132986Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-07-24T05:25:04.3136218Z adding 'torch/include/ATen/ops/cholesky.h' 2025-07-24T05:25:04.3139325Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-07-24T05:25:04.3142489Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-07-24T05:25:04.3145845Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-07-24T05:25:04.3149135Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-07-24T05:25:04.3152343Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-07-24T05:25:04.3155597Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-07-24T05:25:04.3159029Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-07-24T05:25:04.3162123Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-07-24T05:25:04.3165298Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-07-24T05:25:04.3168536Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-07-24T05:25:04.3171926Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3174882Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-07-24T05:25:04.3178169Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-07-24T05:25:04.3181500Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-07-24T05:25:04.3184996Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3187980Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-07-24T05:25:04.3191216Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-07-24T05:25:04.3194362Z adding 'torch/include/ATen/ops/chunk.h' 2025-07-24T05:25:04.3197724Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3200781Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-07-24T05:25:04.3204087Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-07-24T05:25:04.3208607Z adding 'torch/include/ATen/ops/clamp.h' 2025-07-24T05:25:04.3212313Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.3215399Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-07-24T05:25:04.3218732Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-07-24T05:25:04.3222028Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-07-24T05:25:04.3225645Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.3228765Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-07-24T05:25:04.3232127Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-07-24T05:25:04.3235212Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-07-24T05:25:04.3238373Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-07-24T05:25:04.3241480Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-07-24T05:25:04.3244986Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-07-24T05:25:04.3248209Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-07-24T05:25:04.3251524Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-07-24T05:25:04.3254971Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-07-24T05:25:04.3258536Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.3261519Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-07-24T05:25:04.3264795Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-07-24T05:25:04.3267982Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-07-24T05:25:04.3271225Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-07-24T05:25:04.3274378Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-07-24T05:25:04.3277980Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-07-24T05:25:04.3281202Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-07-24T05:25:04.3284726Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-07-24T05:25:04.3288199Z adding 'torch/include/ATen/ops/clip.h' 2025-07-24T05:25:04.3291875Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3294821Z adding 'torch/include/ATen/ops/clip_native.h' 2025-07-24T05:25:04.3298429Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-07-24T05:25:04.3301759Z adding 'torch/include/ATen/ops/clone.h' 2025-07-24T05:25:04.3305151Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3308272Z adding 'torch/include/ATen/ops/clone_native.h' 2025-07-24T05:25:04.3311595Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-07-24T05:25:04.3314761Z adding 'torch/include/ATen/ops/coalesce.h' 2025-07-24T05:25:04.3318115Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3321064Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-07-24T05:25:04.3324360Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-07-24T05:25:04.3327894Z adding 'torch/include/ATen/ops/col2im.h' 2025-07-24T05:25:04.3331255Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-07-24T05:25:04.3334624Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-07-24T05:25:04.3337778Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-07-24T05:25:04.3341101Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-07-24T05:25:04.3344213Z adding 'torch/include/ATen/ops/col_indices.h' 2025-07-24T05:25:04.3347706Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3350714Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-07-24T05:25:04.3354102Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3357371Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.3360476Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-07-24T05:25:04.3363749Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-07-24T05:25:04.3366845Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-07-24T05:25:04.3370109Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-07-24T05:25:04.3373296Z adding 'torch/include/ATen/ops/column_stack.h' 2025-07-24T05:25:04.3376555Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3379457Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-07-24T05:25:04.3382682Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-07-24T05:25:04.3386028Z adding 'torch/include/ATen/ops/combinations.h' 2025-07-24T05:25:04.3389447Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3392391Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-07-24T05:25:04.3395857Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-07-24T05:25:04.3399067Z adding 'torch/include/ATen/ops/complex.h' 2025-07-24T05:25:04.3402323Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3405421Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-07-24T05:25:04.3408563Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-07-24T05:25:04.3411606Z adding 'torch/include/ATen/ops/complex_native.h' 2025-07-24T05:25:04.3415290Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-07-24T05:25:04.3419457Z adding 'torch/include/ATen/ops/concat.h' 2025-07-24T05:25:04.3422973Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3426138Z adding 'torch/include/ATen/ops/concat_native.h' 2025-07-24T05:25:04.3429528Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-07-24T05:25:04.3433316Z adding 'torch/include/ATen/ops/concatenate.h' 2025-07-24T05:25:04.3436822Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3439944Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-07-24T05:25:04.3443341Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-07-24T05:25:04.3446482Z adding 'torch/include/ATen/ops/conj.h' 2025-07-24T05:25:04.3449882Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3452729Z adding 'torch/include/ATen/ops/conj_native.h' 2025-07-24T05:25:04.3455932Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-07-24T05:25:04.3459142Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-07-24T05:25:04.3462689Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3466162Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3469282Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-07-24T05:25:04.3472648Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-07-24T05:25:04.3475705Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-07-24T05:25:04.3479151Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-07-24T05:25:04.3482639Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-07-24T05:25:04.3486334Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3489659Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-07-24T05:25:04.3492960Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-07-24T05:25:04.3496221Z adding 'torch/include/ATen/ops/contiguous.h' 2025-07-24T05:25:04.3499616Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3502777Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-07-24T05:25:04.3506156Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-07-24T05:25:04.3509863Z adding 'torch/include/ATen/ops/conv1d.h' 2025-07-24T05:25:04.3513689Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3516715Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-07-24T05:25:04.3520290Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-07-24T05:25:04.3523895Z adding 'torch/include/ATen/ops/conv2d.h' 2025-07-24T05:25:04.3527684Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3530893Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-07-24T05:25:04.3534272Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-07-24T05:25:04.3537994Z adding 'torch/include/ATen/ops/conv3d.h' 2025-07-24T05:25:04.3541539Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3544879Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-07-24T05:25:04.3548436Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-07-24T05:25:04.3552663Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-07-24T05:25:04.3556812Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3560834Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-07-24T05:25:04.3564453Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-07-24T05:25:04.3568428Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-07-24T05:25:04.3572104Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-07-24T05:25:04.3575758Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-07-24T05:25:04.3579526Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3582513Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-07-24T05:25:04.3586298Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-07-24T05:25:04.3590005Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3593543Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-07-24T05:25:04.3596948Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-07-24T05:25:04.3600551Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-07-24T05:25:04.3604075Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3607346Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-07-24T05:25:04.3611379Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-07-24T05:25:04.3614443Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-07-24T05:25:04.3617903Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3621360Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-07-24T05:25:04.3625027Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-07-24T05:25:04.3628551Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-07-24T05:25:04.3632111Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3635106Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-07-24T05:25:04.3638440Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-07-24T05:25:04.3642397Z adding 'torch/include/ATen/ops/convolution.h' 2025-07-24T05:25:04.3646675Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-07-24T05:25:04.3650616Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3653851Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-07-24T05:25:04.3657056Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-07-24T05:25:04.3660557Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-07-24T05:25:04.3665217Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-07-24T05:25:04.3669448Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3672794Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-07-24T05:25:04.3676217Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-07-24T05:25:04.3679730Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3682851Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-07-24T05:25:04.3686296Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-07-24T05:25:04.3690215Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-07-24T05:25:04.3693975Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3697068Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-07-24T05:25:04.3700484Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-07-24T05:25:04.3703711Z adding 'torch/include/ATen/ops/copy.h' 2025-07-24T05:25:04.3707464Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3710667Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.3713912Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-07-24T05:25:04.3716829Z adding 'torch/include/ATen/ops/copy_native.h' 2025-07-24T05:25:04.3720178Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-07-24T05:25:04.3723546Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-07-24T05:25:04.3726938Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3730052Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-07-24T05:25:04.3733126Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-07-24T05:25:04.3736584Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-07-24T05:25:04.3739777Z adding 'torch/include/ATen/ops/copysign.h' 2025-07-24T05:25:04.3743177Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3746593Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.3749617Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-07-24T05:25:04.3752813Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-07-24T05:25:04.3756025Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-07-24T05:25:04.3759347Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-07-24T05:25:04.3762340Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-07-24T05:25:04.3765758Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-07-24T05:25:04.3768964Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-07-24T05:25:04.3772262Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3775298Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-07-24T05:25:04.3778527Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-07-24T05:25:04.3781616Z adding 'torch/include/ATen/ops/cos.h' 2025-07-24T05:25:04.3785134Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.3788190Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-07-24T05:25:04.3791395Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-07-24T05:25:04.3794555Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-07-24T05:25:04.3797738Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-07-24T05:25:04.3800751Z adding 'torch/include/ATen/ops/cos_native.h' 2025-07-24T05:25:04.3804005Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-07-24T05:25:04.3807216Z adding 'torch/include/ATen/ops/cosh.h' 2025-07-24T05:25:04.3810617Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.3813719Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-07-24T05:25:04.3816878Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-07-24T05:25:04.3819829Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-07-24T05:25:04.3822999Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-07-24T05:25:04.3826199Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-07-24T05:25:04.3829498Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-07-24T05:25:04.3832857Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-07-24T05:25:04.3836260Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3839166Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-07-24T05:25:04.3842379Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-07-24T05:25:04.3845512Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-07-24T05:25:04.3848864Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3851963Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-07-24T05:25:04.3855192Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-07-24T05:25:04.3858354Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-07-24T05:25:04.3861807Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3865247Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-07-24T05:25:04.3868482Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-07-24T05:25:04.3871953Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-07-24T05:25:04.3875451Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-07-24T05:25:04.3878635Z adding 'torch/include/ATen/ops/cov.h' 2025-07-24T05:25:04.3882158Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3885168Z adding 'torch/include/ATen/ops/cov_native.h' 2025-07-24T05:25:04.3888568Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-07-24T05:25:04.3891890Z adding 'torch/include/ATen/ops/cross.h' 2025-07-24T05:25:04.3895462Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3898740Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-07-24T05:25:04.3902290Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3905532Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-07-24T05:25:04.3908866Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-07-24T05:25:04.3912093Z adding 'torch/include/ATen/ops/cross_native.h' 2025-07-24T05:25:04.3915749Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-07-24T05:25:04.3918861Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-07-24T05:25:04.3922104Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3925315Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-07-24T05:25:04.3928675Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3932127Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.3935066Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-07-24T05:25:04.3938438Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-07-24T05:25:04.3941718Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-07-24T05:25:04.3945041Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-07-24T05:25:04.3948443Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-07-24T05:25:04.3951872Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.3955035Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-07-24T05:25:04.3958422Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-07-24T05:25:04.3961987Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-07-24T05:25:04.3965526Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-07-24T05:25:04.3969059Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3972209Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-07-24T05:25:04.3975348Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-07-24T05:25:04.3978800Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-07-24T05:25:04.3982216Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.3985742Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-07-24T05:25:04.3988996Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-07-24T05:25:04.3992563Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-07-24T05:25:04.3995865Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-07-24T05:25:04.3999565Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-07-24T05:25:04.4003284Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4006458Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-07-24T05:25:04.4009765Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-07-24T05:25:04.4013888Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-07-24T05:25:04.4017606Z adding 'torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4020909Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-07-24T05:25:04.4024118Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-07-24T05:25:04.4027802Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-07-24T05:25:04.4031607Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-07-24T05:25:04.4036589Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-07-24T05:25:04.4040556Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4043862Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-07-24T05:25:04.4047167Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-07-24T05:25:04.4050632Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-07-24T05:25:04.4054581Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-07-24T05:25:04.4058101Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-07-24T05:25:04.4062014Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-07-24T05:25:04.4066207Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-07-24T05:25:04.4070412Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4073864Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-07-24T05:25:04.4077342Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-07-24T05:25:04.4080791Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-07-24T05:25:04.4084842Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-07-24T05:25:04.4088651Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4092486Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-07-24T05:25:04.4095771Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-07-24T05:25:04.4099281Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-07-24T05:25:04.4102505Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-07-24T05:25:04.4105967Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-07-24T05:25:04.4109667Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4112875Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-07-24T05:25:04.4116192Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-07-24T05:25:04.4119565Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-07-24T05:25:04.4122885Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4126201Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-07-24T05:25:04.4129321Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-07-24T05:25:04.4132637Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-07-24T05:25:04.4135791Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-07-24T05:25:04.4139157Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4142069Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-07-24T05:25:04.4145352Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-07-24T05:25:04.4148658Z adding 'torch/include/ATen/ops/cummax.h' 2025-07-24T05:25:04.4152086Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4155457Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4158645Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-07-24T05:25:04.4162003Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-07-24T05:25:04.4165262Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-07-24T05:25:04.4168673Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4171656Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-07-24T05:25:04.4175021Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-07-24T05:25:04.4178374Z adding 'torch/include/ATen/ops/cummin.h' 2025-07-24T05:25:04.4181613Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4184897Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4188065Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-07-24T05:25:04.4191515Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-07-24T05:25:04.4195030Z adding 'torch/include/ATen/ops/cumprod.h' 2025-07-24T05:25:04.4198282Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-07-24T05:25:04.4202397Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4205459Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-07-24T05:25:04.4208846Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-07-24T05:25:04.4212423Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.4215675Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4218700Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-07-24T05:25:04.4221875Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-07-24T05:25:04.4225103Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-07-24T05:25:04.4228348Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-07-24T05:25:04.4231585Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-07-24T05:25:04.4235287Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-07-24T05:25:04.4238596Z adding 'torch/include/ATen/ops/cumsum.h' 2025-07-24T05:25:04.4242126Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.4245285Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4248371Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-07-24T05:25:04.4251692Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-07-24T05:25:04.4254771Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-07-24T05:25:04.4257918Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-07-24T05:25:04.4261085Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-07-24T05:25:04.4264730Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-07-24T05:25:04.4268214Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-07-24T05:25:04.4271660Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4274449Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-07-24T05:25:04.4277724Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-07-24T05:25:04.4280768Z adding 'torch/include/ATen/ops/data.h' 2025-07-24T05:25:04.4284102Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4287361Z adding 'torch/include/ATen/ops/data_native.h' 2025-07-24T05:25:04.4290551Z adding 'torch/include/ATen/ops/data_ops.h' 2025-07-24T05:25:04.4293762Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-07-24T05:25:04.4297135Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4300106Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-07-24T05:25:04.4303427Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-07-24T05:25:04.4306785Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-07-24T05:25:04.4310105Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4313168Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-07-24T05:25:04.4316455Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-07-24T05:25:04.4319895Z adding 'torch/include/ATen/ops/dequantize.h' 2025-07-24T05:25:04.4323340Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4326648Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-07-24T05:25:04.4329737Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-07-24T05:25:04.4333049Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-07-24T05:25:04.4336603Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-07-24T05:25:04.4339810Z adding 'torch/include/ATen/ops/det.h' 2025-07-24T05:25:04.4343304Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4346481Z adding 'torch/include/ATen/ops/det_native.h' 2025-07-24T05:25:04.4349821Z adding 'torch/include/ATen/ops/det_ops.h' 2025-07-24T05:25:04.4352987Z adding 'torch/include/ATen/ops/detach.h' 2025-07-24T05:25:04.4356486Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4359592Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-07-24T05:25:04.4363481Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4366747Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.4369601Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-07-24T05:25:04.4373059Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-07-24T05:25:04.4376190Z adding 'torch/include/ATen/ops/detach_native.h' 2025-07-24T05:25:04.4379666Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-07-24T05:25:04.4382828Z adding 'torch/include/ATen/ops/diag.h' 2025-07-24T05:25:04.4386539Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4389748Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-07-24T05:25:04.4393254Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4396712Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.4399699Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-07-24T05:25:04.4403192Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-07-24T05:25:04.4406378Z adding 'torch/include/ATen/ops/diag_native.h' 2025-07-24T05:25:04.4409791Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-07-24T05:25:04.4412984Z adding 'torch/include/ATen/ops/diagflat.h' 2025-07-24T05:25:04.4416496Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4419566Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-07-24T05:25:04.4428273Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-07-24T05:25:04.4432091Z adding 'torch/include/ATen/ops/diagonal.h' 2025-07-24T05:25:04.4435798Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-07-24T05:25:04.4439659Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4442750Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-07-24T05:25:04.4446476Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-07-24T05:25:04.4449942Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4453089Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4456422Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-07-24T05:25:04.4459887Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4463416Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.4466628Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-07-24T05:25:04.4470102Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-07-24T05:25:04.4473300Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-07-24T05:25:04.4476670Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-07-24T05:25:04.4480130Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-07-24T05:25:04.4483635Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4487171Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.4490152Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-07-24T05:25:04.4493659Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-07-24T05:25:04.4497337Z adding 'torch/include/ATen/ops/diff.h' 2025-07-24T05:25:04.4500805Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4504112Z adding 'torch/include/ATen/ops/diff_native.h' 2025-07-24T05:25:04.4507627Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-07-24T05:25:04.4511072Z adding 'torch/include/ATen/ops/digamma.h' 2025-07-24T05:25:04.4514521Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.4517636Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-07-24T05:25:04.4521019Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-07-24T05:25:04.4524088Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-07-24T05:25:04.4527377Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-07-24T05:25:04.4530478Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-07-24T05:25:04.4533950Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-07-24T05:25:04.4537222Z adding 'torch/include/ATen/ops/dist.h' 2025-07-24T05:25:04.4540779Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4543851Z adding 'torch/include/ATen/ops/dist_native.h' 2025-07-24T05:25:04.4547504Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-07-24T05:25:04.4551041Z adding 'torch/include/ATen/ops/div.h' 2025-07-24T05:25:04.4554555Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4558076Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.4561293Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-07-24T05:25:04.4565448Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-07-24T05:25:04.4568971Z adding 'torch/include/ATen/ops/div_meta.h' 2025-07-24T05:25:04.4572617Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-07-24T05:25:04.4576322Z adding 'torch/include/ATen/ops/div_native.h' 2025-07-24T05:25:04.4580809Z adding 'torch/include/ATen/ops/div_ops.h' 2025-07-24T05:25:04.4584588Z adding 'torch/include/ATen/ops/divide.h' 2025-07-24T05:25:04.4588522Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4591665Z adding 'torch/include/ATen/ops/divide_native.h' 2025-07-24T05:25:04.4595662Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-07-24T05:25:04.4599068Z adding 'torch/include/ATen/ops/dot.h' 2025-07-24T05:25:04.4602656Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4605772Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-07-24T05:25:04.4609459Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-07-24T05:25:04.4612584Z adding 'torch/include/ATen/ops/dot_native.h' 2025-07-24T05:25:04.4615821Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-07-24T05:25:04.4619226Z adding 'torch/include/ATen/ops/dropout.h' 2025-07-24T05:25:04.4622607Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4625724Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-07-24T05:25:04.4629089Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-07-24T05:25:04.4632271Z adding 'torch/include/ATen/ops/dsplit.h' 2025-07-24T05:25:04.4635734Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4638752Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-07-24T05:25:04.4642040Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-07-24T05:25:04.4645281Z adding 'torch/include/ATen/ops/dstack.h' 2025-07-24T05:25:04.4649015Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4651984Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-07-24T05:25:04.4655116Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-07-24T05:25:04.4658287Z adding 'torch/include/ATen/ops/einsum.h' 2025-07-24T05:25:04.4661611Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4664591Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-07-24T05:25:04.4668234Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-07-24T05:25:04.4671547Z adding 'torch/include/ATen/ops/elu.h' 2025-07-24T05:25:04.4674789Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-07-24T05:25:04.4678262Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.4681315Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-07-24T05:25:04.4684543Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-07-24T05:25:04.4688027Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-07-24T05:25:04.4691445Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-07-24T05:25:04.4694382Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-07-24T05:25:04.4697736Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-07-24T05:25:04.4701176Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.4704240Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-07-24T05:25:04.4707747Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-07-24T05:25:04.4710829Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-07-24T05:25:04.4714061Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-07-24T05:25:04.4717448Z adding 'torch/include/ATen/ops/elu_native.h' 2025-07-24T05:25:04.4720825Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-07-24T05:25:04.4724517Z adding 'torch/include/ATen/ops/embedding.h' 2025-07-24T05:25:04.4728069Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-07-24T05:25:04.4731699Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4734876Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-07-24T05:25:04.4738128Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-07-24T05:25:04.4741596Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-07-24T05:25:04.4745413Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4748650Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-07-24T05:25:04.4751995Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-07-24T05:25:04.4755708Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4759340Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-07-24T05:25:04.4762971Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4766502Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-07-24T05:25:04.4769773Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-07-24T05:25:04.4772933Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-07-24T05:25:04.4776398Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-07-24T05:25:04.4779632Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-07-24T05:25:04.4783305Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-07-24T05:25:04.4786767Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-07-24T05:25:04.4790330Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4793510Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-07-24T05:25:04.4796867Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-07-24T05:25:04.4800152Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-07-24T05:25:04.4803272Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-07-24T05:25:04.4806910Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-07-24T05:25:04.4810210Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-07-24T05:25:04.4813746Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4816825Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-07-24T05:25:04.4820532Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-07-24T05:25:04.4824878Z adding 'torch/include/ATen/ops/empty.h' 2025-07-24T05:25:04.4829035Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4832831Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.4836514Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-07-24T05:25:04.4841710Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-07-24T05:25:04.4845781Z adding 'torch/include/ATen/ops/empty_like.h' 2025-07-24T05:25:04.4849863Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4853331Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-07-24T05:25:04.4856948Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-07-24T05:25:04.4860460Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-07-24T05:25:04.4864033Z adding 'torch/include/ATen/ops/empty_native.h' 2025-07-24T05:25:04.4868052Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-07-24T05:25:04.4871930Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-07-24T05:25:04.4875845Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4878936Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-07-24T05:25:04.4882574Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-07-24T05:25:04.4886157Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-07-24T05:25:04.4889746Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4893008Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-07-24T05:25:04.4896438Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-07-24T05:25:04.4900141Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-07-24T05:25:04.4903718Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.4907045Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-07-24T05:25:04.4910589Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-07-24T05:25:04.4913980Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-07-24T05:25:04.4917182Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-07-24T05:25:04.4920484Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-07-24T05:25:04.4923757Z adding 'torch/include/ATen/ops/eq.h' 2025-07-24T05:25:04.4927214Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.4930280Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-07-24T05:25:04.4933493Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-07-24T05:25:04.4936608Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-07-24T05:25:04.4940088Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-07-24T05:25:04.4943224Z adding 'torch/include/ATen/ops/eq_native.h' 2025-07-24T05:25:04.4946842Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-07-24T05:25:04.4950074Z adding 'torch/include/ATen/ops/equal.h' 2025-07-24T05:25:04.4953272Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-07-24T05:25:04.4956396Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-07-24T05:25:04.4959430Z adding 'torch/include/ATen/ops/equal_native.h' 2025-07-24T05:25:04.4962665Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-07-24T05:25:04.4965777Z adding 'torch/include/ATen/ops/erf.h' 2025-07-24T05:25:04.4969179Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.4972178Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-07-24T05:25:04.4975502Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-07-24T05:25:04.4978635Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-07-24T05:25:04.4981845Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-07-24T05:25:04.4986063Z adding 'torch/include/ATen/ops/erf_native.h' 2025-07-24T05:25:04.4989480Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-07-24T05:25:04.4992619Z adding 'torch/include/ATen/ops/erfc.h' 2025-07-24T05:25:04.4996155Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.4999195Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-07-24T05:25:04.5002363Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-07-24T05:25:04.5005425Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-07-24T05:25:04.5008604Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-07-24T05:25:04.5011875Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-07-24T05:25:04.5015100Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-07-24T05:25:04.5018146Z adding 'torch/include/ATen/ops/erfinv.h' 2025-07-24T05:25:04.5021565Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.5024532Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-07-24T05:25:04.5027845Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-07-24T05:25:04.5030913Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-07-24T05:25:04.5034058Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-07-24T05:25:04.5037316Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-07-24T05:25:04.5040623Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-07-24T05:25:04.5043772Z adding 'torch/include/ATen/ops/exp.h' 2025-07-24T05:25:04.5046978Z adding 'torch/include/ATen/ops/exp2.h' 2025-07-24T05:25:04.5050399Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.5053345Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-07-24T05:25:04.5056467Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-07-24T05:25:04.5059607Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-07-24T05:25:04.5062774Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-07-24T05:25:04.5065864Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-07-24T05:25:04.5069151Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-07-24T05:25:04.5072620Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.5075699Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-07-24T05:25:04.5078861Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-07-24T05:25:04.5081819Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-07-24T05:25:04.5084934Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-07-24T05:25:04.5087979Z adding 'torch/include/ATen/ops/exp_native.h' 2025-07-24T05:25:04.5091238Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-07-24T05:25:04.5094581Z adding 'torch/include/ATen/ops/expand.h' 2025-07-24T05:25:04.5097877Z adding 'torch/include/ATen/ops/expand_as.h' 2025-07-24T05:25:04.5101196Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5104155Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-07-24T05:25:04.5107538Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-07-24T05:25:04.5110958Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.5114297Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-07-24T05:25:04.5117734Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.5121000Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.5123931Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-07-24T05:25:04.5127249Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-07-24T05:25:04.5130316Z adding 'torch/include/ATen/ops/expand_native.h' 2025-07-24T05:25:04.5133533Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-07-24T05:25:04.5136672Z adding 'torch/include/ATen/ops/expm1.h' 2025-07-24T05:25:04.5140067Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.5143050Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-07-24T05:25:04.5146359Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-07-24T05:25:04.5149418Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-07-24T05:25:04.5152635Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-07-24T05:25:04.5156015Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-07-24T05:25:04.5159384Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-07-24T05:25:04.5162607Z adding 'torch/include/ATen/ops/exponential.h' 2025-07-24T05:25:04.5165998Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.5169165Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-07-24T05:25:04.5172169Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-07-24T05:25:04.5175322Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-07-24T05:25:04.5178584Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-07-24T05:25:04.5181905Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-07-24T05:25:04.5185871Z adding 'torch/include/ATen/ops/eye.h' 2025-07-24T05:25:04.5189574Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.5192722Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-07-24T05:25:04.5195951Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-07-24T05:25:04.5199380Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-07-24T05:25:04.5202717Z adding 'torch/include/ATen/ops/eye_native.h' 2025-07-24T05:25:04.5206196Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-07-24T05:25:04.5209666Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-07-24T05:25:04.5213068Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-07-24T05:25:04.5216278Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-07-24T05:25:04.5219878Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5222880Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-07-24T05:25:04.5233345Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-07-24T05:25:04.5235636Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.5238600Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-07-24T05:25:04.5242046Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-07-24T05:25:04.5245132Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-07-24T05:25:04.5248650Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-07-24T05:25:04.5252516Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5255682Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-07-24T05:25:04.5259010Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-07-24T05:25:04.5262292Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-07-24T05:25:04.5265845Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-07-24T05:25:04.5269160Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-07-24T05:25:04.5272660Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5275701Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-07-24T05:25:04.5279020Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-07-24T05:25:04.5282502Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.5285694Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-07-24T05:25:04.5289000Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-07-24T05:25:04.5292188Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-07-24T05:25:04.5295582Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-07-24T05:25:04.5299277Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5302541Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-07-24T05:25:04.5305895Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-07-24T05:25:04.5309143Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-07-24T05:25:04.5312550Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5315707Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-07-24T05:25:04.5319092Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5322134Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-07-24T05:25:04.5325395Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-07-24T05:25:04.5328513Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-07-24T05:25:04.5331986Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-07-24T05:25:04.5335206Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-07-24T05:25:04.5338640Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5341804Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-07-24T05:25:04.5345443Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5348516Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-07-24T05:25:04.5352294Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-07-24T05:25:04.5355314Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-07-24T05:25:04.5358619Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-07-24T05:25:04.5361828Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-07-24T05:25:04.5365270Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5368267Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-07-24T05:25:04.5371493Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-07-24T05:25:04.5374629Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-07-24T05:25:04.5378020Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5380981Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-07-24T05:25:04.5384180Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-07-24T05:25:04.5387570Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-07-24T05:25:04.5391041Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5394005Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-07-24T05:25:04.5397351Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-07-24T05:25:04.5400542Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-07-24T05:25:04.5404277Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5407296Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-07-24T05:25:04.5410788Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-07-24T05:25:04.5414167Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-07-24T05:25:04.5417605Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5427549Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-07-24T05:25:04.5430954Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-07-24T05:25:04.5434704Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-07-24T05:25:04.5438636Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-07-24T05:25:04.5442437Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5445549Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-07-24T05:25:04.5448894Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-07-24T05:25:04.5452637Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5455985Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-07-24T05:25:04.5459181Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-07-24T05:25:04.5462762Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-07-24T05:25:04.5466448Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.5469642Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-07-24T05:25:04.5473010Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-07-24T05:25:04.5476735Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-07-24T05:25:04.5480674Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5483667Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-07-24T05:25:04.5487220Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-07-24T05:25:04.5490410Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-07-24T05:25:04.5493938Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5496931Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-07-24T05:25:04.5500303Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-07-24T05:25:04.5504069Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-07-24T05:25:04.5507734Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-07-24T05:25:04.5511566Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5514576Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-07-24T05:25:04.5518146Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-07-24T05:25:04.5521971Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5524759Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-07-24T05:25:04.5528339Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-07-24T05:25:04.5531852Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-07-24T05:25:04.5536204Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5539644Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-07-24T05:25:04.5542882Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-07-24T05:25:04.5546676Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-07-24T05:25:04.5550345Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-07-24T05:25:04.5554096Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5557397Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-07-24T05:25:04.5560792Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-07-24T05:25:04.5565084Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5568422Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-07-24T05:25:04.5572238Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-07-24T05:25:04.5576262Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-07-24T05:25:04.5580510Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5583869Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-07-24T05:25:04.5587793Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-07-24T05:25:04.5591426Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-07-24T05:25:04.5595412Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5598644Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-07-24T05:25:04.5602331Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-07-24T05:25:04.5605927Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-07-24T05:25:04.5609943Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-07-24T05:25:04.5613688Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5617018Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-07-24T05:25:04.5620257Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-07-24T05:25:04.5624101Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5627150Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-07-24T05:25:04.5630459Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-07-24T05:25:04.5634270Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-07-24T05:25:04.5637965Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5641027Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-07-24T05:25:04.5644389Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-07-24T05:25:04.5647909Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-07-24T05:25:04.5651891Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-07-24T05:25:04.5655819Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5658962Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-07-24T05:25:04.5662325Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-07-24T05:25:04.5665966Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5669023Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-07-24T05:25:04.5672382Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-07-24T05:25:04.5675995Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-07-24T05:25:04.5679634Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5682945Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-07-24T05:25:04.5686346Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-07-24T05:25:04.5689901Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-07-24T05:25:04.5693579Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-07-24T05:25:04.5697167Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5700210Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-07-24T05:25:04.5703571Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-07-24T05:25:04.5707214Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5710235Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-07-24T05:25:04.5713614Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-07-24T05:25:04.5716973Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-07-24T05:25:04.5720443Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.5723597Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-07-24T05:25:04.5726965Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-07-24T05:25:04.5730553Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-07-24T05:25:04.5734175Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5737190Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-07-24T05:25:04.5740515Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-07-24T05:25:04.5743841Z adding 'torch/include/ATen/ops/fill.h' 2025-07-24T05:25:04.5747398Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.5750512Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-07-24T05:25:04.5753692Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-07-24T05:25:04.5757095Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-07-24T05:25:04.5760164Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5763116Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-07-24T05:25:04.5766334Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-07-24T05:25:04.5770610Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-07-24T05:25:04.5774308Z adding 'torch/include/ATen/ops/fill_native.h' 2025-07-24T05:25:04.5777490Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-07-24T05:25:04.5780739Z adding 'torch/include/ATen/ops/fix.h' 2025-07-24T05:25:04.5784161Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5787329Z adding 'torch/include/ATen/ops/fix_native.h' 2025-07-24T05:25:04.5790631Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-07-24T05:25:04.5793964Z adding 'torch/include/ATen/ops/flatten.h' 2025-07-24T05:25:04.5797379Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5800547Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-07-24T05:25:04.5803946Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5806961Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-07-24T05:25:04.5810171Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-07-24T05:25:04.5813273Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-07-24T05:25:04.5816708Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-07-24T05:25:04.5819945Z adding 'torch/include/ATen/ops/flip.h' 2025-07-24T05:25:04.5823307Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.5826499Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-07-24T05:25:04.5829653Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-07-24T05:25:04.5832780Z adding 'torch/include/ATen/ops/flip_native.h' 2025-07-24T05:25:04.5836096Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-07-24T05:25:04.5839264Z adding 'torch/include/ATen/ops/fliplr.h' 2025-07-24T05:25:04.5842615Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5845589Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-07-24T05:25:04.5848797Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-07-24T05:25:04.5851929Z adding 'torch/include/ATen/ops/flipud.h' 2025-07-24T05:25:04.5855257Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5858188Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-07-24T05:25:04.5861457Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-07-24T05:25:04.5864938Z adding 'torch/include/ATen/ops/float_power.h' 2025-07-24T05:25:04.5868508Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.5871590Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-07-24T05:25:04.5875225Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-07-24T05:25:04.5878535Z adding 'torch/include/ATen/ops/floor.h' 2025-07-24T05:25:04.5882125Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.5885168Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-07-24T05:25:04.5888494Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-07-24T05:25:04.5891812Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-07-24T05:25:04.5895651Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.5900582Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-07-24T05:25:04.5908268Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-07-24T05:25:04.5911676Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-07-24T05:25:04.5914876Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-07-24T05:25:04.5918990Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-07-24T05:25:04.5922150Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-07-24T05:25:04.5925400Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-07-24T05:25:04.5928665Z adding 'torch/include/ATen/ops/floor_native.h' 2025-07-24T05:25:04.5932008Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-07-24T05:25:04.5935394Z adding 'torch/include/ATen/ops/fmax.h' 2025-07-24T05:25:04.5938976Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.5942044Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-07-24T05:25:04.5945426Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-07-24T05:25:04.5948695Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-07-24T05:25:04.5952044Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-07-24T05:25:04.5955168Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-07-24T05:25:04.5958556Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-07-24T05:25:04.5961773Z adding 'torch/include/ATen/ops/fmin.h' 2025-07-24T05:25:04.5965370Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.5968399Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-07-24T05:25:04.5971767Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-07-24T05:25:04.5975036Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-07-24T05:25:04.5978294Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-07-24T05:25:04.5981509Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-07-24T05:25:04.5984920Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-07-24T05:25:04.5988425Z adding 'torch/include/ATen/ops/fmod.h' 2025-07-24T05:25:04.5991858Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.5995330Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.5998414Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-07-24T05:25:04.6001783Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-07-24T05:25:04.6005043Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-07-24T05:25:04.6008315Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-07-24T05:25:04.6011874Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-07-24T05:25:04.6015142Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-07-24T05:25:04.6018548Z adding 'torch/include/ATen/ops/frac.h' 2025-07-24T05:25:04.6022053Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6025342Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-07-24T05:25:04.6028633Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-07-24T05:25:04.6031861Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-07-24T05:25:04.6035230Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-07-24T05:25:04.6038411Z adding 'torch/include/ATen/ops/frac_native.h' 2025-07-24T05:25:04.6041871Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-07-24T05:25:04.6045262Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-07-24T05:25:04.6048805Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-07-24T05:25:04.6052444Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6055712Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-07-24T05:25:04.6059142Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-07-24T05:25:04.6062279Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-07-24T05:25:04.6065802Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-07-24T05:25:04.6068951Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-07-24T05:25:04.6072758Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-07-24T05:25:04.6076966Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6080940Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-07-24T05:25:04.6084923Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-07-24T05:25:04.6088549Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-07-24T05:25:04.6092182Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-07-24T05:25:04.6096050Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-07-24T05:25:04.6099037Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-07-24T05:25:04.6102339Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-07-24T05:25:04.6106081Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-07-24T05:25:04.6109506Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-07-24T05:25:04.6112993Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-07-24T05:25:04.6116356Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-07-24T05:25:04.6119859Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-07-24T05:25:04.6130436Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6131233Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-07-24T05:25:04.6131785Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-07-24T05:25:04.6134163Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-07-24T05:25:04.6137632Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-07-24T05:25:04.6140804Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-07-24T05:25:04.6144359Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-07-24T05:25:04.6147774Z adding 'torch/include/ATen/ops/frexp.h' 2025-07-24T05:25:04.6151128Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.6154227Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-07-24T05:25:04.6157422Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-07-24T05:25:04.6160503Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-07-24T05:25:04.6163788Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-07-24T05:25:04.6167049Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-07-24T05:25:04.6170440Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.6173423Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-07-24T05:25:04.6177236Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-07-24T05:25:04.6180710Z adding 'torch/include/ATen/ops/from_blob.h' 2025-07-24T05:25:04.6184157Z adding 'torch/include/ATen/ops/from_file.h' 2025-07-24T05:25:04.6187779Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.6191061Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-07-24T05:25:04.6193985Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-07-24T05:25:04.6197382Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-07-24T05:25:04.6201194Z adding 'torch/include/ATen/ops/full.h' 2025-07-24T05:25:04.6209384Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.6212709Z adding 'torch/include/ATen/ops/full_like.h' 2025-07-24T05:25:04.6216324Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.6219285Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-07-24T05:25:04.6222680Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-07-24T05:25:04.6226132Z adding 'torch/include/ATen/ops/full_native.h' 2025-07-24T05:25:04.6229720Z adding 'torch/include/ATen/ops/full_ops.h' 2025-07-24T05:25:04.6233400Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-07-24T05:25:04.6236866Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.6239905Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-07-24T05:25:04.6243355Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-07-24T05:25:04.6246497Z adding 'torch/include/ATen/ops/gather.h' 2025-07-24T05:25:04.6249727Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-07-24T05:25:04.6253697Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.6255952Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-07-24T05:25:04.6259138Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-07-24T05:25:04.6262532Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6265857Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.6268999Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-07-24T05:25:04.6272173Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-07-24T05:25:04.6275254Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-07-24T05:25:04.6278465Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-07-24T05:25:04.6281570Z adding 'torch/include/ATen/ops/gather_native.h' 2025-07-24T05:25:04.6284980Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-07-24T05:25:04.6288226Z adding 'torch/include/ATen/ops/gcd.h' 2025-07-24T05:25:04.6291623Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6294676Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-07-24T05:25:04.6297868Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-07-24T05:25:04.6300929Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-07-24T05:25:04.6304102Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-07-24T05:25:04.6307294Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-07-24T05:25:04.6310585Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-07-24T05:25:04.6313857Z adding 'torch/include/ATen/ops/ge.h' 2025-07-24T05:25:04.6317313Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6320366Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-07-24T05:25:04.6323606Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-07-24T05:25:04.6326714Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-07-24T05:25:04.6329937Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-07-24T05:25:04.6333272Z adding 'torch/include/ATen/ops/ge_native.h' 2025-07-24T05:25:04.6336804Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-07-24T05:25:04.6340375Z adding 'torch/include/ATen/ops/gelu.h' 2025-07-24T05:25:04.6343673Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-07-24T05:25:04.6347503Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6350809Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-07-24T05:25:04.6353938Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-07-24T05:25:04.6357194Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-07-24T05:25:04.6360451Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-07-24T05:25:04.6363782Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-07-24T05:25:04.6367197Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-07-24T05:25:04.6370849Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6373957Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-07-24T05:25:04.6377261Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-07-24T05:25:04.6380480Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-07-24T05:25:04.6383681Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-07-24T05:25:04.6387132Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-07-24T05:25:04.6390523Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-07-24T05:25:04.6393947Z adding 'torch/include/ATen/ops/geometric.h' 2025-07-24T05:25:04.6397793Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.6400806Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-07-24T05:25:04.6404113Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-07-24T05:25:04.6408131Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-07-24T05:25:04.6410603Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-07-24T05:25:04.6413778Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-07-24T05:25:04.6417330Z adding 'torch/include/ATen/ops/geqrf.h' 2025-07-24T05:25:04.6420514Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-07-24T05:25:04.6423896Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-07-24T05:25:04.6427316Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-07-24T05:25:04.6430518Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-07-24T05:25:04.6433983Z adding 'torch/include/ATen/ops/ger.h' 2025-07-24T05:25:04.6437269Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.6440224Z adding 'torch/include/ATen/ops/ger_native.h' 2025-07-24T05:25:04.6443464Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-07-24T05:25:04.6446977Z adding 'torch/include/ATen/ops/glu.h' 2025-07-24T05:25:04.6450149Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-07-24T05:25:04.6453574Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-07-24T05:25:04.6456925Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-07-24T05:25:04.6460379Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-07-24T05:25:04.6467865Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.6471168Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-07-24T05:25:04.6474510Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-07-24T05:25:04.6477821Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-07-24T05:25:04.6481244Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-07-24T05:25:04.6484936Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-07-24T05:25:04.6488517Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-07-24T05:25:04.6493156Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6495261Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-07-24T05:25:04.6498979Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-07-24T05:25:04.6501773Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-07-24T05:25:04.6505397Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.6508476Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-07-24T05:25:04.6511883Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-07-24T05:25:04.6514950Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-07-24T05:25:04.6518439Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-07-24T05:25:04.6522568Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-07-24T05:25:04.6525031Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-07-24T05:25:04.6528547Z adding 'torch/include/ATen/ops/glu_native.h' 2025-07-24T05:25:04.6531623Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-07-24T05:25:04.6535212Z adding 'torch/include/ATen/ops/gradient.h' 2025-07-24T05:25:04.6540185Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.6542204Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-07-24T05:25:04.6546307Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-07-24T05:25:04.6549617Z adding 'torch/include/ATen/ops/greater.h' 2025-07-24T05:25:04.6554041Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.6558067Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-07-24T05:25:04.6560865Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.6564101Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-07-24T05:25:04.6567601Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-07-24T05:25:04.6571012Z adding 'torch/include/ATen/ops/greater_native.h' 2025-07-24T05:25:04.6580399Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-07-24T05:25:04.6581358Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-07-24T05:25:04.6582018Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-07-24T05:25:04.6585447Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-07-24T05:25:04.6612545Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.6613211Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-07-24T05:25:04.6613864Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-07-24T05:25:04.6614378Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-07-24T05:25:04.6614957Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-07-24T05:25:04.6615517Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.6616094Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-07-24T05:25:04.6616556Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-07-24T05:25:04.6618844Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-07-24T05:25:04.6621379Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-07-24T05:25:04.6625121Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-07-24T05:25:04.6628349Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-07-24T05:25:04.6632037Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.6635174Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-07-24T05:25:04.6638399Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-07-24T05:25:04.6641876Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-07-24T05:25:04.6645490Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-07-24T05:25:04.6648758Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.6651886Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-07-24T05:25:04.6655056Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-07-24T05:25:04.6658305Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-07-24T05:25:04.6661717Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-07-24T05:25:04.6665211Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.6668194Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-07-24T05:25:04.6671435Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-07-24T05:25:04.6674661Z adding 'torch/include/ATen/ops/group_norm.h' 2025-07-24T05:25:04.6678030Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.6681030Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-07-24T05:25:04.6684247Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-07-24T05:25:04.6687488Z adding 'torch/include/ATen/ops/gru.h' 2025-07-24T05:25:04.6690870Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-07-24T05:25:04.6694310Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.6697243Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-07-24T05:25:04.6700638Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-07-24T05:25:04.6704014Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.6707212Z adding 'torch/include/ATen/ops/gru_native.h' 2025-07-24T05:25:04.6710627Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-07-24T05:25:04.6714002Z adding 'torch/include/ATen/ops/gt.h' 2025-07-24T05:25:04.6717705Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6720560Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-07-24T05:25:04.6723757Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-07-24T05:25:04.6726828Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-07-24T05:25:04.6730086Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-07-24T05:25:04.6733481Z adding 'torch/include/ATen/ops/gt_native.h' 2025-07-24T05:25:04.6737237Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-07-24T05:25:04.6740832Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-07-24T05:25:04.6744562Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.6748348Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-07-24T05:25:04.6752039Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-07-24T05:25:04.6755623Z adding 'torch/include/ATen/ops/hann_window.h' 2025-07-24T05:25:04.6759135Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.6762143Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-07-24T05:25:04.6765599Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-07-24T05:25:04.6768914Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-07-24T05:25:04.6772154Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-07-24T05:25:04.6775668Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6778676Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-07-24T05:25:04.6781863Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-07-24T05:25:04.6785038Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-07-24T05:25:04.6788293Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-07-24T05:25:04.6791406Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-07-24T05:25:04.6794689Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-07-24T05:25:04.6798114Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6801160Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-07-24T05:25:04.6804366Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-07-24T05:25:04.6807488Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-07-24T05:25:04.6810694Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-07-24T05:25:04.6813795Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-07-24T05:25:04.6817098Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-07-24T05:25:04.6820293Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-07-24T05:25:04.6823531Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-07-24T05:25:04.6827194Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6830232Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-07-24T05:25:04.6833506Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-07-24T05:25:04.6836590Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-07-24T05:25:04.6839832Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-07-24T05:25:04.6842922Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-07-24T05:25:04.6846211Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-07-24T05:25:04.6849857Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6852927Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-07-24T05:25:04.6856568Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-07-24T05:25:04.6859535Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-07-24T05:25:04.6862818Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-07-24T05:25:04.6866295Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-07-24T05:25:04.6870645Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-07-24T05:25:04.6875135Z adding 'torch/include/ATen/ops/hardswish.h' 2025-07-24T05:25:04.6878654Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-07-24T05:25:04.6882533Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.6885780Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-07-24T05:25:04.6889652Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-07-24T05:25:04.6892703Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-07-24T05:25:04.6896544Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-07-24T05:25:04.6899842Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-07-24T05:25:04.6903218Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-07-24T05:25:04.6906520Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-07-24T05:25:04.6910168Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-07-24T05:25:04.6913871Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-07-24T05:25:04.6917680Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-07-24T05:25:04.6921394Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-07-24T05:25:04.6925117Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-07-24T05:25:04.6928737Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-07-24T05:25:04.6932269Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-07-24T05:25:04.6936022Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-07-24T05:25:04.6939807Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-07-24T05:25:04.6943418Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-07-24T05:25:04.6947208Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-07-24T05:25:04.6950669Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-07-24T05:25:04.6954067Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-07-24T05:25:04.6957554Z adding 'torch/include/ATen/ops/heaviside.h' 2025-07-24T05:25:04.6961258Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.6964458Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-07-24T05:25:04.6967770Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-07-24T05:25:04.6970913Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-07-24T05:25:04.6974196Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-07-24T05:25:04.6977516Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-07-24T05:25:04.6980879Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-07-24T05:25:04.6984143Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-07-24T05:25:04.6987956Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.6990986Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-07-24T05:25:04.6994202Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-07-24T05:25:04.6997434Z adding 'torch/include/ATen/ops/histc.h' 2025-07-24T05:25:04.7000657Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-07-24T05:25:04.7004074Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-07-24T05:25:04.7007219Z adding 'torch/include/ATen/ops/histc_native.h' 2025-07-24T05:25:04.7010536Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-07-24T05:25:04.7013969Z adding 'torch/include/ATen/ops/histogram.h' 2025-07-24T05:25:04.7017396Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-07-24T05:25:04.7020564Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-07-24T05:25:04.7024160Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-07-24T05:25:04.7027791Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-07-24T05:25:04.7031266Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7034540Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-07-24T05:25:04.7038024Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-07-24T05:25:04.7041280Z adding 'torch/include/ATen/ops/hsplit.h' 2025-07-24T05:25:04.7044596Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7047666Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-07-24T05:25:04.7050824Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-07-24T05:25:04.7054002Z adding 'torch/include/ATen/ops/hspmm.h' 2025-07-24T05:25:04.7057155Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-07-24T05:25:04.7060393Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-07-24T05:25:04.7063538Z adding 'torch/include/ATen/ops/hstack.h' 2025-07-24T05:25:04.7067167Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7070136Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-07-24T05:25:04.7073404Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-07-24T05:25:04.7076664Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-07-24T05:25:04.7079963Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-07-24T05:25:04.7083358Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.7086473Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-07-24T05:25:04.7089640Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-07-24T05:25:04.7092692Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-07-24T05:25:04.7096006Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-07-24T05:25:04.7099227Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-07-24T05:25:04.7102440Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-07-24T05:25:04.7105654Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-07-24T05:25:04.7108945Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-07-24T05:25:04.7112126Z adding 'torch/include/ATen/ops/hypot.h' 2025-07-24T05:25:04.7115511Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.7118505Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-07-24T05:25:04.7121673Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-07-24T05:25:04.7124767Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-07-24T05:25:04.7127942Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-07-24T05:25:04.7131014Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-07-24T05:25:04.7134310Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-07-24T05:25:04.7137537Z adding 'torch/include/ATen/ops/i0.h' 2025-07-24T05:25:04.7140922Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.7143922Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-07-24T05:25:04.7147326Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-07-24T05:25:04.7150315Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-07-24T05:25:04.7153488Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-07-24T05:25:04.7156555Z adding 'torch/include/ATen/ops/i0_native.h' 2025-07-24T05:25:04.7159835Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-07-24T05:25:04.7163063Z adding 'torch/include/ATen/ops/igamma.h' 2025-07-24T05:25:04.7166464Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.7169467Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-07-24T05:25:04.7172623Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-07-24T05:25:04.7175680Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-07-24T05:25:04.7178845Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-07-24T05:25:04.7181952Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-07-24T05:25:04.7185402Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-07-24T05:25:04.7188608Z adding 'torch/include/ATen/ops/igammac.h' 2025-07-24T05:25:04.7192038Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.7195044Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-07-24T05:25:04.7198212Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-07-24T05:25:04.7201340Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-07-24T05:25:04.7204470Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-07-24T05:25:04.7207501Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-07-24T05:25:04.7210811Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-07-24T05:25:04.7214053Z adding 'torch/include/ATen/ops/im2col.h' 2025-07-24T05:25:04.7217319Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-07-24T05:25:04.7220508Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-07-24T05:25:04.7224319Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-07-24T05:25:04.7227824Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-07-24T05:25:04.7230984Z adding 'torch/include/ATen/ops/imag.h' 2025-07-24T05:25:04.7234503Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7237624Z adding 'torch/include/ATen/ops/imag_native.h' 2025-07-24T05:25:04.7240897Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-07-24T05:25:04.7244270Z adding 'torch/include/ATen/ops/index.h' 2025-07-24T05:25:04.7247653Z adding 'torch/include/ATen/ops/index_add.h' 2025-07-24T05:25:04.7251430Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.7254573Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7257876Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-07-24T05:25:04.7261259Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-07-24T05:25:04.7264688Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-07-24T05:25:04.7268199Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-07-24T05:25:04.7271363Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-07-24T05:25:04.7275024Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-07-24T05:25:04.7278533Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.7281769Z adding 'torch/include/ATen/ops/index_copy.h' 2025-07-24T05:25:04.7285413Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.7288624Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7291908Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-07-24T05:25:04.7295156Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-07-24T05:25:04.7298597Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-07-24T05:25:04.7301864Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-07-24T05:25:04.7305258Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-07-24T05:25:04.7308900Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-07-24T05:25:04.7312599Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-07-24T05:25:04.7316051Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-07-24T05:25:04.7319435Z adding 'torch/include/ATen/ops/index_fill.h' 2025-07-24T05:25:04.7330120Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.7333680Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7336847Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-07-24T05:25:04.7340281Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-07-24T05:25:04.7343565Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-07-24T05:25:04.7346987Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-07-24T05:25:04.7351048Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-07-24T05:25:04.7354636Z adding 'torch/include/ATen/ops/index_meta.h' 2025-07-24T05:25:04.7358121Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-07-24T05:25:04.7361244Z adding 'torch/include/ATen/ops/index_native.h' 2025-07-24T05:25:04.7364779Z adding 'torch/include/ATen/ops/index_ops.h' 2025-07-24T05:25:04.7368250Z adding 'torch/include/ATen/ops/index_put.h' 2025-07-24T05:25:04.7371910Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.7374958Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-07-24T05:25:04.7378388Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-07-24T05:25:04.7381884Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-07-24T05:25:04.7385530Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.7388766Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-07-24T05:25:04.7392094Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-07-24T05:25:04.7395479Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-07-24T05:25:04.7398906Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-07-24T05:25:04.7402114Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-07-24T05:25:04.7405667Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-07-24T05:25:04.7409014Z adding 'torch/include/ATen/ops/index_select.h' 2025-07-24T05:25:04.7412510Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-07-24T05:25:04.7415950Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7419098Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-07-24T05:25:04.7422465Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-07-24T05:25:04.7425978Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7429188Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-07-24T05:25:04.7432426Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-07-24T05:25:04.7435733Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-07-24T05:25:04.7439196Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-07-24T05:25:04.7442504Z adding 'torch/include/ATen/ops/indices.h' 2025-07-24T05:25:04.7445879Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.7449079Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-07-24T05:25:04.7452414Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.7455830Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.7458817Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-07-24T05:25:04.7462114Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-07-24T05:25:04.7465392Z adding 'torch/include/ATen/ops/indices_native.h' 2025-07-24T05:25:04.7468697Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-07-24T05:25:04.7472186Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-07-24T05:25:04.7475640Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7479159Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-07-24T05:25:04.7482051Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-07-24T05:25:04.7485233Z adding 'torch/include/ATen/ops/inner.h' 2025-07-24T05:25:04.7488613Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7491729Z adding 'torch/include/ATen/ops/inner_native.h' 2025-07-24T05:25:04.7495025Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-07-24T05:25:04.7498604Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-07-24T05:25:04.7502119Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7505297Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-07-24T05:25:04.7508775Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-07-24T05:25:04.7512028Z adding 'torch/include/ATen/ops/int_repr.h' 2025-07-24T05:25:04.7515561Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.7518584Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-07-24T05:25:04.7522397Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-07-24T05:25:04.7525424Z adding 'torch/include/ATen/ops/inverse.h' 2025-07-24T05:25:04.7528820Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7531940Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-07-24T05:25:04.7535238Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-07-24T05:25:04.7538329Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-07-24T05:25:04.7541715Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.7544935Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-07-24T05:25:04.7548146Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-07-24T05:25:04.7551278Z adding 'torch/include/ATen/ops/is_complex.h' 2025-07-24T05:25:04.7554607Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7557718Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-07-24T05:25:04.7560978Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-07-24T05:25:04.7564106Z adding 'torch/include/ATen/ops/is_conj.h' 2025-07-24T05:25:04.7567390Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7570345Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-07-24T05:25:04.7573521Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-07-24T05:25:04.7576638Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-07-24T05:25:04.7579900Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7582971Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-07-24T05:25:04.7586397Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-07-24T05:25:04.7589731Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-07-24T05:25:04.7593147Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7596114Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-07-24T05:25:04.7599264Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-07-24T05:25:04.7602360Z adding 'torch/include/ATen/ops/is_inference.h' 2025-07-24T05:25:04.7605648Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7608542Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-07-24T05:25:04.7611683Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-07-24T05:25:04.7614733Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-07-24T05:25:04.7622770Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7625891Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-07-24T05:25:04.7629104Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-07-24T05:25:04.7632208Z adding 'torch/include/ATen/ops/is_neg.h' 2025-07-24T05:25:04.7635498Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7638465Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-07-24T05:25:04.7641602Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-07-24T05:25:04.7644782Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-07-24T05:25:04.7648258Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7651188Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-07-24T05:25:04.7654358Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-07-24T05:25:04.7657401Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-07-24T05:25:04.7660694Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.7663642Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-07-24T05:25:04.7666983Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-07-24T05:25:04.7670191Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-07-24T05:25:04.7673486Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.7676536Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-07-24T05:25:04.7679690Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-07-24T05:25:04.7682688Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-07-24T05:25:04.7685925Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-07-24T05:25:04.7689030Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-07-24T05:25:04.7692050Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-07-24T05:25:04.7695251Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-07-24T05:25:04.7698291Z adding 'torch/include/ATen/ops/is_signed.h' 2025-07-24T05:25:04.7701562Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7704477Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-07-24T05:25:04.7707788Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-07-24T05:25:04.7710940Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-07-24T05:25:04.7714311Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7717284Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-07-24T05:25:04.7720328Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-07-24T05:25:04.7723418Z adding 'torch/include/ATen/ops/isclose.h' 2025-07-24T05:25:04.7726705Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7729641Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-07-24T05:25:04.7732906Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-07-24T05:25:04.7736214Z adding 'torch/include/ATen/ops/isfinite.h' 2025-07-24T05:25:04.7740231Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7743102Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-07-24T05:25:04.7746659Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-07-24T05:25:04.7750308Z adding 'torch/include/ATen/ops/isin.h' 2025-07-24T05:25:04.7754468Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.7757700Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-07-24T05:25:04.7761989Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-07-24T05:25:04.7765918Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-07-24T05:25:04.7769846Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-07-24T05:25:04.7773523Z adding 'torch/include/ATen/ops/isin_native.h' 2025-07-24T05:25:04.7777485Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-07-24T05:25:04.7781292Z adding 'torch/include/ATen/ops/isinf.h' 2025-07-24T05:25:04.7785245Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.7788593Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-07-24T05:25:04.7792367Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-07-24T05:25:04.7795708Z adding 'torch/include/ATen/ops/isnan.h' 2025-07-24T05:25:04.7799780Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.7803302Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-07-24T05:25:04.7806719Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-07-24T05:25:04.7810238Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-07-24T05:25:04.7813927Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-07-24T05:25:04.7817485Z adding 'torch/include/ATen/ops/isneginf.h' 2025-07-24T05:25:04.7821488Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.7824837Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-07-24T05:25:04.7828596Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-07-24T05:25:04.7832023Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-07-24T05:25:04.7835536Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-07-24T05:25:04.7839038Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-07-24T05:25:04.7842685Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-07-24T05:25:04.7846231Z adding 'torch/include/ATen/ops/isposinf.h' 2025-07-24T05:25:04.7850099Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.7853551Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-07-24T05:25:04.7856899Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-07-24T05:25:04.7860330Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-07-24T05:25:04.7864280Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-07-24T05:25:04.7868133Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-07-24T05:25:04.7872426Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-07-24T05:25:04.7876165Z adding 'torch/include/ATen/ops/isreal.h' 2025-07-24T05:25:04.7880064Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7883287Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-07-24T05:25:04.7886345Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-07-24T05:25:04.7889820Z adding 'torch/include/ATen/ops/istft.h' 2025-07-24T05:25:04.7893324Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7896461Z adding 'torch/include/ATen/ops/istft_native.h' 2025-07-24T05:25:04.7900542Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-07-24T05:25:04.7903159Z adding 'torch/include/ATen/ops/item.h' 2025-07-24T05:25:04.7906724Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7909855Z adding 'torch/include/ATen/ops/item_native.h' 2025-07-24T05:25:04.7913231Z adding 'torch/include/ATen/ops/item_ops.h' 2025-07-24T05:25:04.7916901Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-07-24T05:25:04.7920679Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.7923959Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-07-24T05:25:04.7927623Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-07-24T05:25:04.7931158Z adding 'torch/include/ATen/ops/kl_div.h' 2025-07-24T05:25:04.7934669Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7937879Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-07-24T05:25:04.7941166Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-07-24T05:25:04.7944454Z adding 'torch/include/ATen/ops/kron.h' 2025-07-24T05:25:04.7948081Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7951051Z adding 'torch/include/ATen/ops/kron_native.h' 2025-07-24T05:25:04.7954508Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-07-24T05:25:04.7958333Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-07-24T05:25:04.7962323Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.7965788Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7968896Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-07-24T05:25:04.7972312Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-07-24T05:25:04.7975477Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-07-24T05:25:04.7979098Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-07-24T05:25:04.7982397Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-07-24T05:25:04.7986141Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.7989311Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-07-24T05:25:04.7992493Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-07-24T05:25:04.7995994Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-07-24T05:25:04.7999453Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.8002677Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-07-24T05:25:04.8006045Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-07-24T05:25:04.8009392Z adding 'torch/include/ATen/ops/lcm.h' 2025-07-24T05:25:04.8013852Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.8016190Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-07-24T05:25:04.8019423Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-07-24T05:25:04.8022511Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-07-24T05:25:04.8025998Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-07-24T05:25:04.8029140Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-07-24T05:25:04.8032616Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-07-24T05:25:04.8035897Z adding 'torch/include/ATen/ops/ldexp.h' 2025-07-24T05:25:04.8039660Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.8042725Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-07-24T05:25:04.8046204Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-07-24T05:25:04.8049604Z adding 'torch/include/ATen/ops/le.h' 2025-07-24T05:25:04.8053136Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.8056359Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-07-24T05:25:04.8059615Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-07-24T05:25:04.8062891Z adding 'torch/include/ATen/ops/le_meta.h' 2025-07-24T05:25:04.8066458Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-07-24T05:25:04.8069786Z adding 'torch/include/ATen/ops/le_native.h' 2025-07-24T05:25:04.8073367Z adding 'torch/include/ATen/ops/le_ops.h' 2025-07-24T05:25:04.8076795Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-07-24T05:25:04.8080252Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-07-24T05:25:04.8083807Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.8087165Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-07-24T05:25:04.8090563Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-07-24T05:25:04.8093879Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-07-24T05:25:04.8097151Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-07-24T05:25:04.8100432Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-07-24T05:25:04.8103800Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-07-24T05:25:04.8108233Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.8111605Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-07-24T05:25:04.8114942Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-07-24T05:25:04.8118020Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-07-24T05:25:04.8121184Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-07-24T05:25:04.8124344Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-07-24T05:25:04.8127970Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-07-24T05:25:04.8131278Z adding 'torch/include/ATen/ops/lerp.h' 2025-07-24T05:25:04.8134877Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.8138106Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-07-24T05:25:04.8141284Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-07-24T05:25:04.8144312Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-07-24T05:25:04.8147739Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-07-24T05:25:04.8150882Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-07-24T05:25:04.8154445Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-07-24T05:25:04.8158058Z adding 'torch/include/ATen/ops/less.h' 2025-07-24T05:25:04.8161550Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.8164822Z adding 'torch/include/ATen/ops/less_equal.h' 2025-07-24T05:25:04.8168241Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.8171447Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-07-24T05:25:04.8175100Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-07-24T05:25:04.8178221Z adding 'torch/include/ATen/ops/less_native.h' 2025-07-24T05:25:04.8181699Z adding 'torch/include/ATen/ops/less_ops.h' 2025-07-24T05:25:04.8185100Z adding 'torch/include/ATen/ops/lgamma.h' 2025-07-24T05:25:04.8188576Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.8191622Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-07-24T05:25:04.8194723Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-07-24T05:25:04.8198420Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-07-24T05:25:04.8201718Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-07-24T05:25:04.8204797Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-07-24T05:25:04.8208095Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-07-24T05:25:04.8211269Z adding 'torch/include/ATen/ops/lift.h' 2025-07-24T05:25:04.8215033Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.8218080Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-07-24T05:25:04.8221273Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.8224326Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-07-24T05:25:04.8227878Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.8231145Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.8234021Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-07-24T05:25:04.8237262Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-07-24T05:25:04.8240696Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-07-24T05:25:04.8243861Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-07-24T05:25:04.8246831Z adding 'torch/include/ATen/ops/lift_native.h' 2025-07-24T05:25:04.8250079Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-07-24T05:25:04.8253314Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-07-24T05:25:04.8256670Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.8259761Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-07-24T05:25:04.8263366Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.8266502Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-07-24T05:25:04.8269658Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-07-24T05:25:04.8272786Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-07-24T05:25:04.8276005Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-07-24T05:25:04.8279142Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-07-24T05:25:04.8282440Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-07-24T05:25:04.8285704Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-07-24T05:25:04.8288892Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-07-24T05:25:04.8292049Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-07-24T05:25:04.8295447Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.8298418Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-07-24T05:25:04.8301831Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-07-24T05:25:04.8305218Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-07-24T05:25:04.8308651Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.8311902Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-07-24T05:25:04.8315136Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-07-24T05:25:04.8318190Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-07-24T05:25:04.8321560Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-07-24T05:25:04.8325513Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-07-24T05:25:04.8328279Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-07-24T05:25:04.8331389Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-07-24T05:25:04.8335010Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.8337923Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-07-24T05:25:04.8341615Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-07-24T05:25:04.8345061Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-07-24T05:25:04.8348300Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.8351651Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-07-24T05:25:04.8354696Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-07-24T05:25:04.8358126Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-07-24T05:25:04.8361373Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-07-24T05:25:04.8364772Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-07-24T05:25:04.8367863Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-07-24T05:25:04.8371397Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-07-24T05:25:04.8374871Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-07-24T05:25:04.8378364Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.8381635Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-07-24T05:25:04.8384854Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-07-24T05:25:04.8388448Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-07-24T05:25:04.8391877Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.8394990Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-07-24T05:25:04.8398328Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-07-24T05:25:04.8401375Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-07-24T05:25:04.8404876Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-07-24T05:25:04.8407959Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-07-24T05:25:04.8411651Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.8414721Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-07-24T05:25:04.8418041Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-07-24T05:25:04.8421454Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-07-24T05:25:04.8425018Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-07-24T05:25:04.8428350Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-07-24T05:25:04.8431552Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-07-24T05:25:04.8435174Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-07-24T05:25:04.8438565Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-07-24T05:25:04.8442170Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.8445061Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-07-24T05:25:04.8448704Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.8451744Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-07-24T05:25:04.8455127Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-07-24T05:25:04.8458403Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-07-24T05:25:04.8461762Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-07-24T05:25:04.8465273Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-07-24T05:25:04.8468339Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-07-24T05:25:04.8471641Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-07-24T05:25:04.8475397Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-07-24T05:25:04.8483704Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-07-24T05:25:04.8484324Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.8488327Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-07-24T05:25:04.8492452Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.8495844Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-07-24T05:25:04.8498874Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-07-24T05:25:04.8502163Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-07-24T05:25:04.8505529Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-07-24T05:25:04.8508857Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-07-24T05:25:04.8512519Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-07-24T05:25:04.8515615Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-07-24T05:25:04.8519269Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-07-24T05:25:04.8522588Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-07-24T05:25:04.8526037Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.8529019Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-07-24T05:25:04.8532401Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-07-24T05:25:04.8535474Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-07-24T05:25:04.8538908Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-07-24T05:25:04.8542242Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-07-24T05:25:04.8545924Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-07-24T05:25:04.8549499Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-07-24T05:25:04.8552741Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.8555975Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-07-24T05:25:04.8559195Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-07-24T05:25:04.8562613Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-07-24T05:25:04.8566223Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-07-24T05:25:04.8569612Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-07-24T05:25:04.8573467Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.8576172Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-07-24T05:25:04.8579508Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-07-24T05:25:04.8582700Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-07-24T05:25:04.8586952Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.8590285Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-07-24T05:25:04.8594336Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.8598080Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-07-24T05:25:04.8600981Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-07-24T05:25:04.8604435Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-07-24T05:25:04.8608187Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-07-24T05:25:04.8611174Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-07-24T05:25:04.8614987Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-07-24T05:25:04.8618905Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-07-24T05:25:04.8622511Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-07-24T05:25:04.8625826Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-07-24T05:25:04.8629304Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-07-24T05:25:04.8632925Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-07-24T05:25:04.8635960Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-07-24T05:25:04.8639472Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-07-24T05:25:04.8642957Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.8646048Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-07-24T05:25:04.8649298Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-07-24T05:25:04.8652560Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-07-24T05:25:04.8655800Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-07-24T05:25:04.8658894Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-07-24T05:25:04.8662202Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-07-24T05:25:04.8665572Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-07-24T05:25:04.8669232Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9442153Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-07-24T05:25:04.9442753Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-07-24T05:25:04.9443424Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-07-24T05:25:04.9444087Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.9444410Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-07-24T05:25:04.9444616Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-07-24T05:25:04.9444790Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-07-24T05:25:04.9444942Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-07-24T05:25:04.9445097Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-07-24T05:25:04.9445401Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9445573Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-07-24T05:25:04.9445732Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-07-24T05:25:04.9445892Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-07-24T05:25:04.9446190Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9446372Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-07-24T05:25:04.9446596Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-07-24T05:25:04.9446735Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-07-24T05:25:04.9447034Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9447216Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-07-24T05:25:04.9447370Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-07-24T05:25:04.9447503Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-07-24T05:25:04.9447792Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9447963Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-07-24T05:25:04.9448115Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-07-24T05:25:04.9448233Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-07-24T05:25:04.9448516Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9448658Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-07-24T05:25:04.9448788Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-07-24T05:25:04.9449221Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-07-24T05:25:04.9449775Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.9450457Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.9451279Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9451451Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-07-24T05:25:04.9457268Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-07-24T05:25:04.9457424Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-07-24T05:25:04.9457774Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.9458072Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-07-24T05:25:04.9458238Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-07-24T05:25:04.9458364Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-07-24T05:25:04.9458532Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-07-24T05:25:04.9458665Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-07-24T05:25:04.9458794Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-07-24T05:25:04.9458919Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-07-24T05:25:04.9459211Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9459367Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-07-24T05:25:04.9459506Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-07-24T05:25:04.9459626Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-07-24T05:25:04.9459906Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9460038Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-07-24T05:25:04.9460320Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9460474Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-07-24T05:25:04.9460624Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-07-24T05:25:04.9460762Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-07-24T05:25:04.9460890Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-07-24T05:25:04.9461057Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-07-24T05:25:04.9461339Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-07-24T05:25:04.9461561Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-07-24T05:25:04.9461756Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-07-24T05:25:04.9461994Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-07-24T05:25:04.9462114Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-07-24T05:25:04.9462377Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9462515Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-07-24T05:25:04.9462643Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-07-24T05:25:04.9462768Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-07-24T05:25:04.9463053Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9463202Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-07-24T05:25:04.9463342Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-07-24T05:25:04.9463475Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-07-24T05:25:04.9463761Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9463918Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-07-24T05:25:04.9464062Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-07-24T05:25:04.9464209Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-07-24T05:25:04.9464504Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9465901Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-07-24T05:25:04.9469319Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-07-24T05:25:04.9472544Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-07-24T05:25:04.9476319Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9480046Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-07-24T05:25:04.9482584Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-07-24T05:25:04.9485937Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-07-24T05:25:04.9489534Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9492654Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-07-24T05:25:04.9495906Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-07-24T05:25:04.9499415Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-07-24T05:25:04.9503024Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.9506444Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-07-24T05:25:04.9509734Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-07-24T05:25:04.9513022Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-07-24T05:25:04.9516740Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-07-24T05:25:04.9519705Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-07-24T05:25:04.9523255Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-07-24T05:25:04.9526496Z adding 'torch/include/ATen/ops/linear.h' 2025-07-24T05:25:04.9530050Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-07-24T05:25:04.9533465Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.9536859Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-07-24T05:25:04.9540575Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-07-24T05:25:04.9543771Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.9547339Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9550343Z adding 'torch/include/ATen/ops/linear_native.h' 2025-07-24T05:25:04.9575837Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-07-24T05:25:04.9576040Z adding 'torch/include/ATen/ops/linspace.h' 2025-07-24T05:25:04.9576367Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.9576523Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-07-24T05:25:04.9576687Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-07-24T05:25:04.9576854Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-07-24T05:25:04.9576988Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-07-24T05:25:04.9579876Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-07-24T05:25:04.9583285Z adding 'torch/include/ATen/ops/log.h' 2025-07-24T05:25:04.9586680Z adding 'torch/include/ATen/ops/log10.h' 2025-07-24T05:25:04.9590314Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.9593327Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-07-24T05:25:04.9597075Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-07-24T05:25:04.9600516Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-07-24T05:25:04.9604135Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-07-24T05:25:04.9607826Z adding 'torch/include/ATen/ops/log10_native.h' 2025-07-24T05:25:04.9611363Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-07-24T05:25:04.9614856Z adding 'torch/include/ATen/ops/log1p.h' 2025-07-24T05:25:04.9618742Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.9622319Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-07-24T05:25:04.9626057Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-07-24T05:25:04.9629821Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-07-24T05:25:04.9633026Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-07-24T05:25:04.9636356Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-07-24T05:25:04.9639733Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-07-24T05:25:04.9643246Z adding 'torch/include/ATen/ops/log2.h' 2025-07-24T05:25:04.9646493Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.9649835Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-07-24T05:25:04.9652956Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-07-24T05:25:04.9656062Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-07-24T05:25:04.9659209Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-07-24T05:25:04.9662570Z adding 'torch/include/ATen/ops/log2_native.h' 2025-07-24T05:25:04.9665972Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-07-24T05:25:04.9669401Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.9672401Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-07-24T05:25:04.9675833Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-07-24T05:25:04.9679073Z adding 'torch/include/ATen/ops/log_meta.h' 2025-07-24T05:25:04.9682158Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-07-24T05:25:04.9685185Z adding 'torch/include/ATen/ops/log_native.h' 2025-07-24T05:25:04.9688389Z adding 'torch/include/ATen/ops/log_normal.h' 2025-07-24T05:25:04.9691766Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.9694905Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-07-24T05:25:04.9698043Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-07-24T05:25:04.9701321Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-07-24T05:25:04.9704480Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-07-24T05:25:04.9708254Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-07-24T05:25:04.9711643Z adding 'torch/include/ATen/ops/log_ops.h' 2025-07-24T05:25:04.9714870Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-07-24T05:25:04.9718141Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-07-24T05:25:04.9721578Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-07-24T05:25:04.9724716Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-07-24T05:25:04.9727741Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-07-24T05:25:04.9731031Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-07-24T05:25:04.9734394Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9737493Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-07-24T05:25:04.9740740Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-07-24T05:25:04.9743935Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-07-24T05:25:04.9747264Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-07-24T05:25:04.9750706Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-07-24T05:25:04.9753680Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-07-24T05:25:04.9756927Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-07-24T05:25:04.9760221Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-07-24T05:25:04.9763608Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.9766968Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9769932Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-07-24T05:25:04.9773566Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-07-24T05:25:04.9776784Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-07-24T05:25:04.9779968Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-07-24T05:25:04.9783455Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.9786603Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-07-24T05:25:04.9789916Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-07-24T05:25:04.9793162Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-07-24T05:25:04.9796286Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-07-24T05:25:04.9799264Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-07-24T05:25:04.9802532Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-07-24T05:25:04.9805967Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.9809097Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-07-24T05:25:04.9812219Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-07-24T05:25:04.9815326Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-07-24T05:25:04.9818521Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-07-24T05:25:04.9821589Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-07-24T05:25:04.9824937Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-07-24T05:25:04.9828274Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-07-24T05:25:04.9831699Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.9834886Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9837994Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-07-24T05:25:04.9841372Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-07-24T05:25:04.9844468Z adding 'torch/include/ATen/ops/logdet.h' 2025-07-24T05:25:04.9847812Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:04.9850817Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-07-24T05:25:04.9854052Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-07-24T05:25:04.9857239Z adding 'torch/include/ATen/ops/logical_and.h' 2025-07-24T05:25:04.9860647Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.9863780Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-07-24T05:25:04.9866967Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-07-24T05:25:04.9870010Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-07-24T05:25:04.9873317Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-07-24T05:25:04.9876511Z adding 'torch/include/ATen/ops/logical_not.h' 2025-07-24T05:25:04.9879891Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.9882947Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-07-24T05:25:04.9886160Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-07-24T05:25:04.9889256Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-07-24T05:25:04.9917717Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-07-24T05:25:04.9917936Z adding 'torch/include/ATen/ops/logical_or.h' 2025-07-24T05:25:04.9918277Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.9918444Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-07-24T05:25:04.9918618Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-07-24T05:25:04.9918756Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-07-24T05:25:04.9918878Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-07-24T05:25:04.9918999Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-07-24T05:25:04.9919275Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.9922051Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-07-24T05:25:04.9925520Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-07-24T05:25:04.9928447Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-07-24T05:25:04.9932002Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-07-24T05:25:04.9935212Z adding 'torch/include/ATen/ops/logit.h' 2025-07-24T05:25:04.9938771Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-07-24T05:25:04.9942875Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:04.9945870Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-07-24T05:25:04.9949412Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-07-24T05:25:04.9952622Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-07-24T05:25:04.9955950Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-07-24T05:25:04.9958999Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-07-24T05:25:04.9962487Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-07-24T05:25:04.9965741Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-07-24T05:25:04.9969151Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-07-24T05:25:04.9972545Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-07-24T05:25:04.9975659Z adding 'torch/include/ATen/ops/logit_native.h' 2025-07-24T05:25:04.9979077Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-07-24T05:25:04.9983170Z adding 'torch/include/ATen/ops/logspace.h' 2025-07-24T05:25:04.9987490Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:04.9991423Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-07-24T05:25:04.9994594Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-07-24T05:25:04.9997880Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-07-24T05:25:05.0001194Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-07-24T05:25:05.0005481Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-07-24T05:25:05.0009060Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-07-24T05:25:05.0012409Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0015941Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.0019102Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0022366Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-07-24T05:25:05.0026304Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-07-24T05:25:05.0029452Z adding 'torch/include/ATen/ops/lshift.h' 2025-07-24T05:25:05.0033284Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0036167Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-07-24T05:25:05.0039541Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-07-24T05:25:05.0042725Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-07-24T05:25:05.0046049Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-07-24T05:25:05.0049644Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-07-24T05:25:05.0053259Z adding 'torch/include/ATen/ops/lstm.h' 2025-07-24T05:25:05.0056540Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-07-24T05:25:05.0059960Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0063244Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-07-24T05:25:05.0066546Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-07-24T05:25:05.0070220Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0073839Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-07-24T05:25:05.0077453Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0080747Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-07-24T05:25:05.0084308Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-07-24T05:25:05.0087751Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-07-24T05:25:05.0091250Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-07-24T05:25:05.0094804Z adding 'torch/include/ATen/ops/lt.h' 2025-07-24T05:25:05.0098125Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.0101723Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-07-24T05:25:05.0105689Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-07-24T05:25:05.0109322Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-07-24T05:25:05.0112931Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-07-24T05:25:05.0116332Z adding 'torch/include/ATen/ops/lt_native.h' 2025-07-24T05:25:05.0120265Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-07-24T05:25:05.0123976Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-07-24T05:25:05.0127494Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0130849Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-07-24T05:25:05.0133968Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-07-24T05:25:05.0137551Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-07-24T05:25:05.0141094Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.0144418Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-07-24T05:25:05.0147921Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-07-24T05:25:05.0151145Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-07-24T05:25:05.0154761Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-07-24T05:25:05.0157701Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-07-24T05:25:05.0161049Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-07-24T05:25:05.0164131Z adding 'torch/include/ATen/ops/mH.h' 2025-07-24T05:25:05.0167404Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0170601Z adding 'torch/include/ATen/ops/mH_native.h' 2025-07-24T05:25:05.0174012Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-07-24T05:25:05.0176943Z adding 'torch/include/ATen/ops/mT.h' 2025-07-24T05:25:05.0180213Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0183200Z adding 'torch/include/ATen/ops/mT_native.h' 2025-07-24T05:25:05.0187067Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-07-24T05:25:05.0190271Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-07-24T05:25:05.0193670Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0197453Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-07-24T05:25:05.0200733Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-07-24T05:25:05.0204377Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-07-24T05:25:05.0207936Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0211032Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-07-24T05:25:05.0214184Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-07-24T05:25:05.0217318Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-07-24T05:25:05.0220601Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-07-24T05:25:05.0224229Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-07-24T05:25:05.0227697Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-07-24T05:25:05.0231011Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-07-24T05:25:05.0234459Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0237447Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-07-24T05:25:05.0359959Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-07-24T05:25:05.0360493Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0360686Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-07-24T05:25:05.0360870Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-07-24T05:25:05.0361053Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-07-24T05:25:05.0361339Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-07-24T05:25:05.0361481Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-07-24T05:25:05.0361606Z adding 'torch/include/ATen/ops/masked_select.h' 2025-07-24T05:25:05.0361838Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-07-24T05:25:05.0362214Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0362400Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-07-24T05:25:05.0362580Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-07-24T05:25:05.0362808Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-07-24T05:25:05.0362981Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-07-24T05:25:05.0363121Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-07-24T05:25:05.0363261Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-07-24T05:25:05.0363371Z adding 'torch/include/ATen/ops/matmul.h' 2025-07-24T05:25:05.0363497Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-07-24T05:25:05.0363800Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0363955Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-07-24T05:25:05.0364100Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-07-24T05:25:05.0364355Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0364478Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-07-24T05:25:05.0364592Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-07-24T05:25:05.0364701Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-07-24T05:25:05.0364967Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0365092Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-07-24T05:25:05.0365210Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-07-24T05:25:05.0365333Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-07-24T05:25:05.0365474Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-07-24T05:25:05.0365774Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0365956Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-07-24T05:25:05.0366114Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-07-24T05:25:05.0366377Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0366508Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-07-24T05:25:05.0366643Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-07-24T05:25:05.0366760Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-07-24T05:25:05.0367040Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0367189Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-07-24T05:25:05.0367323Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-07-24T05:25:05.0370756Z adding 'torch/include/ATen/ops/max.h' 2025-07-24T05:25:05.0374169Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.0377335Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0380462Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-07-24T05:25:05.0383684Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-07-24T05:25:05.0387233Z adding 'torch/include/ATen/ops/max_meta.h' 2025-07-24T05:25:05.0390327Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-07-24T05:25:05.0393621Z adding 'torch/include/ATen/ops/max_native.h' 2025-07-24T05:25:05.0397474Z adding 'torch/include/ATen/ops/max_ops.h' 2025-07-24T05:25:05.0400968Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-07-24T05:25:05.0404331Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0408154Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-07-24T05:25:05.0411549Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-07-24T05:25:05.0414722Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-07-24T05:25:05.0418230Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0421275Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-07-24T05:25:05.0424486Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-07-24T05:25:05.0427798Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-07-24T05:25:05.0431276Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-07-24T05:25:05.0434790Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0437708Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-07-24T05:25:05.0441068Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-07-24T05:25:05.0444470Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0447452Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-07-24T05:25:05.0450682Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-07-24T05:25:05.0454033Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-07-24T05:25:05.0457571Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-07-24T05:25:05.0461875Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.0464652Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-07-24T05:25:05.0468455Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-07-24T05:25:05.0471405Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-07-24T05:25:05.0474947Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-07-24T05:25:05.0478127Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-07-24T05:25:05.0481791Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-07-24T05:25:05.0485776Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.0488675Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-07-24T05:25:05.0492392Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-07-24T05:25:05.0495229Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-07-24T05:25:05.0498686Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-07-24T05:25:05.0501867Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-07-24T05:25:05.0505732Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-07-24T05:25:05.0509079Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-07-24T05:25:05.0512465Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0515701Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-07-24T05:25:05.0518890Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-07-24T05:25:05.0522476Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-07-24T05:25:05.0525905Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-07-24T05:25:05.0529458Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-07-24T05:25:05.0532729Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-07-24T05:25:05.0536111Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-07-24T05:25:05.0539779Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-07-24T05:25:05.0543056Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-07-24T05:25:05.0546585Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-07-24T05:25:05.0549802Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-07-24T05:25:05.0553443Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-07-24T05:25:05.0557068Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-07-24T05:25:05.0560855Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-07-24T05:25:05.0564141Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-07-24T05:25:05.0567117Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-07-24T05:25:05.0570711Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-07-24T05:25:05.0574213Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-07-24T05:25:05.0577959Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-07-24T05:25:05.0581649Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-07-24T05:25:05.0604921Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-07-24T05:25:05.0605125Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-07-24T05:25:05.0605245Z adding 'torch/include/ATen/ops/maximum.h' 2025-07-24T05:25:05.0605636Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.0605823Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-07-24T05:25:05.0606004Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-07-24T05:25:05.0606125Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-07-24T05:25:05.0609601Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-07-24T05:25:05.0612765Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-07-24T05:25:05.0616438Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-07-24T05:25:05.0620229Z adding 'torch/include/ATen/ops/mean.h' 2025-07-24T05:25:05.0624517Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0628228Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.0631448Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0634835Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-07-24T05:25:05.0638131Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-07-24T05:25:05.0641423Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-07-24T05:25:05.0644874Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-07-24T05:25:05.0648168Z adding 'torch/include/ATen/ops/mean_native.h' 2025-07-24T05:25:05.0651959Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-07-24T05:25:05.0655679Z adding 'torch/include/ATen/ops/median.h' 2025-07-24T05:25:05.0659552Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0663210Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0666871Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-07-24T05:25:05.0670437Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-07-24T05:25:05.0673751Z adding 'torch/include/ATen/ops/median_native.h' 2025-07-24T05:25:05.0677458Z adding 'torch/include/ATen/ops/median_ops.h' 2025-07-24T05:25:05.0681051Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-07-24T05:25:05.0684806Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0687685Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-07-24T05:25:05.0691113Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-07-24T05:25:05.0694685Z adding 'torch/include/ATen/ops/min.h' 2025-07-24T05:25:05.0698769Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.0702032Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0705160Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-07-24T05:25:05.0708463Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-07-24T05:25:05.0711917Z adding 'torch/include/ATen/ops/min_meta.h' 2025-07-24T05:25:05.0715172Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-07-24T05:25:05.0718401Z adding 'torch/include/ATen/ops/min_native.h' 2025-07-24T05:25:05.0722183Z adding 'torch/include/ATen/ops/min_ops.h' 2025-07-24T05:25:05.0725860Z adding 'torch/include/ATen/ops/minimum.h' 2025-07-24T05:25:05.0729410Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.0732293Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-07-24T05:25:05.0735481Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-07-24T05:25:05.0738585Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-07-24T05:25:05.0741806Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-07-24T05:25:05.0745021Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-07-24T05:25:05.0748376Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-07-24T05:25:05.0751701Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-07-24T05:25:05.0755204Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-07-24T05:25:05.0758971Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0762652Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-07-24T05:25:05.0765850Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-07-24T05:25:05.0769354Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-07-24T05:25:05.0772937Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0776087Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-07-24T05:25:05.0779189Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-07-24T05:25:05.0782647Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-07-24T05:25:05.0786545Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-07-24T05:25:05.0790181Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-07-24T05:25:05.0793574Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-07-24T05:25:05.0797096Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-07-24T05:25:05.0800563Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-07-24T05:25:05.0804058Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0807230Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-07-24T05:25:05.0810354Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-07-24T05:25:05.0814124Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-07-24T05:25:05.0817359Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-07-24T05:25:05.0820910Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-07-24T05:25:05.0824030Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-07-24T05:25:05.0827723Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-07-24T05:25:05.0831877Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-07-24T05:25:05.0835433Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0838806Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-07-24T05:25:05.0842008Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-07-24T05:25:05.0845845Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-07-24T05:25:05.0849687Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-07-24T05:25:05.0853567Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0856812Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-07-24T05:25:05.0859952Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-07-24T05:25:05.0863544Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-07-24T05:25:05.0867484Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-07-24T05:25:05.0871191Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-07-24T05:25:05.0875180Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0878291Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-07-24T05:25:05.0881718Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-07-24T05:25:05.0885598Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-07-24T05:25:05.0889471Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0892626Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-07-24T05:25:05.0895832Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-07-24T05:25:05.0899743Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-07-24T05:25:05.0903155Z adding 'torch/include/ATen/ops/mish.h' 2025-07-24T05:25:05.0926913Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-07-24T05:25:05.0927581Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.0928181Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-07-24T05:25:05.0928662Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-07-24T05:25:05.0929098Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-07-24T05:25:05.0929490Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-07-24T05:25:05.0930028Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.0930588Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-07-24T05:25:05.0933229Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-07-24T05:25:05.0936328Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-07-24T05:25:05.0939700Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-07-24T05:25:05.0942776Z adding 'torch/include/ATen/ops/mish_native.h' 2025-07-24T05:25:05.0946364Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-07-24T05:25:05.0949753Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-07-24T05:25:05.0953239Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-07-24T05:25:05.0956803Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0959833Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-07-24T05:25:05.0963400Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-07-24T05:25:05.0966583Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-07-24T05:25:05.0970099Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-07-24T05:25:05.0973812Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-07-24T05:25:05.0978380Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0981744Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-07-24T05:25:05.0985366Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-07-24T05:25:05.0988941Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-07-24T05:25:05.0992497Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-07-24T05:25:05.0995987Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.0999561Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-07-24T05:25:05.1002732Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1005883Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-07-24T05:25:05.1009244Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-07-24T05:25:05.1012581Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-07-24T05:25:05.1016198Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-07-24T05:25:05.1019502Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-07-24T05:25:05.1023087Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1026410Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-07-24T05:25:05.1029800Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-07-24T05:25:05.1033231Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1036354Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-07-24T05:25:05.1039879Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-07-24T05:25:05.1043178Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-07-24T05:25:05.1046740Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-07-24T05:25:05.1050262Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1053524Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-07-24T05:25:05.1057022Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-07-24T05:25:05.1060626Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1063852Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-07-24T05:25:05.1067359Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-07-24T05:25:05.1070846Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-07-24T05:25:05.1074246Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-07-24T05:25:05.1077870Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1080997Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-07-24T05:25:05.1084597Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-07-24T05:25:05.1108629Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1109338Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-07-24T05:25:05.1109820Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-07-24T05:25:05.1110281Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-07-24T05:25:05.1110903Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1111571Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-07-24T05:25:05.1112091Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-07-24T05:25:05.1113734Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-07-24T05:25:05.1117827Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1121195Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-07-24T05:25:05.1124900Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-07-24T05:25:05.1128495Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-07-24T05:25:05.1132483Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-07-24T05:25:05.1136246Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1139687Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-07-24T05:25:05.1142982Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-07-24T05:25:05.1146946Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-07-24T05:25:05.1150792Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1154036Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-07-24T05:25:05.1157228Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-07-24T05:25:05.1160795Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-07-24T05:25:05.1164138Z adding 'torch/include/ATen/ops/mm.h' 2025-07-24T05:25:05.1168236Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.1171463Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-07-24T05:25:05.1174676Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-07-24T05:25:05.1177719Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-07-24T05:25:05.1180884Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-07-24T05:25:05.1184013Z adding 'torch/include/ATen/ops/mm_native.h' 2025-07-24T05:25:05.1187638Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-07-24T05:25:05.1191027Z adding 'torch/include/ATen/ops/mode.h' 2025-07-24T05:25:05.1194498Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1197960Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.1201085Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-07-24T05:25:05.1204271Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-07-24T05:25:05.1207632Z adding 'torch/include/ATen/ops/mode_native.h' 2025-07-24T05:25:05.1210912Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-07-24T05:25:05.1214082Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-07-24T05:25:05.1217436Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.1220479Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-07-24T05:25:05.1223755Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-07-24T05:25:05.1227085Z adding 'torch/include/ATen/ops/movedim.h' 2025-07-24T05:25:05.1230458Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.1233410Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-07-24T05:25:05.1236741Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-07-24T05:25:05.1240704Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-07-24T05:25:05.1244519Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1247615Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-07-24T05:25:05.1251076Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-07-24T05:25:05.1255192Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-07-24T05:25:05.1259075Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1262235Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-07-24T05:25:05.1265886Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-07-24T05:25:05.1269085Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-07-24T05:25:05.1272363Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-07-24T05:25:05.1416627Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-07-24T05:25:05.1417267Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-07-24T05:25:05.1417753Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-07-24T05:25:05.1418169Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-07-24T05:25:05.1418766Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.1419342Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-07-24T05:25:05.1419757Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-07-24T05:25:05.1420147Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-07-24T05:25:05.1420519Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-07-24T05:25:05.1420912Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-07-24T05:25:05.1421256Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-07-24T05:25:05.1421589Z adding 'torch/include/ATen/ops/msort.h' 2025-07-24T05:25:05.1422024Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.1422620Z adding 'torch/include/ATen/ops/msort_native.h' 2025-07-24T05:25:05.1422949Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-07-24T05:25:05.1423275Z adding 'torch/include/ATen/ops/mul.h' 2025-07-24T05:25:05.1423763Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1424452Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.1425108Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-07-24T05:25:05.1425476Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-07-24T05:25:05.1425825Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-07-24T05:25:05.1426221Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-07-24T05:25:05.1426582Z adding 'torch/include/ATen/ops/mul_native.h' 2025-07-24T05:25:05.1426901Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-07-24T05:25:05.1427248Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-07-24T05:25:05.1427662Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-07-24T05:25:05.1428172Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-07-24T05:25:05.1428746Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-07-24T05:25:05.1429288Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-07-24T05:25:05.1429789Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-07-24T05:25:05.1430266Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-07-24T05:25:05.1430760Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-07-24T05:25:05.1431235Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-07-24T05:25:05.1431658Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-07-24T05:25:05.1432072Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-07-24T05:25:05.1432518Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-07-24T05:25:05.1433079Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-07-24T05:25:05.1433700Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-07-24T05:25:05.1434308Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-07-24T05:25:05.1434861Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-07-24T05:25:05.1435499Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.1436126Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-07-24T05:25:05.1436669Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-07-24T05:25:05.1437296Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-07-24T05:25:05.1437877Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-07-24T05:25:05.1438411Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-07-24T05:25:05.1438920Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-07-24T05:25:05.1439399Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-07-24T05:25:05.1439802Z adding 'torch/include/ATen/ops/multinomial.h' 2025-07-24T05:25:05.1440186Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-07-24T05:25:05.1440637Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-07-24T05:25:05.1443581Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-07-24T05:25:05.1446725Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-07-24T05:25:05.1516995Z adding 'torch/include/ATen/ops/multiply.h' 2025-07-24T05:25:05.1517682Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.1518195Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-07-24T05:25:05.1518562Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-07-24T05:25:05.1518994Z adding 'torch/include/ATen/ops/mv.h' 2025-07-24T05:25:05.1519421Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1519871Z adding 'torch/include/ATen/ops/mv_native.h' 2025-07-24T05:25:05.1520186Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-07-24T05:25:05.1520545Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-07-24T05:25:05.1521077Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1521605Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-07-24T05:25:05.1522039Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-07-24T05:25:05.1522438Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-07-24T05:25:05.1522846Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-07-24T05:25:05.1523188Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-07-24T05:25:05.1523654Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1524210Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-07-24T05:25:05.1524644Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-07-24T05:25:05.1525059Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-07-24T05:25:05.1525422Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-07-24T05:25:05.1525756Z adding 'torch/include/ATen/ops/nanmean.h' 2025-07-24T05:25:05.1526232Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.1526721Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-07-24T05:25:05.1527071Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-07-24T05:25:05.1528834Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-07-24T05:25:05.1532096Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1535342Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.1538441Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-07-24T05:25:05.1541647Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-07-24T05:25:05.1544878Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-07-24T05:25:05.1548532Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-07-24T05:25:05.1552059Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-07-24T05:25:05.1555548Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.1558982Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-07-24T05:25:05.1562501Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-07-24T05:25:05.1565824Z adding 'torch/include/ATen/ops/nansum.h' 2025-07-24T05:25:05.1569103Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-07-24T05:25:05.1572302Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-07-24T05:25:05.1575420Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-07-24T05:25:05.1578729Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-07-24T05:25:05.1582107Z adding 'torch/include/ATen/ops/narrow.h' 2025-07-24T05:25:05.1585675Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.1588985Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-07-24T05:25:05.1601928Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.1602594Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-07-24T05:25:05.1603027Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-07-24T05:25:05.1605555Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-07-24T05:25:05.1608514Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-07-24T05:25:05.1611874Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-07-24T05:25:05.1615254Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-07-24T05:25:05.1618899Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-07-24T05:25:05.1622558Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1625876Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-07-24T05:25:05.1629090Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-07-24T05:25:05.1771163Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-07-24T05:25:05.1772640Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-07-24T05:25:05.1773153Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-07-24T05:25:05.1773637Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-07-24T05:25:05.1774108Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-07-24T05:25:05.1774576Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-07-24T05:25:05.1774999Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-07-24T05:25:05.1775588Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.1776231Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-07-24T05:25:05.1776739Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-07-24T05:25:05.1777276Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-07-24T05:25:05.1777745Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-07-24T05:25:05.1778145Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-07-24T05:25:05.1778728Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1779382Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-07-24T05:25:05.1779927Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-07-24T05:25:05.1780456Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-07-24T05:25:05.1780924Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-07-24T05:25:05.1781501Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1782073Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-07-24T05:25:05.1782542Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-07-24T05:25:05.1783034Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-07-24T05:25:05.1783425Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-07-24T05:25:05.1783865Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-07-24T05:25:05.1784269Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-07-24T05:25:05.1784972Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1785641Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-07-24T05:25:05.1786228Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-07-24T05:25:05.1786791Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-07-24T05:25:05.1787284Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-07-24T05:25:05.1787881Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1788471Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-07-24T05:25:05.1789020Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-07-24T05:25:05.1789539Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-07-24T05:25:05.1789966Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-07-24T05:25:05.1790353Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-07-24T05:25:05.1790762Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-07-24T05:25:05.1791371Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1792037Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-07-24T05:25:05.1792614Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-07-24T05:25:05.1793245Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-07-24T05:25:05.1793741Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-07-24T05:25:05.1794329Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1795071Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-07-24T05:25:05.1795618Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-07-24T05:25:05.1796079Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-07-24T05:25:05.1796515Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-07-24T05:25:05.1798149Z adding 'torch/include/ATen/ops/native_norm.h' 2025-07-24T05:25:05.1801624Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1804712Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-07-24T05:25:05.1808311Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-07-24T05:25:05.1811700Z adding 'torch/include/ATen/ops/ne.h' 2025-07-24T05:25:05.1815343Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.1818483Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-07-24T05:25:05.1843193Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-07-24T05:25:05.1843604Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-07-24T05:25:05.1843952Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-07-24T05:25:05.1844304Z adding 'torch/include/ATen/ops/ne_native.h' 2025-07-24T05:25:05.1844625Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-07-24T05:25:05.1844935Z adding 'torch/include/ATen/ops/neg.h' 2025-07-24T05:25:05.1845428Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.1845978Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-07-24T05:25:05.1849053Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-07-24T05:25:05.1852158Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-07-24T05:25:05.1855445Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-07-24T05:25:05.1858695Z adding 'torch/include/ATen/ops/neg_native.h' 2025-07-24T05:25:05.1862186Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-07-24T05:25:05.1865551Z adding 'torch/include/ATen/ops/negative.h' 2025-07-24T05:25:05.1869094Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.1872074Z adding 'torch/include/ATen/ops/negative_native.h' 2025-07-24T05:25:05.1875604Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-07-24T05:25:05.1878953Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-07-24T05:25:05.1882529Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.1885591Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-07-24T05:25:05.1888974Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-07-24T05:25:05.1892600Z adding 'torch/include/ATen/ops/new_empty.h' 2025-07-24T05:25:05.1896211Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1899432Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-07-24T05:25:05.1902830Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-07-24T05:25:05.1906799Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-07-24T05:25:05.1910480Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1913951Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.1916934Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-07-24T05:25:05.1920369Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-07-24T05:25:05.1924123Z adding 'torch/include/ATen/ops/new_full.h' 2025-07-24T05:25:05.1927734Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1930862Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-07-24T05:25:05.1934256Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-07-24T05:25:05.1938359Z adding 'torch/include/ATen/ops/new_ones.h' 2025-07-24T05:25:05.1943977Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1947333Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-07-24T05:25:05.1950735Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-07-24T05:25:05.1954318Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-07-24T05:25:05.1957920Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.1960983Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-07-24T05:25:05.1964322Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-07-24T05:25:05.1967603Z adding 'torch/include/ATen/ops/nextafter.h' 2025-07-24T05:25:05.1971297Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.1974335Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-07-24T05:25:05.1977521Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-07-24T05:25:05.1980580Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-07-24T05:25:05.3260510Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-07-24T05:25:05.3260981Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-07-24T05:25:05.3261336Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-07-24T05:25:05.3261684Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-07-24T05:25:05.3291741Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-07-24T05:25:05.3292227Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-07-24T05:25:05.3292697Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-07-24T05:25:05.3293224Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-07-24T05:25:05.3293718Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-07-24T05:25:05.3294157Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-07-24T05:25:05.3294683Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3295191Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-07-24T05:25:05.3295644Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-07-24T05:25:05.3296201Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-07-24T05:25:05.3296690Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-07-24T05:25:05.3297117Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-07-24T05:25:05.3297544Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-07-24T05:25:05.3297951Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-07-24T05:25:05.3298305Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-07-24T05:25:05.3319476Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.3320255Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-07-24T05:25:05.3320737Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-07-24T05:25:05.3321247Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-07-24T05:25:05.3321739Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-07-24T05:25:05.3322212Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-07-24T05:25:05.3322626Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-07-24T05:25:05.3323117Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3323609Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-07-24T05:25:05.3324192Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.3324836Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-07-24T05:25:05.3325307Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-07-24T05:25:05.3325887Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-07-24T05:25:05.3326329Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-07-24T05:25:05.3326766Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-07-24T05:25:05.3327293Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-07-24T05:25:05.3327771Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-07-24T05:25:05.3328129Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-07-24T05:25:05.3328595Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3329111Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-07-24T05:25:05.3329551Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-07-24T05:25:05.3329894Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-07-24T05:25:05.3330232Z adding 'torch/include/ATen/ops/nonzero.h' 2025-07-24T05:25:05.3330580Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-07-24T05:25:05.3330997Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-07-24T05:25:05.3331369Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-07-24T05:25:05.3331722Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-07-24T05:25:05.3332217Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3332761Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-07-24T05:25:05.3333198Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-07-24T05:25:05.3333594Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-07-24T05:25:05.3333933Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-07-24T05:25:05.3334330Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-07-24T05:25:05.3334793Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-07-24T05:25:05.3335223Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-07-24T05:25:05.3335609Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-07-24T05:25:05.3357150Z adding 'torch/include/ATen/ops/norm.h' 2025-07-24T05:25:05.3357630Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3358283Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.3358944Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3359421Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-07-24T05:25:05.3359786Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-07-24T05:25:05.3360153Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-07-24T05:25:05.3360650Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3361196Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-07-24T05:25:05.3361600Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-07-24T05:25:05.3361941Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-07-24T05:25:05.3362288Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-07-24T05:25:05.3362633Z adding 'torch/include/ATen/ops/norm_native.h' 2025-07-24T05:25:05.3363006Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-07-24T05:25:05.3363304Z adding 'torch/include/ATen/ops/normal.h' 2025-07-24T05:25:05.3363822Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3364325Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-07-24T05:25:05.3364705Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-07-24T05:25:05.3365092Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-07-24T05:25:05.3365459Z adding 'torch/include/ATen/ops/normal_native.h' 2025-07-24T05:25:05.3365803Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-07-24T05:25:05.3366117Z adding 'torch/include/ATen/ops/not_equal.h' 2025-07-24T05:25:05.3366580Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3367187Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-07-24T05:25:05.3367532Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-07-24T05:25:05.3367875Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-07-24T05:25:05.3368405Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3369040Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-07-24T05:25:05.3369417Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-07-24T05:25:05.3369816Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-07-24T05:25:05.3370276Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3370817Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-07-24T05:25:05.3371175Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-07-24T05:25:05.3371492Z adding 'torch/include/ATen/ops/one_hot.h' 2025-07-24T05:25:05.3371960Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3372451Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-07-24T05:25:05.3372797Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-07-24T05:25:05.3373105Z adding 'torch/include/ATen/ops/ones.h' 2025-07-24T05:25:05.3373542Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3374002Z adding 'torch/include/ATen/ops/ones_like.h' 2025-07-24T05:25:05.3374458Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3374991Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-07-24T05:25:05.3375344Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-07-24T05:25:05.3375728Z adding 'torch/include/ATen/ops/ones_native.h' 2025-07-24T05:25:05.3376050Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-07-24T05:25:05.3376350Z adding 'torch/include/ATen/ops/or.h' 2025-07-24T05:25:05.3376766Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3379915Z adding 'torch/include/ATen/ops/or_native.h' 2025-07-24T05:25:05.3383378Z adding 'torch/include/ATen/ops/or_ops.h' 2025-07-24T05:25:05.3386853Z adding 'torch/include/ATen/ops/orgqr.h' 2025-07-24T05:25:05.3390443Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3393616Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-07-24T05:25:05.3397060Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-07-24T05:25:05.3400603Z adding 'torch/include/ATen/ops/ormqr.h' 2025-07-24T05:25:05.3422722Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-07-24T05:25:05.3423183Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-07-24T05:25:05.3423553Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-07-24T05:25:05.3423884Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-07-24T05:25:05.3424196Z adding 'torch/include/ATen/ops/outer.h' 2025-07-24T05:25:05.3424712Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3425192Z adding 'torch/include/ATen/ops/outer_native.h' 2025-07-24T05:25:05.3427652Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-07-24T05:25:05.3431028Z adding 'torch/include/ATen/ops/output_nr.h' 2025-07-24T05:25:05.3434502Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3437718Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-07-24T05:25:05.3441046Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-07-24T05:25:05.3444413Z adding 'torch/include/ATen/ops/pad.h' 2025-07-24T05:25:05.3447999Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3451037Z adding 'torch/include/ATen/ops/pad_native.h' 2025-07-24T05:25:05.3454509Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-07-24T05:25:05.3457793Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-07-24T05:25:05.3461472Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3464728Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-07-24T05:25:05.3468105Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-07-24T05:25:05.3471466Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-07-24T05:25:05.3474928Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3478272Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-07-24T05:25:05.3481404Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-07-24T05:25:05.3484767Z adding 'torch/include/ATen/ops/pdist.h' 2025-07-24T05:25:05.3488247Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3491366Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-07-24T05:25:05.3494665Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-07-24T05:25:05.3497921Z adding 'torch/include/ATen/ops/permute.h' 2025-07-24T05:25:05.3501412Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3504765Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-07-24T05:25:05.3508383Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3511755Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.3514867Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-07-24T05:25:05.3518163Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-07-24T05:25:05.3521506Z adding 'torch/include/ATen/ops/permute_native.h' 2025-07-24T05:25:05.3524843Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-07-24T05:25:05.3528080Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-07-24T05:25:05.3531647Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3534670Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-07-24T05:25:05.3538192Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-07-24T05:25:05.3541409Z adding 'torch/include/ATen/ops/pinverse.h' 2025-07-24T05:25:05.3544998Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3548037Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-07-24T05:25:05.3551454Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-07-24T05:25:05.3554747Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-07-24T05:25:05.3558319Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3561817Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.3564874Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-07-24T05:25:05.3568163Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-07-24T05:25:05.3571514Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-07-24T05:25:05.3574973Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-07-24T05:25:05.3578435Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3603276Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.3604143Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-07-24T05:25:05.3604616Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-07-24T05:25:05.3605036Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-07-24T05:25:05.3605398Z adding 'torch/include/ATen/ops/poisson.h' 2025-07-24T05:25:05.3605848Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3606365Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-07-24T05:25:05.3606767Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-07-24T05:25:05.3609479Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-07-24T05:25:05.3612793Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-07-24T05:25:05.3616385Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3619914Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-07-24T05:25:05.3623568Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-07-24T05:25:05.3627075Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-07-24T05:25:05.3630520Z adding 'torch/include/ATen/ops/polar.h' 2025-07-24T05:25:05.3634463Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3637658Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-07-24T05:25:05.3640889Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-07-24T05:25:05.3644225Z adding 'torch/include/ATen/ops/polar_native.h' 2025-07-24T05:25:05.3647520Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-07-24T05:25:05.3650762Z adding 'torch/include/ATen/ops/polygamma.h' 2025-07-24T05:25:05.3654285Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3657690Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.3660741Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-07-24T05:25:05.3663958Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-07-24T05:25:05.3667212Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-07-24T05:25:05.3670498Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-07-24T05:25:05.3673807Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-07-24T05:25:05.3677173Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-07-24T05:25:05.3680366Z adding 'torch/include/ATen/ops/positive.h' 2025-07-24T05:25:05.3683745Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3686685Z adding 'torch/include/ATen/ops/positive_native.h' 2025-07-24T05:25:05.3689903Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-07-24T05:25:05.3693240Z adding 'torch/include/ATen/ops/pow.h' 2025-07-24T05:25:05.3696757Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.3699879Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-07-24T05:25:05.3703353Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-07-24T05:25:05.3706813Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-07-24T05:25:05.3710108Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-07-24T05:25:05.3713332Z adding 'torch/include/ATen/ops/pow_native.h' 2025-07-24T05:25:05.3716964Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-07-24T05:25:05.3720216Z adding 'torch/include/ATen/ops/prelu.h' 2025-07-24T05:25:05.3723542Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3726519Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-07-24T05:25:05.3729710Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-07-24T05:25:05.3733149Z adding 'torch/include/ATen/ops/prod.h' 2025-07-24T05:25:05.3736606Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3739866Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.3743055Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3746323Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-07-24T05:25:05.3749519Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-07-24T05:25:05.3752663Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-07-24T05:25:05.3755959Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-07-24T05:25:05.3759424Z adding 'torch/include/ATen/ops/prod_native.h' 2025-07-24T05:25:05.3763287Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-07-24T05:25:05.3766362Z adding 'torch/include/ATen/ops/promote_types.h' 2025-07-24T05:25:05.3770087Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3773039Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-07-24T05:25:05.3776438Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-07-24T05:25:05.3779701Z adding 'torch/include/ATen/ops/put.h' 2025-07-24T05:25:05.3783124Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3786378Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-07-24T05:25:05.3789545Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-07-24T05:25:05.3792851Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-07-24T05:25:05.3795830Z adding 'torch/include/ATen/ops/put_native.h' 2025-07-24T05:25:05.3799179Z adding 'torch/include/ATen/ops/put_ops.h' 2025-07-24T05:25:05.3802403Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-07-24T05:25:05.3805507Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-07-24T05:25:05.3808701Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-07-24T05:25:05.3812287Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-07-24T05:25:05.3816028Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3819028Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-07-24T05:25:05.3822343Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-07-24T05:25:05.3825691Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-07-24T05:25:05.3829078Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3832039Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-07-24T05:25:05.3835334Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-07-24T05:25:05.3838459Z adding 'torch/include/ATen/ops/q_scale.h' 2025-07-24T05:25:05.3841599Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-07-24T05:25:05.3844802Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-07-24T05:25:05.3847912Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-07-24T05:25:05.3850973Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-07-24T05:25:05.3854174Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-07-24T05:25:05.3857338Z adding 'torch/include/ATen/ops/qr.h' 2025-07-24T05:25:05.3860737Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3915644Z adding 'torch/include/ATen/ops/qr_native.h' 2025-07-24T05:25:05.3915903Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-07-24T05:25:05.3916031Z adding 'torch/include/ATen/ops/qscheme.h' 2025-07-24T05:25:05.3916158Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-07-24T05:25:05.3916280Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-07-24T05:25:05.3916387Z adding 'torch/include/ATen/ops/quantile.h' 2025-07-24T05:25:05.3916731Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3916876Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-07-24T05:25:05.3916991Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-07-24T05:25:05.3917136Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-07-24T05:25:05.3917470Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3917674Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-07-24T05:25:05.3917879Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-07-24T05:25:05.3918055Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-07-24T05:25:05.3918221Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-07-24T05:25:05.3918363Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-07-24T05:25:05.3919819Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3923127Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-07-24T05:25:05.3927647Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-07-24T05:25:05.3929812Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-07-24T05:25:05.3933902Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3936583Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-07-24T05:25:05.3939961Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-07-24T05:25:05.3943181Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-07-24T05:25:05.3946882Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-07-24T05:25:05.3950327Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-07-24T05:25:05.3954045Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-07-24T05:25:05.3957652Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-07-24T05:25:05.3961227Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.3964469Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-07-24T05:25:05.3967935Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-07-24T05:25:05.3971472Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-07-24T05:25:05.3975113Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3978158Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-07-24T05:25:05.3981704Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-07-24T05:25:05.3985141Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-07-24T05:25:05.3988819Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.3991929Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-07-24T05:25:05.3995507Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-07-24T05:25:05.3999040Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-07-24T05:25:05.4002540Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4005728Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-07-24T05:25:05.4009147Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-07-24T05:25:05.4012704Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-07-24T05:25:05.4016276Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4019469Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-07-24T05:25:05.4023025Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-07-24T05:25:05.4026508Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-07-24T05:25:05.4030127Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4033211Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-07-24T05:25:05.4036766Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-07-24T05:25:05.4040128Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-07-24T05:25:05.4043787Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4046897Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-07-24T05:25:05.4050375Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-07-24T05:25:05.4053825Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-07-24T05:25:05.4057414Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4060627Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-07-24T05:25:05.4064022Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-07-24T05:25:05.4067559Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-07-24T05:25:05.4071095Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4074232Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-07-24T05:25:05.4077701Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-07-24T05:25:05.4082755Z adding 'torch/include/ATen/ops/rand.h' 2025-07-24T05:25:05.4087295Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4090867Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4094204Z adding 'torch/include/ATen/ops/rand_like.h' 2025-07-24T05:25:05.4097983Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4100974Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-07-24T05:25:05.4104668Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-07-24T05:25:05.4108146Z adding 'torch/include/ATen/ops/rand_native.h' 2025-07-24T05:25:05.4112034Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-07-24T05:25:05.4117425Z adding 'torch/include/ATen/ops/randint.h' 2025-07-24T05:25:05.4122018Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4126623Z adding 'torch/include/ATen/ops/randint_like.h' 2025-07-24T05:25:05.4131343Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4135049Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-07-24T05:25:05.4139112Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-07-24T05:25:05.4142707Z adding 'torch/include/ATen/ops/randint_native.h' 2025-07-24T05:25:05.4146828Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-07-24T05:25:05.4152142Z adding 'torch/include/ATen/ops/randn.h' 2025-07-24T05:25:05.4156717Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4160162Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4163472Z adding 'torch/include/ATen/ops/randn_like.h' 2025-07-24T05:25:05.4166995Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4170504Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-24T05:25:05.4173551Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-07-24T05:25:05.4176995Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-07-24T05:25:05.4180278Z adding 'torch/include/ATen/ops/randn_native.h' 2025-07-24T05:25:05.4184198Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-07-24T05:25:05.4188026Z adding 'torch/include/ATen/ops/random.h' 2025-07-24T05:25:05.4191626Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4195213Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-07-24T05:25:05.4198505Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-07-24T05:25:05.4201699Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-07-24T05:25:05.4204921Z adding 'torch/include/ATen/ops/random_native.h' 2025-07-24T05:25:05.4208659Z adding 'torch/include/ATen/ops/random_ops.h' 2025-07-24T05:25:05.4212762Z adding 'torch/include/ATen/ops/randperm.h' 2025-07-24T05:25:05.4216828Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4220250Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-07-24T05:25:05.4272367Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-07-24T05:25:05.4272513Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-07-24T05:25:05.4272651Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-07-24T05:25:05.4294602Z adding 'torch/include/ATen/ops/range.h' 2025-07-24T05:25:05.4294915Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4295102Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-07-24T05:25:05.4295241Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-07-24T05:25:05.4295379Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-07-24T05:25:05.4295492Z adding 'torch/include/ATen/ops/range_native.h' 2025-07-24T05:25:05.4295612Z adding 'torch/include/ATen/ops/range_ops.h' 2025-07-24T05:25:05.4295708Z adding 'torch/include/ATen/ops/ravel.h' 2025-07-24T05:25:05.4296042Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4296167Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-07-24T05:25:05.4296277Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-07-24T05:25:05.4296385Z adding 'torch/include/ATen/ops/real.h' 2025-07-24T05:25:05.4296726Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4296839Z adding 'torch/include/ATen/ops/real_native.h' 2025-07-24T05:25:05.4296941Z adding 'torch/include/ATen/ops/real_ops.h' 2025-07-24T05:25:05.4297057Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-07-24T05:25:05.4297417Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.4297618Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-07-24T05:25:05.4299052Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-07-24T05:25:05.4302274Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-07-24T05:25:05.4305809Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-07-24T05:25:05.4309183Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-07-24T05:25:05.4312556Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-07-24T05:25:05.4315670Z adding 'torch/include/ATen/ops/record_stream.h' 2025-07-24T05:25:05.4319102Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-07-24T05:25:05.4322178Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-07-24T05:25:05.4325370Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-07-24T05:25:05.4328397Z adding 'torch/include/ATen/ops/refine_names.h' 2025-07-24T05:25:05.4331878Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4335100Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-07-24T05:25:05.4338346Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-07-24T05:25:05.4341808Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-07-24T05:25:05.4345681Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-07-24T05:25:05.4349338Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.4352457Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-07-24T05:25:05.4355742Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-07-24T05:25:05.4358924Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-07-24T05:25:05.4362234Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-07-24T05:25:05.4365551Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-07-24T05:25:05.4368973Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-07-24T05:25:05.4372473Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.4375571Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-07-24T05:25:05.4378843Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-07-24T05:25:05.4382791Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-07-24T05:25:05.4386319Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-07-24T05:25:05.4389516Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-07-24T05:25:05.4392891Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-07-24T05:25:05.4396345Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-07-24T05:25:05.4399969Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-07-24T05:25:05.4403421Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-07-24T05:25:05.4406719Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-07-24T05:25:05.4409929Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-07-24T05:25:05.4413240Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-07-24T05:25:05.4416521Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-07-24T05:25:05.4419731Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-07-24T05:25:05.4423028Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-07-24T05:25:05.4426542Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-07-24T05:25:05.4430024Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-07-24T05:25:05.4433600Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-07-24T05:25:05.4437229Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.4440402Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-07-24T05:25:05.4443623Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-07-24T05:25:05.4447034Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-07-24T05:25:05.4450360Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-07-24T05:25:05.4453526Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-07-24T05:25:05.4456889Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-07-24T05:25:05.4460382Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.4463406Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-07-24T05:25:05.4466753Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-07-24T05:25:05.4469859Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-07-24T05:25:05.4473161Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-07-24T05:25:05.4476295Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-07-24T05:25:05.4479638Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-07-24T05:25:05.4482874Z adding 'torch/include/ATen/ops/relu.h' 2025-07-24T05:25:05.4486085Z adding 'torch/include/ATen/ops/relu6.h' 2025-07-24T05:25:05.4489427Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4492382Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-07-24T05:25:05.4495588Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-07-24T05:25:05.4498942Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4501977Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-07-24T05:25:05.4505249Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-07-24T05:25:05.4508442Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-07-24T05:25:05.4511595Z adding 'torch/include/ATen/ops/relu_native.h' 2025-07-24T05:25:05.4514920Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-07-24T05:25:05.4518351Z adding 'torch/include/ATen/ops/remainder.h' 2025-07-24T05:25:05.4521854Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4525427Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.4528491Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-07-24T05:25:05.4531726Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-07-24T05:25:05.4534830Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-07-24T05:25:05.4538053Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-07-24T05:25:05.4541173Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-07-24T05:25:05.4544894Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-07-24T05:25:05.4548201Z adding 'torch/include/ATen/ops/rename.h' 2025-07-24T05:25:05.4551578Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4554555Z adding 'torch/include/ATen/ops/rename_native.h' 2025-07-24T05:25:05.4557918Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-07-24T05:25:05.4561405Z adding 'torch/include/ATen/ops/renorm.h' 2025-07-24T05:25:05.4565025Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.4568120Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-07-24T05:25:05.4571320Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-07-24T05:25:05.4574435Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-07-24T05:25:05.4577929Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-07-24T05:25:05.4623020Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-07-24T05:25:05.4623289Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-07-24T05:25:05.4623459Z adding 'torch/include/ATen/ops/repeat.h' 2025-07-24T05:25:05.4623719Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4624008Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-07-24T05:25:05.4624309Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4624683Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4624876Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-07-24T05:25:05.4625074Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-07-24T05:25:05.4625233Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-07-24T05:25:05.4625381Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-07-24T05:25:05.4625512Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-07-24T05:25:05.4625621Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-07-24T05:25:05.4626254Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-07-24T05:25:05.4629914Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-07-24T05:25:05.4633562Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.4636686Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-07-24T05:25:05.4640014Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-07-24T05:25:05.4643169Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-07-24T05:25:05.4646441Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-07-24T05:25:05.4649584Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-07-24T05:25:05.4652903Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-07-24T05:25:05.4656366Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.4659410Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-07-24T05:25:05.4662619Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-07-24T05:25:05.4665872Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-07-24T05:25:05.4669135Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-07-24T05:25:05.4672256Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-07-24T05:25:05.4675533Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-07-24T05:25:05.4678987Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-07-24T05:25:05.4682606Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-07-24T05:25:05.4686097Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-07-24T05:25:05.4689414Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-07-24T05:25:05.4692564Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-07-24T05:25:05.4695901Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-07-24T05:25:05.4699359Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.4702406Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-07-24T05:25:05.4705759Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-07-24T05:25:05.4708875Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-07-24T05:25:05.4712147Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-07-24T05:25:05.4715252Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-07-24T05:25:05.4718529Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-07-24T05:25:05.4722061Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-07-24T05:25:05.4725834Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-07-24T05:25:05.4729850Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-07-24T05:25:05.4733777Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-07-24T05:25:05.4737541Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-07-24T05:25:05.4741114Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-07-24T05:25:05.4745252Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.4748779Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-07-24T05:25:05.4752677Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-07-24T05:25:05.4756129Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-07-24T05:25:05.4759462Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-07-24T05:25:05.4763102Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-07-24T05:25:05.4766890Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-07-24T05:25:05.4770470Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-07-24T05:25:05.4774116Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4777103Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-07-24T05:25:05.4780804Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-07-24T05:25:05.4784150Z adding 'torch/include/ATen/ops/reshape.h' 2025-07-24T05:25:05.4787565Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-07-24T05:25:05.4791301Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4828622Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-24T05:25:05.4828798Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-07-24T05:25:05.4828983Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-07-24T05:25:05.4829249Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4829573Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-24T05:25:05.4829702Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-07-24T05:25:05.4829821Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-07-24T05:25:05.4829919Z adding 'torch/include/ATen/ops/resize.h' 2025-07-24T05:25:05.4830029Z adding 'torch/include/ATen/ops/resize_as.h' 2025-07-24T05:25:05.4830282Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4832429Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-07-24T05:25:05.4835991Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-07-24T05:25:05.4839352Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-07-24T05:25:05.4843064Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4846249Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-07-24T05:25:05.4849585Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-07-24T05:25:05.4852980Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-07-24T05:25:05.4856449Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.4859832Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-07-24T05:25:05.4863067Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-07-24T05:25:05.4866469Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-07-24T05:25:05.4869689Z adding 'torch/include/ATen/ops/resize_native.h' 2025-07-24T05:25:05.4873115Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-07-24T05:25:05.4876591Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-07-24T05:25:05.4879930Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4883427Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-07-24T05:25:05.4886119Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-07-24T05:25:05.4889228Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-07-24T05:25:05.4892516Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4895528Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-07-24T05:25:05.4898722Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-07-24T05:25:05.4901947Z adding 'torch/include/ATen/ops/result_type.h' 2025-07-24T05:25:05.4905543Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4908724Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-07-24T05:25:05.4912164Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-07-24T05:25:05.4915313Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-07-24T05:25:05.4918593Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4921531Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-07-24T05:25:05.4924793Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-07-24T05:25:05.4927855Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-07-24T05:25:05.4931207Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4962168Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-07-24T05:25:05.4962429Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-07-24T05:25:05.4962578Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-07-24T05:25:05.4962857Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4962991Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-07-24T05:25:05.4963111Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-07-24T05:25:05.4963221Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-07-24T05:25:05.4963342Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-07-24T05:25:05.4963612Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4964663Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-07-24T05:25:05.4967942Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-07-24T05:25:05.4971378Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4974534Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-07-24T05:25:05.4977993Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-07-24T05:25:05.4981355Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-07-24T05:25:05.4984680Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-07-24T05:25:05.4988116Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.4991188Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-07-24T05:25:05.4995391Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-07-24T05:25:05.5002480Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.5005112Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-07-24T05:25:05.5008330Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-07-24T05:25:05.5011608Z adding 'torch/include/ATen/ops/roll.h' 2025-07-24T05:25:05.5015421Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5018311Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-07-24T05:25:05.5021492Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-07-24T05:25:05.5024682Z adding 'torch/include/ATen/ops/roll_native.h' 2025-07-24T05:25:05.5028482Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-07-24T05:25:05.5031828Z adding 'torch/include/ATen/ops/rot90.h' 2025-07-24T05:25:05.5035272Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5038308Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-07-24T05:25:05.5041688Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-07-24T05:25:05.5045393Z adding 'torch/include/ATen/ops/round.h' 2025-07-24T05:25:05.5048467Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5051497Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-07-24T05:25:05.5054767Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-07-24T05:25:05.5057933Z adding 'torch/include/ATen/ops/round_meta.h' 2025-07-24T05:25:05.5061178Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-07-24T05:25:05.5064346Z adding 'torch/include/ATen/ops/round_native.h' 2025-07-24T05:25:05.5068038Z adding 'torch/include/ATen/ops/round_ops.h' 2025-07-24T05:25:05.5071230Z adding 'torch/include/ATen/ops/row_indices.h' 2025-07-24T05:25:05.5074582Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5077665Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-07-24T05:25:05.5081087Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5084422Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5087348Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-07-24T05:25:05.5090756Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-07-24T05:25:05.5093903Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-07-24T05:25:05.5097132Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-07-24T05:25:05.5100314Z adding 'torch/include/ATen/ops/row_stack.h' 2025-07-24T05:25:05.5103674Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.5106797Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-07-24T05:25:05.5110118Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-07-24T05:25:05.5113351Z adding 'torch/include/ATen/ops/rrelu.h' 2025-07-24T05:25:05.5116738Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.5119749Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-07-24T05:25:05.5123096Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-07-24T05:25:05.5126565Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-07-24T05:25:05.5129999Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-07-24T05:25:05.5133854Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5136952Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-07-24T05:25:05.5140304Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-07-24T05:25:05.5143720Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5147095Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-07-24T05:25:05.5150369Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-07-24T05:25:05.5153598Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-07-24T05:25:05.5157697Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-07-24T05:25:05.5161457Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-07-24T05:25:05.5164868Z adding 'torch/include/ATen/ops/rshift.h' 2025-07-24T05:25:05.5168296Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5171383Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-07-24T05:25:05.5174583Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-07-24T05:25:05.5177781Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-07-24T05:25:05.5180910Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-07-24T05:25:05.5184820Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-07-24T05:25:05.5188168Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-07-24T05:25:05.5191622Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5195492Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-07-24T05:25:05.5198337Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-07-24T05:25:05.5201048Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-07-24T05:25:05.5204250Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-07-24T05:25:05.5207316Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-07-24T05:25:05.5210640Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-07-24T05:25:05.5213992Z adding 'torch/include/ATen/ops/rsub.h' 2025-07-24T05:25:05.5217449Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5220520Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-07-24T05:25:05.5223673Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-07-24T05:25:05.5226934Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-07-24T05:25:05.5230381Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-07-24T05:25:05.5233899Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-07-24T05:25:05.5237573Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5240749Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-07-24T05:25:05.5244147Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-07-24T05:25:05.5247762Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-07-24T05:25:05.5251343Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.5254541Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-07-24T05:25:05.5258192Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-07-24T05:25:05.5261744Z adding 'torch/include/ATen/ops/scatter.h' 2025-07-24T05:25:05.5265748Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-07-24T05:25:05.5269746Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5273371Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.5276648Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-07-24T05:25:05.5279847Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-07-24T05:25:05.5339971Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-07-24T05:25:05.5340292Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-07-24T05:25:05.5340451Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-07-24T05:25:05.5340576Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-07-24T05:25:05.5340913Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5341166Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.5341315Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-07-24T05:25:05.5341460Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-07-24T05:25:05.5341582Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-07-24T05:25:05.5341731Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-07-24T05:25:05.5341858Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-07-24T05:25:05.5341978Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-07-24T05:25:05.5342094Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-07-24T05:25:05.5342440Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5342627Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-07-24T05:25:05.5342803Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-07-24T05:25:05.5343781Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-07-24T05:25:05.5347346Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-07-24T05:25:05.5351732Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-07-24T05:25:05.5354234Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-07-24T05:25:05.5358350Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-07-24T05:25:05.5362182Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-07-24T05:25:05.5364972Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-07-24T05:25:05.5368399Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-07-24T05:25:05.5372006Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-07-24T05:25:05.5375528Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-07-24T05:25:05.5379046Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5382203Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-07-24T05:25:05.5385894Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-07-24T05:25:05.5389012Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-07-24T05:25:05.5392454Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-07-24T05:25:05.5395780Z adding 'torch/include/ATen/ops/select.h' 2025-07-24T05:25:05.5399347Z adding 'torch/include/ATen/ops/select_backward.h' 2025-07-24T05:25:05.5402943Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5406277Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5409290Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-07-24T05:25:05.5412883Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-07-24T05:25:05.5416296Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5419547Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.5422844Z adding 'torch/include/ATen/ops/select_copy.h' 2025-07-24T05:25:05.5426471Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5429784Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5433162Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-07-24T05:25:05.5436627Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-07-24T05:25:05.5439823Z adding 'torch/include/ATen/ops/select_native.h' 2025-07-24T05:25:05.5443163Z adding 'torch/include/ATen/ops/select_ops.h' 2025-07-24T05:25:05.5446635Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-07-24T05:25:05.5450155Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5453547Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5456523Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-07-24T05:25:05.5459932Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-07-24T05:25:05.5463105Z adding 'torch/include/ATen/ops/selu.h' 2025-07-24T05:25:05.5466565Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.5469820Z adding 'torch/include/ATen/ops/selu_native.h' 2025-07-24T05:25:05.5473138Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-07-24T05:25:05.5477244Z adding 'torch/include/ATen/ops/set.h' 2025-07-24T05:25:05.5481015Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5484405Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.5487600Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-07-24T05:25:05.5490913Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-07-24T05:25:05.5494019Z adding 'torch/include/ATen/ops/set_data.h' 2025-07-24T05:25:05.5497343Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.5500309Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-07-24T05:25:05.5503531Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-07-24T05:25:05.5507018Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-07-24T05:25:05.5510441Z adding 'torch/include/ATen/ops/set_native.h' 2025-07-24T05:25:05.5515043Z adding 'torch/include/ATen/ops/set_ops.h' 2025-07-24T05:25:05.5518002Z adding 'torch/include/ATen/ops/sgn.h' 2025-07-24T05:25:05.5521480Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5524519Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-07-24T05:25:05.5527680Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-07-24T05:25:05.5530771Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-07-24T05:25:05.5533964Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-07-24T05:25:05.5537331Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-07-24T05:25:05.5540717Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-07-24T05:25:05.5543944Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-07-24T05:25:05.5547405Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-07-24T05:25:05.5550880Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5553932Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-07-24T05:25:05.5557239Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-07-24T05:25:05.5560320Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-07-24T05:25:05.5563595Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-07-24T05:25:05.5566747Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-07-24T05:25:05.5570090Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-07-24T05:25:05.5573914Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5576992Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-07-24T05:25:05.5580475Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-07-24T05:25:05.5584038Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-07-24T05:25:05.5587899Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-07-24T05:25:05.5591163Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-07-24T05:25:05.5594767Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-07-24T05:25:05.5598452Z adding 'torch/include/ATen/ops/sign.h' 2025-07-24T05:25:05.5602592Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5606036Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-07-24T05:25:05.5609749Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-07-24T05:25:05.5613289Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-07-24T05:25:05.5617040Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-07-24T05:25:05.5620613Z adding 'torch/include/ATen/ops/sign_native.h' 2025-07-24T05:25:05.5624609Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-07-24T05:25:05.5628363Z adding 'torch/include/ATen/ops/signbit.h' 2025-07-24T05:25:05.5632373Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5635899Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-07-24T05:25:05.5639244Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-07-24T05:25:05.5665758Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-07-24T05:25:05.5666105Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-07-24T05:25:05.5666234Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-07-24T05:25:05.5666355Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-07-24T05:25:05.5666465Z adding 'torch/include/ATen/ops/silu.h' 2025-07-24T05:25:05.5666630Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-07-24T05:25:05.5666983Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5667265Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.5669840Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-07-24T05:25:05.5672946Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-07-24T05:25:05.5676044Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-07-24T05:25:05.5679945Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-07-24T05:25:05.5682578Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-07-24T05:25:05.5685943Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-07-24T05:25:05.5689667Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5692714Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-07-24T05:25:05.5696052Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-07-24T05:25:05.5699197Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-07-24T05:25:05.5702576Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-07-24T05:25:05.5705878Z adding 'torch/include/ATen/ops/silu_native.h' 2025-07-24T05:25:05.5709208Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-07-24T05:25:05.5712687Z adding 'torch/include/ATen/ops/sin.h' 2025-07-24T05:25:05.5716137Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5719163Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-07-24T05:25:05.5722319Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-07-24T05:25:05.5725403Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-07-24T05:25:05.5728586Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-07-24T05:25:05.5731721Z adding 'torch/include/ATen/ops/sin_native.h' 2025-07-24T05:25:05.5735063Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-07-24T05:25:05.5738300Z adding 'torch/include/ATen/ops/sinc.h' 2025-07-24T05:25:05.5741709Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5744755Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-07-24T05:25:05.5747953Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-07-24T05:25:05.5751045Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-07-24T05:25:05.5754238Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-07-24T05:25:05.5757301Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-07-24T05:25:05.5760595Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-07-24T05:25:05.5763847Z adding 'torch/include/ATen/ops/sinh.h' 2025-07-24T05:25:05.5767265Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5770802Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-07-24T05:25:05.5774486Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-07-24T05:25:05.5777467Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-07-24T05:25:05.5781093Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-07-24T05:25:05.5784807Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-07-24T05:25:05.5788375Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-07-24T05:25:05.5791715Z adding 'torch/include/ATen/ops/size.h' 2025-07-24T05:25:05.5795165Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.5798247Z adding 'torch/include/ATen/ops/size_native.h' 2025-07-24T05:25:05.5801572Z adding 'torch/include/ATen/ops/size_ops.h' 2025-07-24T05:25:05.5805176Z adding 'torch/include/ATen/ops/slice.h' 2025-07-24T05:25:05.5808864Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-07-24T05:25:05.5812687Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5815952Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-07-24T05:25:05.5819376Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-07-24T05:25:05.5822950Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5826706Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-07-24T05:25:05.5830468Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5834029Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5837028Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-07-24T05:25:05.5841257Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-07-24T05:25:05.5844209Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-07-24T05:25:05.5847820Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5850973Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-07-24T05:25:05.5854304Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-07-24T05:25:05.5857605Z adding 'torch/include/ATen/ops/slice_native.h' 2025-07-24T05:25:05.5860899Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-07-24T05:25:05.5865222Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-07-24T05:25:05.5869072Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5872557Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5875894Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-07-24T05:25:05.5879313Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-07-24T05:25:05.5882789Z adding 'torch/include/ATen/ops/slogdet.h' 2025-07-24T05:25:05.5886208Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.5889470Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-07-24T05:25:05.5892963Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-07-24T05:25:05.5896670Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-07-24T05:25:05.5900537Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.5904344Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-07-24T05:25:05.5908058Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-07-24T05:25:05.5911406Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-07-24T05:25:05.5914858Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-07-24T05:25:05.5918315Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-07-24T05:25:05.5922307Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-07-24T05:25:05.5925975Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-07-24T05:25:05.5929629Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5932861Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-07-24T05:25:05.5936365Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-07-24T05:25:05.5939908Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-07-24T05:25:05.5943213Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-07-24T05:25:05.5948106Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-07-24T05:25:05.5952013Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.5975991Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-07-24T05:25:05.5976536Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-07-24T05:25:05.5977032Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-07-24T05:25:05.5977467Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-07-24T05:25:05.5977871Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-07-24T05:25:05.5978494Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.5979202Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-07-24T05:25:05.5979906Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-07-24T05:25:05.5983618Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-07-24T05:25:05.5987078Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-07-24T05:25:05.5990544Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-07-24T05:25:05.5994385Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-07-24T05:25:05.5998709Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-07-24T05:25:05.6002075Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-07-24T05:25:05.6005543Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-07-24T05:25:05.6008927Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-07-24T05:25:05.6012862Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-07-24T05:25:05.6015788Z adding 'torch/include/ATen/ops/smm.h' 2025-07-24T05:25:05.6019283Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.6022288Z adding 'torch/include/ATen/ops/smm_native.h' 2025-07-24T05:25:05.6025846Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-07-24T05:25:05.6029142Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-07-24T05:25:05.6032701Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-07-24T05:25:05.6036533Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.6039493Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-07-24T05:25:05.6042924Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-07-24T05:25:05.6046018Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-07-24T05:25:05.6049582Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-07-24T05:25:05.6053035Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6056356Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-07-24T05:25:05.6059830Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-07-24T05:25:05.6062950Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-07-24T05:25:05.6066709Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-07-24T05:25:05.6069699Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-07-24T05:25:05.6073204Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-07-24T05:25:05.6076530Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-07-24T05:25:05.6080050Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-07-24T05:25:05.6083898Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.6086753Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-07-24T05:25:05.6090415Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-07-24T05:25:05.6093698Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.6096883Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-07-24T05:25:05.6100186Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-07-24T05:25:05.6103712Z adding 'torch/include/ATen/ops/softmax.h' 2025-07-24T05:25:05.6107833Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.6110949Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.6114306Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-07-24T05:25:05.6117584Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-07-24T05:25:05.6121209Z adding 'torch/include/ATen/ops/softplus.h' 2025-07-24T05:25:05.6124380Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-07-24T05:25:05.6128133Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6131452Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-07-24T05:25:05.6155699Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-07-24T05:25:05.6157141Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-07-24T05:25:05.6157644Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-07-24T05:25:05.6158163Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-07-24T05:25:05.6158616Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-07-24T05:25:05.6159377Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6159968Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-07-24T05:25:05.6161373Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-07-24T05:25:05.6164602Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-07-24T05:25:05.6167976Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-07-24T05:25:05.6171252Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-07-24T05:25:05.6174679Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-07-24T05:25:05.6178138Z adding 'torch/include/ATen/ops/softshrink.h' 2025-07-24T05:25:05.6181481Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-07-24T05:25:05.6185078Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6188216Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-07-24T05:25:05.6191713Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-07-24T05:25:05.6194820Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-07-24T05:25:05.6198237Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-07-24T05:25:05.6201279Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-07-24T05:25:05.6204495Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-07-24T05:25:05.6208229Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6211326Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-07-24T05:25:05.6214546Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-07-24T05:25:05.6217612Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-07-24T05:25:05.6220798Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-07-24T05:25:05.6223875Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-07-24T05:25:05.6227322Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-07-24T05:25:05.6231009Z adding 'torch/include/ATen/ops/sort.h' 2025-07-24T05:25:05.6234529Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.6238211Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6241217Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.6565069Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-07-24T05:25:05.6565704Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-07-24T05:25:05.6566164Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-07-24T05:25:05.6566589Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-07-24T05:25:05.6566948Z adding 'torch/include/ATen/ops/sort_native.h' 2025-07-24T05:25:05.6567272Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-07-24T05:25:05.6567595Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-07-24T05:25:05.6568124Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.6568686Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-07-24T05:25:05.6569098Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-07-24T05:25:05.6569462Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-07-24T05:25:05.6569971Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.6570525Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-07-24T05:25:05.6570929Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-07-24T05:25:05.6571339Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-07-24T05:25:05.6572793Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.6573424Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-07-24T05:25:05.6573969Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-07-24T05:25:05.6574441Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-07-24T05:25:05.6574964Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.6596935Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.6597592Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-07-24T05:25:05.6598001Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-07-24T05:25:05.6598388Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-07-24T05:25:05.6598895Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.6599456Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-07-24T05:25:05.6599880Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-07-24T05:25:05.6600246Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-07-24T05:25:05.6600761Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.6601315Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-07-24T05:25:05.6601731Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-07-24T05:25:05.6602140Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-07-24T05:25:05.6602648Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.6603173Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-07-24T05:25:05.6603522Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-07-24T05:25:05.6603870Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-07-24T05:25:05.6604344Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.6604864Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-07-24T05:25:05.6605248Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-07-24T05:25:05.6605607Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-07-24T05:25:05.6605993Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-07-24T05:25:05.6606564Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.6607231Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-07-24T05:25:05.6607746Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-07-24T05:25:05.6608275Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-07-24T05:25:05.6608825Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.6609448Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-07-24T05:25:05.6609888Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-07-24T05:25:05.6610265Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-07-24T05:25:05.6610653Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-07-24T05:25:05.6611074Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-07-24T05:25:05.6611532Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-07-24T05:25:05.6611919Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-07-24T05:25:05.6612503Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6613150Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-07-24T05:25:05.6613618Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-07-24T05:25:05.6614059Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-07-24T05:25:05.6614526Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-07-24T05:25:05.6615675Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-07-24T05:25:05.6616075Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-07-24T05:25:05.6616446Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-07-24T05:25:05.6617099Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6617791Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-07-24T05:25:05.6618279Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-07-24T05:25:05.6618718Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-07-24T05:25:05.6619164Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-07-24T05:25:05.6619665Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-07-24T05:25:05.6620088Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-07-24T05:25:05.6620533Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-07-24T05:25:05.6621165Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6621823Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-07-24T05:25:05.6622298Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-07-24T05:25:05.6622748Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-07-24T05:25:05.6623195Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-07-24T05:25:05.6792703Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-07-24T05:25:05.6793170Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-07-24T05:25:05.6793553Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-07-24T05:25:05.6794196Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6794848Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-07-24T05:25:05.6795340Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-07-24T05:25:05.6795803Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-07-24T05:25:05.6796235Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-07-24T05:25:05.6796692Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-07-24T05:25:05.6797104Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-07-24T05:25:05.6797489Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-07-24T05:25:05.6798075Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6798747Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-07-24T05:25:05.6799222Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-07-24T05:25:05.6799670Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-07-24T05:25:05.6800114Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-07-24T05:25:05.6800560Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-07-24T05:25:05.6800978Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-07-24T05:25:05.6801401Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-07-24T05:25:05.6802042Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.6802916Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6803702Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-07-24T05:25:05.6804303Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-07-24T05:25:05.6804865Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-07-24T05:25:05.6805434Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-07-24T05:25:05.6806003Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-07-24T05:25:05.6807285Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-07-24T05:25:05.6807778Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-07-24T05:25:05.6808422Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.6809428Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6810204Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-07-24T05:25:05.6810823Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-07-24T05:25:05.6811453Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-07-24T05:25:05.6812013Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-07-24T05:25:05.6812596Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-07-24T05:25:05.6813130Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-07-24T05:25:05.6813637Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-07-24T05:25:05.6814272Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.6815152Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6815931Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-07-24T05:25:05.6816532Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-07-24T05:25:05.6817099Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-07-24T05:25:05.6817658Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-07-24T05:25:05.6818235Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-07-24T05:25:05.6818761Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-07-24T05:25:05.6819263Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-07-24T05:25:05.6819896Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.6820773Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6821549Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-07-24T05:25:05.6822145Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-07-24T05:25:05.6822717Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-07-24T05:25:05.6823272Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-07-24T05:25:05.6823856Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-07-24T05:25:05.6949428Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-07-24T05:25:05.6950625Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-07-24T05:25:05.6951822Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.6953064Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-07-24T05:25:05.6953997Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-07-24T05:25:05.6954803Z adding 'torch/include/ATen/ops/special_entr.h' 2025-07-24T05:25:05.6956233Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6957711Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-07-24T05:25:05.6958667Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-07-24T05:25:05.6959541Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-07-24T05:25:05.6960486Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-07-24T05:25:05.6961402Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-07-24T05:25:05.6963553Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-07-24T05:25:05.6964339Z adding 'torch/include/ATen/ops/special_erf.h' 2025-07-24T05:25:05.6965450Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.6966780Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-07-24T05:25:05.6967802Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-07-24T05:25:05.6968604Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-07-24T05:25:05.6969664Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.6970898Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-07-24T05:25:05.6971902Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-07-24T05:25:05.6972708Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-07-24T05:25:05.6974003Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.6975417Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-07-24T05:25:05.6976448Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-07-24T05:25:05.6977448Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-07-24T05:25:05.6978335Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-07-24T05:25:05.6979439Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-07-24T05:25:05.6980281Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-07-24T05:25:05.6981054Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-07-24T05:25:05.6982197Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.6983469Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-07-24T05:25:05.6984356Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-07-24T05:25:05.6985292Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-07-24T05:25:05.6986399Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.6987571Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-07-24T05:25:05.6988467Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-07-24T05:25:05.6989274Z adding 'torch/include/ATen/ops/special_expit.h' 2025-07-24T05:25:05.6990389Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.6991647Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-07-24T05:25:05.6992902Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-07-24T05:25:05.6993980Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-07-24T05:25:05.6995261Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.6996507Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-07-24T05:25:05.6997362Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-07-24T05:25:05.6998168Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-07-24T05:25:05.6999358Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7000642Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-07-24T05:25:05.7001553Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-07-24T05:25:05.7002448Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-07-24T05:25:05.7003580Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7004892Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-07-24T05:25:05.7005881Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-07-24T05:25:05.7006728Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-07-24T05:25:05.7222354Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7223877Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-07-24T05:25:05.7224804Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-07-24T05:25:05.7225702Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-07-24T05:25:05.7228307Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7230198Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7232065Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-07-24T05:25:05.7233361Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-07-24T05:25:05.7234545Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-07-24T05:25:05.7235725Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-07-24T05:25:05.7237908Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-07-24T05:25:05.7239005Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-07-24T05:25:05.7240063Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-07-24T05:25:05.7241419Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7243336Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7245022Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-07-24T05:25:05.7246297Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-07-24T05:25:05.7247509Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-07-24T05:25:05.7248682Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-07-24T05:25:05.7249906Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-07-24T05:25:05.7251017Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-07-24T05:25:05.7251918Z adding 'torch/include/ATen/ops/special_i0.h' 2025-07-24T05:25:05.7252938Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7254010Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-07-24T05:25:05.7254768Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-07-24T05:25:05.7255482Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-07-24T05:25:05.7256668Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7257975Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-07-24T05:25:05.7258902Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-07-24T05:25:05.7259747Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-07-24T05:25:05.7260562Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-07-24T05:25:05.7261444Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-07-24T05:25:05.7262210Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-07-24T05:25:05.7262926Z adding 'torch/include/ATen/ops/special_i1.h' 2025-07-24T05:25:05.7264086Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7265461Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-07-24T05:25:05.7266355Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-07-24T05:25:05.7267192Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-07-24T05:25:05.7268010Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-07-24T05:25:05.7268832Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-07-24T05:25:05.7269597Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-07-24T05:25:05.7270307Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-07-24T05:25:05.7271490Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7272792Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-07-24T05:25:05.7273701Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-07-24T05:25:05.7274699Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-07-24T05:25:05.7275526Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-07-24T05:25:05.7276383Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-07-24T05:25:05.7277154Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-07-24T05:25:05.7278113Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-07-24T05:25:05.7279557Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7281464Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7283140Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-07-24T05:25:05.7284996Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-07-24T05:25:05.7424850Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-07-24T05:25:05.7425506Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-07-24T05:25:05.7426113Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-07-24T05:25:05.7426641Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-07-24T05:25:05.7427134Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-07-24T05:25:05.7427776Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7428645Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7429423Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-07-24T05:25:05.7430032Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-07-24T05:25:05.7430577Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-07-24T05:25:05.7431127Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-07-24T05:25:05.7431702Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-07-24T05:25:05.7432226Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-07-24T05:25:05.7432651Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-07-24T05:25:05.7433147Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7433680Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-07-24T05:25:05.7434049Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-07-24T05:25:05.7434406Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-07-24T05:25:05.7434982Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7435627Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-07-24T05:25:05.7436099Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-07-24T05:25:05.7436539Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-07-24T05:25:05.7436968Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-07-24T05:25:05.7437423Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-07-24T05:25:05.7437868Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-07-24T05:25:05.7438252Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-07-24T05:25:05.7438799Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7439396Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-07-24T05:25:05.7439826Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-07-24T05:25:05.7440214Z adding 'torch/include/ATen/ops/special_logit.h' 2025-07-24T05:25:05.7440706Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7441237Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-07-24T05:25:05.7441603Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-07-24T05:25:05.7442113Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-07-24T05:25:05.7442635Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7443208Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-07-24T05:25:05.7443748Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-07-24T05:25:05.7444166Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-07-24T05:25:05.7444845Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7445575Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-07-24T05:25:05.7446596Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-07-24T05:25:05.7447140Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-07-24T05:25:05.7447672Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-07-24T05:25:05.7448221Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-07-24T05:25:05.7448706Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-07-24T05:25:05.7449172Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-07-24T05:25:05.7449838Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7450571Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-07-24T05:25:05.7451147Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-07-24T05:25:05.7451667Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-07-24T05:25:05.7452198Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-07-24T05:25:05.7452731Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-07-24T05:25:05.7453232Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-07-24T05:25:05.7525821Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-07-24T05:25:05.7527058Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7527818Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-07-24T05:25:05.7528387Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-07-24T05:25:05.7528919Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-07-24T05:25:05.7529444Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-07-24T05:25:05.7529991Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-07-24T05:25:05.7530484Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-07-24T05:25:05.7530948Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-07-24T05:25:05.7531623Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7532353Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-07-24T05:25:05.7532925Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-07-24T05:25:05.7533449Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-07-24T05:25:05.7533978Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-07-24T05:25:05.7534514Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-07-24T05:25:05.7534999Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-07-24T05:25:05.7535435Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-07-24T05:25:05.7535986Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7536593Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-07-24T05:25:05.7537032Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-07-24T05:25:05.7537563Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-07-24T05:25:05.7538042Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7538571Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-07-24T05:25:05.7539009Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-07-24T05:25:05.7539519Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-07-24T05:25:05.7540105Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7540732Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-07-24T05:25:05.7541610Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-07-24T05:25:05.7542020Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-07-24T05:25:05.7542447Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-07-24T05:25:05.7542873Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-07-24T05:25:05.7543245Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-07-24T05:25:05.7543609Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-07-24T05:25:05.7544126Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7544804Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-07-24T05:25:05.7545270Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-07-24T05:25:05.7545630Z adding 'torch/include/ATen/ops/special_psi.h' 2025-07-24T05:25:05.7546124Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7546640Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-07-24T05:25:05.7547018Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-07-24T05:25:05.7547368Z adding 'torch/include/ATen/ops/special_round.h' 2025-07-24T05:25:05.7547862Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7548400Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-07-24T05:25:05.7548765Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-07-24T05:25:05.7549198Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-07-24T05:25:05.7549932Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7550733Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-07-24T05:25:05.7551342Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-07-24T05:25:05.7551927Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-07-24T05:25:05.7552516Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-07-24T05:25:05.7553101Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-07-24T05:25:05.7553665Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-07-24T05:25:05.7554189Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-07-24T05:25:05.7554924Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7627096Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-07-24T05:25:05.7628326Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-07-24T05:25:05.7628920Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-07-24T05:25:05.7629499Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-07-24T05:25:05.7630110Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-07-24T05:25:05.7630662Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-07-24T05:25:05.7631209Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-07-24T05:25:05.7632037Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7633388Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7634759Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-07-24T05:25:05.7635483Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-07-24T05:25:05.7636128Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-07-24T05:25:05.7636759Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-07-24T05:25:05.7638736Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-07-24T05:25:05.7639440Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-07-24T05:25:05.7640066Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-07-24T05:25:05.7640908Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7641983Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7642944Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-07-24T05:25:05.7643666Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-07-24T05:25:05.7644408Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-07-24T05:25:05.7645100Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-07-24T05:25:05.7645791Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-07-24T05:25:05.7646504Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-07-24T05:25:05.7647121Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-07-24T05:25:05.7647931Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7648996Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7649888Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-07-24T05:25:05.7650659Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-07-24T05:25:05.7651339Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-07-24T05:25:05.7652055Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-07-24T05:25:05.7652761Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-07-24T05:25:05.7653409Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-07-24T05:25:05.7654040Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-07-24T05:25:05.7654848Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7655917Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7656871Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-07-24T05:25:05.7657584Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-07-24T05:25:05.7658321Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-07-24T05:25:05.7659012Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-07-24T05:25:05.7659719Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-07-24T05:25:05.7660426Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-07-24T05:25:05.7661066Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-07-24T05:25:05.7661611Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7662194Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-07-24T05:25:05.7662692Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-07-24T05:25:05.7663165Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-07-24T05:25:05.7663740Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7664363Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-07-24T05:25:05.7667163Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-07-24T05:25:05.7670915Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-07-24T05:25:05.7675153Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7678273Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-07-24T05:25:05.7681934Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-07-24T05:25:05.7794695Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-07-24T05:25:05.7795286Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-07-24T05:25:05.7795848Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-07-24T05:25:05.7796356Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-07-24T05:25:05.7796782Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-07-24T05:25:05.7797293Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7798037Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7798668Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-07-24T05:25:05.7799153Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-07-24T05:25:05.7799588Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-07-24T05:25:05.7800008Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-07-24T05:25:05.7800442Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-07-24T05:25:05.7800832Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-07-24T05:25:05.7800956Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-07-24T05:25:05.7801226Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7801366Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-07-24T05:25:05.7801497Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-07-24T05:25:05.7801616Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-07-24T05:25:05.7801891Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7802226Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7802399Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-07-24T05:25:05.7802562Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-07-24T05:25:05.7802689Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-07-24T05:25:05.7802866Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-07-24T05:25:05.7802999Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-07-24T05:25:05.7803125Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-07-24T05:25:05.7803228Z adding 'torch/include/ATen/ops/split.h' 2025-07-24T05:25:05.7803468Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7803706Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7803815Z adding 'torch/include/ATen/ops/split_copy.h' 2025-07-24T05:25:05.7804083Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7804531Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7804662Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-07-24T05:25:05.7804796Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-07-24T05:25:05.7804977Z adding 'torch/include/ATen/ops/split_native.h' 2025-07-24T05:25:05.7806029Z adding 'torch/include/ATen/ops/split_ops.h' 2025-07-24T05:25:05.7809465Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-07-24T05:25:05.7812520Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7815776Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-07-24T05:25:05.7819276Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7822528Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7825715Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-07-24T05:25:05.7828804Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-07-24T05:25:05.7832066Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-07-24T05:25:05.7835149Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-07-24T05:25:05.7838314Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-07-24T05:25:05.7841416Z adding 'torch/include/ATen/ops/sqrt.h' 2025-07-24T05:25:05.7844762Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7847740Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-07-24T05:25:05.7850840Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-07-24T05:25:05.7853838Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-07-24T05:25:05.7856937Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-07-24T05:25:05.7860336Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-07-24T05:25:05.7863622Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-07-24T05:25:05.7866952Z adding 'torch/include/ATen/ops/square.h' 2025-07-24T05:25:05.7870253Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7873146Z adding 'torch/include/ATen/ops/square_native.h' 2025-07-24T05:25:05.7876403Z adding 'torch/include/ATen/ops/square_ops.h' 2025-07-24T05:25:05.7879579Z adding 'torch/include/ATen/ops/squeeze.h' 2025-07-24T05:25:05.7882871Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7886010Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7889195Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-07-24T05:25:05.7892558Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7895796Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.7898658Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-07-24T05:25:05.7902071Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-07-24T05:25:05.7905390Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-07-24T05:25:05.7908919Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-07-24T05:25:05.7912185Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-07-24T05:25:05.7915495Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7918517Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-07-24T05:25:05.7921659Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-07-24T05:25:05.7924728Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-07-24T05:25:05.7927989Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-07-24T05:25:05.7931107Z adding 'torch/include/ATen/ops/stack.h' 2025-07-24T05:25:05.7934407Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7937313Z adding 'torch/include/ATen/ops/stack_native.h' 2025-07-24T05:25:05.7940502Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-07-24T05:25:05.7943966Z adding 'torch/include/ATen/ops/std.h' 2025-07-24T05:25:05.7947630Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7951071Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-07-24T05:25:05.7954236Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-07-24T05:25:05.7957490Z adding 'torch/include/ATen/ops/std_mean.h' 2025-07-24T05:25:05.7960885Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.7964061Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.7967091Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-07-24T05:25:05.7970220Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-07-24T05:25:05.7973339Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-07-24T05:25:05.7976930Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-07-24T05:25:05.7980220Z adding 'torch/include/ATen/ops/std_native.h' 2025-07-24T05:25:05.7983950Z adding 'torch/include/ATen/ops/std_ops.h' 2025-07-24T05:25:05.7987534Z adding 'torch/include/ATen/ops/stft.h' 2025-07-24T05:25:05.8052398Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8052697Z adding 'torch/include/ATen/ops/stft_native.h' 2025-07-24T05:25:05.8052859Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-07-24T05:25:05.8052964Z adding 'torch/include/ATen/ops/stride.h' 2025-07-24T05:25:05.8053233Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8053375Z adding 'torch/include/ATen/ops/stride_native.h' 2025-07-24T05:25:05.8053486Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-07-24T05:25:05.8053587Z adding 'torch/include/ATen/ops/sub.h' 2025-07-24T05:25:05.8053825Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.8054125Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.8054258Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-07-24T05:25:05.8054385Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-07-24T05:25:05.8054485Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-07-24T05:25:05.8054610Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-07-24T05:25:05.8054724Z adding 'torch/include/ATen/ops/sub_native.h' 2025-07-24T05:25:05.8054829Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-07-24T05:25:05.8054931Z adding 'torch/include/ATen/ops/subtract.h' 2025-07-24T05:25:05.8055200Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8055323Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-07-24T05:25:05.8055442Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-07-24T05:25:05.8056628Z adding 'torch/include/ATen/ops/sum.h' 2025-07-24T05:25:05.8060050Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.8063307Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.8066739Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8069848Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-07-24T05:25:05.8073181Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-07-24T05:25:05.8076422Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-07-24T05:25:05.8079583Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-07-24T05:25:05.8083037Z adding 'torch/include/ATen/ops/sum_native.h' 2025-07-24T05:25:05.8086503Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-07-24T05:25:05.8089932Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-07-24T05:25:05.8093219Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8096344Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-07-24T05:25:05.8099447Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-07-24T05:25:05.8102911Z adding 'torch/include/ATen/ops/svd.h' 2025-07-24T05:25:05.8106487Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8109398Z adding 'torch/include/ATen/ops/svd_native.h' 2025-07-24T05:25:05.8113010Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-07-24T05:25:05.8116064Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-07-24T05:25:05.8119594Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8122319Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-07-24T05:25:05.8125681Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-07-24T05:25:05.8128733Z adding 'torch/include/ATen/ops/swapdims.h' 2025-07-24T05:25:05.8132169Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8135076Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-07-24T05:25:05.8138405Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-07-24T05:25:05.8141740Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-07-24T05:25:05.8145899Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.8149197Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-07-24T05:25:05.8153218Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.8156447Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-07-24T05:25:05.8160021Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-07-24T05:25:05.8163444Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-07-24T05:25:05.8167077Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-07-24T05:25:05.8170508Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-07-24T05:25:05.8174464Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8177771Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-07-24T05:25:05.8181398Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-07-24T05:25:05.8185014Z adding 'torch/include/ATen/ops/sym_size.h' 2025-07-24T05:25:05.8189007Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8191930Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-07-24T05:25:05.8195062Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-07-24T05:25:05.8198412Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-07-24T05:25:05.8201692Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8204887Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-07-24T05:25:05.8208221Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-07-24T05:25:05.8211253Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-07-24T05:25:05.8214510Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8217385Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-07-24T05:25:05.8220706Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-07-24T05:25:05.8223843Z adding 'torch/include/ATen/ops/t.h' 2025-07-24T05:25:05.8227348Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.8230381Z adding 'torch/include/ATen/ops/t_copy.h' 2025-07-24T05:25:05.8233665Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.8237278Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.8240018Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-07-24T05:25:05.8243600Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-07-24T05:25:05.8246625Z adding 'torch/include/ATen/ops/t_native.h' 2025-07-24T05:25:05.8249763Z adding 'torch/include/ATen/ops/t_ops.h' 2025-07-24T05:25:05.8252891Z adding 'torch/include/ATen/ops/take.h' 2025-07-24T05:25:05.8256069Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-07-24T05:25:05.8259417Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8262320Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-07-24T05:25:05.8265862Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-07-24T05:25:05.8269464Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-07-24T05:25:05.8272347Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-07-24T05:25:05.8275324Z adding 'torch/include/ATen/ops/take_native.h' 2025-07-24T05:25:05.8278490Z adding 'torch/include/ATen/ops/take_ops.h' 2025-07-24T05:25:05.8281583Z adding 'torch/include/ATen/ops/tan.h' 2025-07-24T05:25:05.8284943Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.8287833Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-07-24T05:25:05.8290885Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-07-24T05:25:05.8293839Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-07-24T05:25:05.8300922Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-07-24T05:25:05.8303985Z adding 'torch/include/ATen/ops/tan_native.h' 2025-07-24T05:25:05.8307323Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-07-24T05:25:05.8310415Z adding 'torch/include/ATen/ops/tanh.h' 2025-07-24T05:25:05.8313564Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-07-24T05:25:05.8316952Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.8319857Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-07-24T05:25:05.8322947Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-07-24T05:25:05.8325902Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-07-24T05:25:05.8452193Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-07-24T05:25:05.8452547Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-07-24T05:25:05.8452699Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-07-24T05:25:05.8453006Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.8453140Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-07-24T05:25:05.8453271Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-07-24T05:25:05.8453385Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-07-24T05:25:05.8453522Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-07-24T05:25:05.8453645Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-07-24T05:25:05.8453745Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-07-24T05:25:05.8453844Z adding 'torch/include/ATen/ops/tensor.h' 2025-07-24T05:25:05.8453967Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-07-24T05:25:05.8454234Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8454375Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-07-24T05:25:05.8454509Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-07-24T05:25:05.8454613Z adding 'torch/include/ATen/ops/tensordot.h' 2025-07-24T05:25:05.8454869Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8454993Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-07-24T05:25:05.8455124Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-07-24T05:25:05.8455233Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-07-24T05:25:05.8455487Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8455622Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-07-24T05:25:05.8455739Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-07-24T05:25:05.8455846Z adding 'torch/include/ATen/ops/threshold.h' 2025-07-24T05:25:05.8455977Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-07-24T05:25:05.8456364Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.8456678Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-07-24T05:25:05.8456876Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-07-24T05:25:05.8457040Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-07-24T05:25:05.8457301Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-07-24T05:25:05.8457571Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-07-24T05:25:05.8457731Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-07-24T05:25:05.8462122Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.8462420Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-07-24T05:25:05.8462584Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-07-24T05:25:05.8462714Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-07-24T05:25:05.8462873Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-07-24T05:25:05.8463016Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-07-24T05:25:05.8463142Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-07-24T05:25:05.8463237Z adding 'torch/include/ATen/ops/tile.h' 2025-07-24T05:25:05.8465178Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8467985Z adding 'torch/include/ATen/ops/tile_native.h' 2025-07-24T05:25:05.8471296Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-07-24T05:25:05.8474281Z adding 'torch/include/ATen/ops/to.h' 2025-07-24T05:25:05.8478040Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8481024Z adding 'torch/include/ATen/ops/to_dense.h' 2025-07-24T05:25:05.8484308Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-07-24T05:25:05.8488074Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8490722Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-07-24T05:25:05.8494163Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-07-24T05:25:05.8497331Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8500443Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-07-24T05:25:05.8503611Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-07-24T05:25:05.8507052Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-07-24T05:25:05.8510159Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-07-24T05:25:05.8513690Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8516574Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-07-24T05:25:05.8519895Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-07-24T05:25:05.8523508Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.8526455Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-07-24T05:25:05.8529647Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-07-24T05:25:05.8532859Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-07-24T05:25:05.8536260Z adding 'torch/include/ATen/ops/to_native.h' 2025-07-24T05:25:05.8539686Z adding 'torch/include/ATen/ops/to_ops.h' 2025-07-24T05:25:05.8543449Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-07-24T05:25:05.8547390Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.8550256Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-07-24T05:25:05.8553741Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-07-24T05:25:05.8556691Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-07-24T05:25:05.8559895Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-07-24T05:25:05.8563043Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8566120Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-07-24T05:25:05.8569251Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-07-24T05:25:05.8572424Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-07-24T05:25:05.8575726Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8578791Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-07-24T05:25:05.8582018Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-07-24T05:25:05.8585621Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8588550Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-07-24T05:25:05.8592927Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8595309Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-07-24T05:25:05.8598211Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-07-24T05:25:05.8601530Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-07-24T05:25:05.8604695Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8607922Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-07-24T05:25:05.8610929Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-07-24T05:25:05.8614440Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-07-24T05:25:05.8617495Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-07-24T05:25:05.8621166Z adding 'torch/include/ATen/ops/topk.h' 2025-07-24T05:25:05.8625196Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.8628418Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-07-24T05:25:05.8631853Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-07-24T05:25:05.8634952Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-07-24T05:25:05.8638362Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-07-24T05:25:05.8641501Z adding 'torch/include/ATen/ops/topk_native.h' 2025-07-24T05:25:05.8645073Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-07-24T05:25:05.8648762Z adding 'torch/include/ATen/ops/trace.h' 2025-07-24T05:25:05.8652464Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-07-24T05:25:05.8656294Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8659696Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-07-24T05:25:05.8663273Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-07-24T05:25:05.8692204Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.8692524Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-07-24T05:25:05.8692735Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-07-24T05:25:05.8692875Z adding 'torch/include/ATen/ops/trace_native.h' 2025-07-24T05:25:05.8692980Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-07-24T05:25:05.8693122Z adding 'torch/include/ATen/ops/transpose.h' 2025-07-24T05:25:05.8693394Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.8693665Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8693791Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-07-24T05:25:05.8697083Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.8700291Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.8703120Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-07-24T05:25:05.8712743Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-07-24T05:25:05.8715976Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-07-24T05:25:05.8719456Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-07-24T05:25:05.8722936Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-07-24T05:25:05.8726704Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8729451Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-07-24T05:25:05.8732656Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-07-24T05:25:05.8736114Z adding 'torch/include/ATen/ops/trapz.h' 2025-07-24T05:25:05.8739555Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8742345Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-07-24T05:25:05.8745757Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-07-24T05:25:05.8749030Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-07-24T05:25:05.8752721Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.8756280Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-07-24T05:25:05.8759079Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-07-24T05:25:05.8762198Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-07-24T05:25:05.8765495Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-07-24T05:25:05.8768697Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-07-24T05:25:05.8772128Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-07-24T05:25:05.8775316Z adding 'torch/include/ATen/ops/tril.h' 2025-07-24T05:25:05.8778745Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.8781755Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-07-24T05:25:05.8785307Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-07-24T05:25:05.8788385Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-07-24T05:25:05.8791891Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.8794901Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-07-24T05:25:05.8798120Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-07-24T05:25:05.8801347Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-07-24T05:25:05.8804680Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-07-24T05:25:05.8807814Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-07-24T05:25:05.8811038Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-07-24T05:25:05.8814115Z adding 'torch/include/ATen/ops/tril_native.h' 2025-07-24T05:25:05.8817487Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-07-24T05:25:05.8820804Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-07-24T05:25:05.8824186Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8827347Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-07-24T05:25:05.8830632Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-07-24T05:25:05.8833764Z adding 'torch/include/ATen/ops/triu.h' 2025-07-24T05:25:05.8837173Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.8840566Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-07-24T05:25:05.8843785Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-07-24T05:25:05.8847130Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-07-24T05:25:05.8850575Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.8853660Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-07-24T05:25:05.8856850Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-07-24T05:25:05.8859956Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-07-24T05:25:05.8863330Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-07-24T05:25:05.8866987Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-07-24T05:25:05.8870319Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-07-24T05:25:05.8873414Z adding 'torch/include/ATen/ops/triu_native.h' 2025-07-24T05:25:05.8876744Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-07-24T05:25:05.8880344Z adding 'torch/include/ATen/ops/true_divide.h' 2025-07-24T05:25:05.8883455Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8886383Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-07-24T05:25:05.8889811Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-07-24T05:25:05.8893083Z adding 'torch/include/ATen/ops/trunc.h' 2025-07-24T05:25:05.8896612Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.8899544Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-07-24T05:25:05.8902695Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-07-24T05:25:05.8905884Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-07-24T05:25:05.8909483Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-07-24T05:25:05.8912302Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-07-24T05:25:05.8915505Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-07-24T05:25:05.8918614Z adding 'torch/include/ATen/ops/type_as.h' 2025-07-24T05:25:05.8921995Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8924904Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-07-24T05:25:05.8928105Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-07-24T05:25:05.8931220Z adding 'torch/include/ATen/ops/unbind.h' 2025-07-24T05:25:05.8934566Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.8937752Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8941008Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-07-24T05:25:05.8944144Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.8947596Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.8950475Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-07-24T05:25:05.8953744Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-07-24T05:25:05.8957084Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-07-24T05:25:05.8960512Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-07-24T05:25:05.8964171Z adding 'torch/include/ATen/ops/unflatten.h' 2025-07-24T05:25:05.8967878Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8970707Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-07-24T05:25:05.8974498Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.8977517Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-07-24T05:25:05.9127694Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-07-24T05:25:05.9128044Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-07-24T05:25:05.9128186Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-07-24T05:25:05.9128309Z adding 'torch/include/ATen/ops/unfold.h' 2025-07-24T05:25:05.9128442Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-07-24T05:25:05.9128740Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9128927Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-07-24T05:25:05.9149471Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-07-24T05:25:05.9149676Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-07-24T05:25:05.9149836Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-07-24T05:25:05.9150006Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-07-24T05:25:05.9150284Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9150685Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9150825Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-07-24T05:25:05.9151004Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-07-24T05:25:05.9151144Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-07-24T05:25:05.9151302Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-07-24T05:25:05.9151624Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-07-24T05:25:05.9151749Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-07-24T05:25:05.9151860Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-07-24T05:25:05.9152030Z adding 'torch/include/ATen/ops/uniform.h' 2025-07-24T05:25:05.9152346Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9152543Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-07-24T05:25:05.9152689Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-07-24T05:25:05.9152841Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-07-24T05:25:05.9153147Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-07-24T05:25:05.9153268Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-07-24T05:25:05.9153416Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-07-24T05:25:05.9153766Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9154012Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-07-24T05:25:05.9154227Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-07-24T05:25:05.9154393Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-07-24T05:25:05.9154588Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-07-24T05:25:05.9154698Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-07-24T05:25:05.9154964Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9155160Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-07-24T05:25:05.9155472Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9155735Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-07-24T05:25:05.9155948Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-07-24T05:25:05.9156174Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-07-24T05:25:05.9156348Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-07-24T05:25:05.9156503Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-07-24T05:25:05.9156706Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-07-24T05:25:05.9156847Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-07-24T05:25:05.9156965Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-07-24T05:25:05.9157127Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-07-24T05:25:05.9157393Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9157565Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-07-24T05:25:05.9157712Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-07-24T05:25:05.9157834Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-07-24T05:25:05.9158155Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9158298Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-07-24T05:25:05.9158423Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-07-24T05:25:05.9158621Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-07-24T05:25:05.9162221Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9165412Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-07-24T05:25:05.9169166Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-07-24T05:25:05.9172669Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-07-24T05:25:05.9176238Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9179433Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-07-24T05:25:05.9182861Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9186459Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9189418Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-07-24T05:25:05.9192875Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-07-24T05:25:05.9196256Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-07-24T05:25:05.9199430Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-07-24T05:25:05.9203047Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-07-24T05:25:05.9207561Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-07-24T05:25:05.9211522Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9215146Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-07-24T05:25:05.9218120Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-07-24T05:25:05.9221443Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-07-24T05:25:05.9224916Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-07-24T05:25:05.9228519Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-07-24T05:25:05.9231942Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-07-24T05:25:05.9235442Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9238605Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9241790Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-07-24T05:25:05.9245138Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-07-24T05:25:05.9248289Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-07-24T05:25:05.9251630Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-07-24T05:25:05.9254960Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-07-24T05:25:05.9258410Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-07-24T05:25:05.9262421Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-07-24T05:25:05.9266960Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-07-24T05:25:05.9270888Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9274071Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-07-24T05:25:05.9277421Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-07-24T05:25:05.9280602Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-07-24T05:25:05.9283924Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-07-24T05:25:05.9287136Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-07-24T05:25:05.9290581Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-07-24T05:25:05.9294019Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9297319Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9300477Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9303744Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-07-24T05:25:05.9307232Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-07-24T05:25:05.9310412Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-07-24T05:25:05.9313732Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-07-24T05:25:05.9316984Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-07-24T05:25:05.9320503Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-07-24T05:25:05.9324233Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-07-24T05:25:05.9328123Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-07-24T05:25:05.9331838Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9335005Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-07-24T05:25:05.9338379Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-07-24T05:25:05.9341453Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-07-24T05:25:05.9344810Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-07-24T05:25:05.9348050Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-07-24T05:25:05.9351510Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-07-24T05:25:05.9354950Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9358117Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9460221Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-07-24T05:25:05.9460426Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-07-24T05:25:05.9460599Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-07-24T05:25:05.9460791Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-07-24T05:25:05.9460954Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-07-24T05:25:05.9461102Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-07-24T05:25:05.9461246Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-07-24T05:25:05.9461426Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-07-24T05:25:05.9461847Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9462088Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-07-24T05:25:05.9462320Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-07-24T05:25:05.9462517Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-07-24T05:25:05.9462759Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-07-24T05:25:05.9462967Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-07-24T05:25:05.9463152Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-07-24T05:25:05.9463517Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9463820Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9464012Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-07-24T05:25:05.9464203Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-07-24T05:25:05.9464362Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-07-24T05:25:05.9464620Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-07-24T05:25:05.9464787Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-07-24T05:25:05.9464947Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-07-24T05:25:05.9465081Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-07-24T05:25:05.9465258Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-07-24T05:25:05.9465746Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9466023Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-07-24T05:25:05.9466266Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-07-24T05:25:05.9466460Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-07-24T05:25:05.9466706Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-07-24T05:25:05.9466915Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-07-24T05:25:05.9467216Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-07-24T05:25:05.9470570Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9473895Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9476922Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9480270Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-07-24T05:25:05.9483714Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-07-24T05:25:05.9486937Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-07-24T05:25:05.9490331Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-07-24T05:25:05.9493640Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-07-24T05:25:05.9497440Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-07-24T05:25:05.9501240Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-07-24T05:25:05.9505751Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-07-24T05:25:05.9509511Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9512611Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-07-24T05:25:05.9516124Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-07-24T05:25:05.9519374Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-07-24T05:25:05.9523035Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-07-24T05:25:05.9526361Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-07-24T05:25:05.9529643Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-07-24T05:25:05.9533304Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9536532Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9539966Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-07-24T05:25:05.9543444Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-07-24T05:25:05.9547006Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-07-24T05:25:05.9550534Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-07-24T05:25:05.9553638Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-07-24T05:25:05.9557321Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-07-24T05:25:05.9561194Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-07-24T05:25:05.9565485Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-07-24T05:25:05.9569463Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9572519Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-07-24T05:25:05.9576155Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-07-24T05:25:05.9579447Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-07-24T05:25:05.9582937Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-07-24T05:25:05.9586657Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-07-24T05:25:05.9589944Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-07-24T05:25:05.9593780Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9596849Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9600233Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-07-24T05:25:05.9603869Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-07-24T05:25:05.9606934Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-07-24T05:25:05.9610602Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-07-24T05:25:05.9620386Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-07-24T05:25:05.9625491Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-07-24T05:25:05.9629275Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-07-24T05:25:05.9632778Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9636461Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-07-24T05:25:05.9640065Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-07-24T05:25:05.9642815Z adding 'torch/include/ATen/ops/values.h' 2025-07-24T05:25:05.9646347Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9649312Z adding 'torch/include/ATen/ops/values_copy.h' 2025-07-24T05:25:05.9652884Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9656685Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9659951Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-07-24T05:25:05.9663719Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-07-24T05:25:05.9667276Z adding 'torch/include/ATen/ops/values_native.h' 2025-07-24T05:25:05.9670865Z adding 'torch/include/ATen/ops/values_ops.h' 2025-07-24T05:25:05.9674419Z adding 'torch/include/ATen/ops/vander.h' 2025-07-24T05:25:05.9678225Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9681356Z adding 'torch/include/ATen/ops/vander_native.h' 2025-07-24T05:25:05.9684651Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-07-24T05:25:05.9688524Z adding 'torch/include/ATen/ops/var.h' 2025-07-24T05:25:05.9692095Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9695270Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-07-24T05:25:05.9698651Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-07-24T05:25:05.9702094Z adding 'torch/include/ATen/ops/var_mean.h' 2025-07-24T05:25:05.9705772Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9709199Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9712423Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-07-24T05:25:05.9715625Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-07-24T05:25:05.9807794Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-07-24T05:25:05.9808060Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-07-24T05:25:05.9808170Z adding 'torch/include/ATen/ops/var_native.h' 2025-07-24T05:25:05.9808285Z adding 'torch/include/ATen/ops/var_ops.h' 2025-07-24T05:25:05.9808379Z adding 'torch/include/ATen/ops/vdot.h' 2025-07-24T05:25:05.9808626Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9808754Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-07-24T05:25:05.9808891Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-07-24T05:25:05.9809015Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-07-24T05:25:05.9809121Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-07-24T05:25:05.9809213Z adding 'torch/include/ATen/ops/view.h' 2025-07-24T05:25:05.9809320Z adding 'torch/include/ATen/ops/view_as.h' 2025-07-24T05:25:05.9809443Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-07-24T05:25:05.9809597Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-07-24T05:25:05.9809898Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9810269Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9810562Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-07-24T05:25:05.9810728Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-07-24T05:25:05.9810913Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-07-24T05:25:05.9811152Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-07-24T05:25:05.9811334Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-07-24T05:25:05.9811485Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-07-24T05:25:05.9812075Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-07-24T05:25:05.9812392Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9812514Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-07-24T05:25:05.9812644Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-07-24T05:25:05.9812756Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-07-24T05:25:05.9812887Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-07-24T05:25:05.9813175Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9813521Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9816611Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-07-24T05:25:05.9819524Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-07-24T05:25:05.9822698Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-07-24T05:25:05.9825938Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-07-24T05:25:05.9829463Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-07-24T05:25:05.9832352Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-07-24T05:25:05.9835508Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-07-24T05:25:05.9838856Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9842199Z adding 'torch/include/ATen/ops/view_copy.h' 2025-07-24T05:25:05.9845684Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9848956Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9851861Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-07-24T05:25:05.9855246Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-07-24T05:25:05.9858487Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-07-24T05:25:05.9861656Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-07-24T05:25:05.9864945Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-07-24T05:25:05.9868008Z adding 'torch/include/ATen/ops/view_native.h' 2025-07-24T05:25:05.9871252Z adding 'torch/include/ATen/ops/view_ops.h' 2025-07-24T05:25:05.9874706Z adding 'torch/include/ATen/ops/vsplit.h' 2025-07-24T05:25:05.9877813Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9880738Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-07-24T05:25:05.9884006Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-07-24T05:25:05.9887233Z adding 'torch/include/ATen/ops/vstack.h' 2025-07-24T05:25:05.9890600Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9893544Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-07-24T05:25:05.9897042Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-07-24T05:25:05.9900133Z adding 'torch/include/ATen/ops/where.h' 2025-07-24T05:25:05.9903457Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9906710Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-07-24T05:25:05.9909848Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-07-24T05:25:05.9912998Z adding 'torch/include/ATen/ops/where_native.h' 2025-07-24T05:25:05.9917471Z adding 'torch/include/ATen/ops/where_ops.h' 2025-07-24T05:25:05.9920944Z adding 'torch/include/ATen/ops/xlogy.h' 2025-07-24T05:25:05.9924340Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9927631Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T05:25:05.9930736Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-07-24T05:25:05.9933828Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-07-24T05:25:05.9936885Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-07-24T05:25:05.9940389Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-07-24T05:25:05.9943401Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-07-24T05:25:05.9946999Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-07-24T05:25:05.9950261Z adding 'torch/include/ATen/ops/xor.h' 2025-07-24T05:25:05.9953586Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-07-24T05:25:05.9956569Z adding 'torch/include/ATen/ops/xor_native.h' 2025-07-24T05:25:05.9959943Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-07-24T05:25:05.9963348Z adding 'torch/include/ATen/ops/zero.h' 2025-07-24T05:25:05.9966908Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9969834Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-07-24T05:25:05.9973179Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-07-24T05:25:05.9976291Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-07-24T05:25:05.9979529Z adding 'torch/include/ATen/ops/zero_native.h' 2025-07-24T05:25:05.9983061Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-07-24T05:25:05.9987025Z adding 'torch/include/ATen/ops/zeros.h' 2025-07-24T05:25:05.9990970Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:05.9994140Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-07-24T05:25:05.9997840Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-07-24T05:25:06.0001626Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-24T05:25:06.0004310Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-07-24T05:25:06.0007977Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-07-24T05:25:06.0011408Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-07-24T05:25:06.0014995Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-07-24T05:25:06.0022641Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-07-24T05:25:06.0028569Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-07-24T05:25:06.0033379Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-07-24T05:25:06.0036820Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-07-24T05:25:06.0039653Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-07-24T05:25:06.0042642Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-07-24T05:25:06.0046965Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-07-24T05:25:06.0055023Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-07-24T05:25:06.0059246Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-07-24T05:25:06.0063240Z adding 'torch/include/THC/THCAtomics.cuh' 2025-07-24T05:25:06.0066244Z adding 'torch/include/THC/THCDeviceUtils.cuh' 2025-07-24T05:25:06.0070737Z adding 'torch/include/asmjit/a64.h' 2025-07-24T05:25:06.0096967Z adding 'torch/include/asmjit/arm.h' 2025-07-24T05:25:06.0097191Z adding 'torch/include/asmjit/asmjit-scope-begin.h' 2025-07-24T05:25:06.0097319Z adding 'torch/include/asmjit/asmjit-scope-end.h' 2025-07-24T05:25:06.0097470Z adding 'torch/include/asmjit/asmjit.h' 2025-07-24T05:25:06.0130990Z adding 'torch/include/asmjit/core.h' 2025-07-24T05:25:06.0137261Z adding 'torch/include/asmjit/x86.h' 2025-07-24T05:25:06.0141876Z adding 'torch/include/asmjit/arm/a64assembler.h' 2025-07-24T05:25:06.0145334Z adding 'torch/include/asmjit/arm/a64builder.h' 2025-07-24T05:25:06.0150295Z adding 'torch/include/asmjit/arm/a64compiler.h' 2025-07-24T05:25:06.0165144Z adding 'torch/include/asmjit/arm/a64emitter.h' 2025-07-24T05:25:06.0197377Z adding 'torch/include/asmjit/arm/a64globals.h' 2025-07-24T05:25:06.0204223Z adding 'torch/include/asmjit/arm/a64instdb.h' 2025-07-24T05:25:06.0212620Z adding 'torch/include/asmjit/arm/a64operand.h' 2025-07-24T05:25:06.0216734Z adding 'torch/include/asmjit/arm/armglobals.h' 2025-07-24T05:25:06.0224327Z adding 'torch/include/asmjit/arm/armoperand.h' 2025-07-24T05:25:06.0229673Z adding 'torch/include/asmjit/arm/armutils.h' 2025-07-24T05:25:06.0239275Z adding 'torch/include/asmjit/core/api-config.h' 2025-07-24T05:25:06.0245874Z adding 'torch/include/asmjit/core/archcommons.h' 2025-07-24T05:25:06.0251569Z adding 'torch/include/asmjit/core/archtraits.h' 2025-07-24T05:25:06.0255682Z adding 'torch/include/asmjit/core/assembler.h' 2025-07-24T05:25:06.0274708Z adding 'torch/include/asmjit/core/builder.h' 2025-07-24T05:25:06.0279869Z adding 'torch/include/asmjit/core/codebuffer.h' 2025-07-24T05:25:06.0297600Z adding 'torch/include/asmjit/core/codeholder.h' 2025-07-24T05:25:06.0308622Z adding 'torch/include/asmjit/core/compiler.h' 2025-07-24T05:25:06.0314284Z adding 'torch/include/asmjit/core/compilerdefs.h' 2025-07-24T05:25:06.0319467Z adding 'torch/include/asmjit/core/constpool.h' 2025-07-24T05:25:06.0336580Z adding 'torch/include/asmjit/core/cpuinfo.h' 2025-07-24T05:25:06.0352531Z adding 'torch/include/asmjit/core/emitter.h' 2025-07-24T05:25:06.0360620Z adding 'torch/include/asmjit/core/environment.h' 2025-07-24T05:25:06.0365862Z adding 'torch/include/asmjit/core/errorhandler.h' 2025-07-24T05:25:06.0370848Z adding 'torch/include/asmjit/core/formatter.h' 2025-07-24T05:25:06.0394341Z adding 'torch/include/asmjit/core/func.h' 2025-07-24T05:25:06.0403146Z adding 'torch/include/asmjit/core/globals.h' 2025-07-24T05:25:06.0415310Z adding 'torch/include/asmjit/core/inst.h' 2025-07-24T05:25:06.0425883Z adding 'torch/include/asmjit/core/jitallocator.h' 2025-07-24T05:25:06.0431491Z adding 'torch/include/asmjit/core/jitruntime.h' 2025-07-24T05:25:06.0436285Z adding 'torch/include/asmjit/core/logger.h' 2025-07-24T05:25:06.0464183Z adding 'torch/include/asmjit/core/operand.h' 2025-07-24T05:25:06.0469649Z adding 'torch/include/asmjit/core/osutils.h' 2025-07-24T05:25:06.0475641Z adding 'torch/include/asmjit/core/string.h' 2025-07-24T05:25:06.0497278Z adding 'torch/include/asmjit/core/support.h' 2025-07-24T05:25:06.0502747Z adding 'torch/include/asmjit/core/target.h' 2025-07-24T05:25:06.0513382Z adding 'torch/include/asmjit/core/type.h' 2025-07-24T05:25:06.0522582Z adding 'torch/include/asmjit/core/virtmem.h' 2025-07-24T05:25:06.0531945Z adding 'torch/include/asmjit/core/zone.h' 2025-07-24T05:25:06.0537056Z adding 'torch/include/asmjit/core/zonehash.h' 2025-07-24T05:25:06.0541513Z adding 'torch/include/asmjit/core/zonelist.h' 2025-07-24T05:25:06.0546486Z adding 'torch/include/asmjit/core/zonestack.h' 2025-07-24T05:25:06.0550675Z adding 'torch/include/asmjit/core/zonestring.h' 2025-07-24T05:25:06.0556648Z adding 'torch/include/asmjit/core/zonetree.h' 2025-07-24T05:25:06.0565063Z adding 'torch/include/asmjit/core/zonevector.h' 2025-07-24T05:25:06.0578915Z adding 'torch/include/asmjit/x86/x86assembler.h' 2025-07-24T05:25:06.0587189Z adding 'torch/include/asmjit/x86/x86builder.h' 2025-07-24T05:25:06.0597642Z adding 'torch/include/asmjit/x86/x86compiler.h' 2025-07-24T05:25:06.0667084Z adding 'torch/include/asmjit/x86/x86emitter.h' 2025-07-24T05:25:06.0709410Z adding 'torch/include/asmjit/x86/x86globals.h' 2025-07-24T05:25:06.0722476Z adding 'torch/include/asmjit/x86/x86instdb.h' 2025-07-24T05:25:06.0737838Z adding 'torch/include/asmjit/x86/x86operand.h' 2025-07-24T05:25:06.0749046Z adding 'torch/include/c10/core/Allocator.h' 2025-07-24T05:25:06.0752790Z adding 'torch/include/c10/core/AutogradState.h' 2025-07-24T05:25:06.0757750Z adding 'torch/include/c10/core/Backend.h' 2025-07-24T05:25:06.0761533Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-07-24T05:25:06.0765443Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-07-24T05:25:06.0768971Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-07-24T05:25:06.0772572Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-07-24T05:25:06.0776860Z adding 'torch/include/c10/core/Contiguity.h' 2025-07-24T05:25:06.0780377Z adding 'torch/include/c10/core/CopyBytes.h' 2025-07-24T05:25:06.0783583Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-07-24T05:25:06.0786937Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-07-24T05:25:06.0791574Z adding 'torch/include/c10/core/Device.h' 2025-07-24T05:25:06.0794991Z adding 'torch/include/c10/core/DeviceArray.h' 2025-07-24T05:25:06.0799930Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-07-24T05:25:06.0804201Z adding 'torch/include/c10/core/DeviceType.h' 2025-07-24T05:25:06.0818231Z adding 'torch/include/c10/core/DispatchKey.h' 2025-07-24T05:25:06.0836042Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-07-24T05:25:06.0841274Z adding 'torch/include/c10/core/DynamicCast.h' 2025-07-24T05:25:06.0845622Z adding 'torch/include/c10/core/Event.h' 2025-07-24T05:25:06.0849860Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-07-24T05:25:06.0853279Z adding 'torch/include/c10/core/GradMode.h' 2025-07-24T05:25:06.0857194Z adding 'torch/include/c10/core/InferenceMode.h' 2025-07-24T05:25:06.0860647Z adding 'torch/include/c10/core/Layout.h' 2025-07-24T05:25:06.0866159Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-07-24T05:25:06.0869614Z adding 'torch/include/c10/core/OptionalRef.h' 2025-07-24T05:25:06.0873471Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-07-24T05:25:06.0876790Z adding 'torch/include/c10/core/QEngine.h' 2025-07-24T05:25:06.0880164Z adding 'torch/include/c10/core/QScheme.h' 2025-07-24T05:25:06.0883786Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-07-24T05:25:06.0887617Z adding 'torch/include/c10/core/SafePyObject.h' 2025-07-24T05:25:06.0893984Z adding 'torch/include/c10/core/Scalar.h' 2025-07-24T05:25:06.0902938Z adding 'torch/include/c10/core/ScalarType.h' 2025-07-24T05:25:06.0907097Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-07-24T05:25:06.0911547Z adding 'torch/include/c10/core/Storage.h' 2025-07-24T05:25:06.0917659Z adding 'torch/include/c10/core/StorageImpl.h' 2025-07-24T05:25:06.0923155Z adding 'torch/include/c10/core/Stream.h' 2025-07-24T05:25:06.0928413Z adding 'torch/include/c10/core/StreamGuard.h' 2025-07-24T05:25:06.0932199Z adding 'torch/include/c10/core/SymBool.h' 2025-07-24T05:25:06.0956671Z adding 'torch/include/c10/core/SymFloat.h' 2025-07-24T05:25:06.0956976Z adding 'torch/include/c10/core/SymInt.h' 2025-07-24T05:25:06.0957345Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-07-24T05:25:06.0957704Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-07-24T05:25:06.0958048Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-07-24T05:25:06.1003180Z adding 'torch/include/c10/core/TensorImpl.h' 2025-07-24T05:25:06.1016703Z adding 'torch/include/c10/core/TensorOptions.h' 2025-07-24T05:25:06.1020878Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-07-24T05:25:06.1024466Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-07-24T05:25:06.1028026Z adding 'torch/include/c10/core/alignment.h' 2025-07-24T05:25:06.1031909Z adding 'torch/include/c10/core/thread_pool.h' 2025-07-24T05:25:06.1036639Z adding 'torch/include/c10/core/impl/COW.h' 2025-07-24T05:25:06.1040418Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-07-24T05:25:06.1047426Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-07-24T05:25:06.1051503Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-07-24T05:25:06.1054970Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-07-24T05:25:06.1058879Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-07-24T05:25:06.1066382Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-07-24T05:25:06.1070980Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-07-24T05:25:06.1076726Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-07-24T05:25:06.1081715Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-07-24T05:25:06.1088177Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-07-24T05:25:06.1094037Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-07-24T05:25:06.1097700Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-07-24T05:25:06.1102528Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-07-24T05:25:06.1106696Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-07-24T05:25:06.1110464Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-07-24T05:25:06.1114017Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-07-24T05:25:06.1118610Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-07-24T05:25:06.1122774Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-07-24T05:25:06.1130704Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-07-24T05:25:06.1135540Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-07-24T05:25:06.1142756Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-07-24T05:25:06.1147254Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-07-24T05:25:06.1151498Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-07-24T05:25:06.1155544Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-07-24T05:25:06.1161437Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-07-24T05:25:06.1165730Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-07-24T05:25:06.1169848Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-07-24T05:25:06.1173382Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-07-24T05:25:06.1179545Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-07-24T05:25:06.1184383Z adding 'torch/include/c10/cuda/driver_api.h' 2025-07-24T05:25:06.1191644Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-07-24T05:25:06.1194951Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-07-24T05:25:06.1197979Z adding 'torch/include/c10/cuda/impl/cuda_cmake_macros.h' 2025-07-24T05:25:06.1201682Z adding 'torch/include/c10/macros/Export.h' 2025-07-24T05:25:06.1204762Z adding 'torch/include/c10/macros/Macros.h' 2025-07-24T05:25:06.1207725Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-07-24T05:25:06.1212242Z adding 'torch/include/c10/metal/atomic.h' 2025-07-24T05:25:06.1215659Z adding 'torch/include/c10/metal/common.h' 2025-07-24T05:25:06.1219842Z adding 'torch/include/c10/metal/expm1f.h' 2025-07-24T05:25:06.1226840Z adding 'torch/include/c10/metal/indexing.h' 2025-07-24T05:25:06.1231080Z adding 'torch/include/c10/metal/random.h' 2025-07-24T05:25:06.1305291Z adding 'torch/include/c10/metal/reduction_utils.h' 2025-07-24T05:25:06.1305891Z adding 'torch/include/c10/metal/special_math.h' 2025-07-24T05:25:06.1306211Z adding 'torch/include/c10/metal/utils.h' 2025-07-24T05:25:06.1306575Z adding 'torch/include/c10/mobile/CPUCachingAllocator.h' 2025-07-24T05:25:06.1306996Z adding 'torch/include/c10/mobile/CPUProfilingAllocator.h' 2025-07-24T05:25:06.1307388Z adding 'torch/include/c10/test/util/Macros.h' 2025-07-24T05:25:06.1307778Z adding 'torch/include/c10/test/util/complex_math_test_common.h' 2025-07-24T05:25:06.1308234Z adding 'torch/include/c10/test/util/complex_test_common.h' 2025-07-24T05:25:06.1308617Z adding 'torch/include/c10/util/AbortHandler.h' 2025-07-24T05:25:06.1308943Z adding 'torch/include/c10/util/AlignOf.h' 2025-07-24T05:25:06.1309276Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-07-24T05:25:06.1309606Z adding 'torch/include/c10/util/Array.h' 2025-07-24T05:25:06.1309902Z adding 'torch/include/c10/util/ArrayRef.h' 2025-07-24T05:25:06.1314092Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-07-24T05:25:06.1319292Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-07-24T05:25:06.1323261Z adding 'torch/include/c10/util/BFloat16.h' 2025-07-24T05:25:06.1326515Z adding 'torch/include/c10/util/Backtrace.h' 2025-07-24T05:25:06.1330391Z adding 'torch/include/c10/util/Bitset.h' 2025-07-24T05:25:06.1334070Z adding 'torch/include/c10/util/C++17.h' 2025-07-24T05:25:06.1337648Z adding 'torch/include/c10/util/CallOnce.h' 2025-07-24T05:25:06.1342824Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-07-24T05:25:06.1346730Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-07-24T05:25:06.1350521Z adding 'torch/include/c10/util/Deprecated.h' 2025-07-24T05:25:06.1353779Z adding 'torch/include/c10/util/DimVector.h' 2025-07-24T05:25:06.1356976Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-07-24T05:25:06.1360871Z adding 'torch/include/c10/util/Enumerate.h' 2025-07-24T05:25:06.1372372Z adding 'torch/include/c10/util/Exception.h' 2025-07-24T05:25:06.1377391Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-07-24T05:25:06.1381019Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-07-24T05:25:06.1384143Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-07-24T05:25:06.1389699Z adding 'torch/include/c10/util/Flags.h' 2025-07-24T05:25:06.1393256Z adding 'torch/include/c10/util/Float4_e2m1fn_x2.h' 2025-07-24T05:25:06.1397437Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-07-24T05:25:06.1402816Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-07-24T05:25:06.1407288Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-07-24T05:25:06.1411531Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-07-24T05:25:06.1415877Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-07-24T05:25:06.1420257Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-07-24T05:25:06.1426046Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-07-24T05:25:06.1430430Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-07-24T05:25:06.1434300Z adding 'torch/include/c10/util/Float8_e8m0fnu-inl.h' 2025-07-24T05:25:06.1438218Z adding 'torch/include/c10/util/Float8_e8m0fnu.h' 2025-07-24T05:25:06.1441765Z adding 'torch/include/c10/util/Float8_fnuz_cvt.h' 2025-07-24T05:25:06.1445353Z adding 'torch/include/c10/util/FunctionRef.h' 2025-07-24T05:25:06.1448678Z adding 'torch/include/c10/util/Gauge.h' 2025-07-24T05:25:06.1453265Z adding 'torch/include/c10/util/Half-inl.h' 2025-07-24T05:25:06.1460781Z adding 'torch/include/c10/util/Half.h' 2025-07-24T05:25:06.1464991Z adding 'torch/include/c10/util/IdWrapper.h' 2025-07-24T05:25:06.1468994Z adding 'torch/include/c10/util/IntrusiveList.h' 2025-07-24T05:25:06.1472798Z adding 'torch/include/c10/util/Lazy.h' 2025-07-24T05:25:06.1477827Z adding 'torch/include/c10/util/LeftRight.h' 2025-07-24T05:25:06.1481464Z adding 'torch/include/c10/util/Load.h' 2025-07-24T05:25:06.1487905Z adding 'torch/include/c10/util/Logging.h' 2025-07-24T05:25:06.1492098Z adding 'torch/include/c10/util/MathConstants.h' 2025-07-24T05:25:06.1627503Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-07-24T05:25:06.1628001Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-07-24T05:25:06.1628382Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-07-24T05:25:06.1628706Z adding 'torch/include/c10/util/Optional.h' 2025-07-24T05:25:06.1629043Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-07-24T05:25:06.1629410Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-07-24T05:25:06.1629733Z adding 'torch/include/c10/util/Registry.h' 2025-07-24T05:25:06.1630052Z adding 'torch/include/c10/util/ScopeExit.h' 2025-07-24T05:25:06.1630360Z adding 'torch/include/c10/util/Semaphore.h' 2025-07-24T05:25:06.1630682Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-07-24T05:25:06.1630999Z adding 'torch/include/c10/util/SmallVector.h' 2025-07-24T05:25:06.1631318Z adding 'torch/include/c10/util/StringUtil.h' 2025-07-24T05:25:06.1631644Z adding 'torch/include/c10/util/Synchronized.h' 2025-07-24T05:25:06.1631964Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-07-24T05:25:06.1632338Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-07-24T05:25:06.1632690Z adding 'torch/include/c10/util/Type.h' 2025-07-24T05:25:06.1632985Z adding 'torch/include/c10/util/TypeCast.h' 2025-07-24T05:25:06.1633283Z adding 'torch/include/c10/util/TypeIndex.h' 2025-07-24T05:25:06.1633783Z adding 'torch/include/c10/util/TypeList.h' 2025-07-24T05:25:06.1634109Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-07-24T05:25:06.1634507Z adding 'torch/include/c10/util/TypeTraits.h' 2025-07-24T05:25:06.1634827Z adding 'torch/include/c10/util/Unicode.h' 2025-07-24T05:25:06.1635212Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-07-24T05:25:06.1635538Z adding 'torch/include/c10/util/Unroll.h' 2025-07-24T05:25:06.1635845Z adding 'torch/include/c10/util/WaitCounter.h' 2025-07-24T05:25:06.1636235Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-07-24T05:25:06.1636627Z adding 'torch/include/c10/util/accumulate.h' 2025-07-24T05:25:06.1637062Z adding 'torch/include/c10/util/bit_cast.h' 2025-07-24T05:25:06.1637358Z adding 'torch/include/c10/util/bits.h' 2025-07-24T05:25:06.1637648Z adding 'torch/include/c10/util/complex.h' 2025-07-24T05:25:06.1642490Z adding 'torch/include/c10/util/complex_math.h' 2025-07-24T05:25:06.1646029Z adding 'torch/include/c10/util/complex_utils.h' 2025-07-24T05:25:06.1649418Z adding 'torch/include/c10/util/copysign.h' 2025-07-24T05:25:06.1652729Z adding 'torch/include/c10/util/env.h' 2025-07-24T05:25:06.1655850Z adding 'torch/include/c10/util/error.h' 2025-07-24T05:25:06.1673784Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-07-24T05:25:06.1679145Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-07-24T05:25:06.1683303Z adding 'torch/include/c10/util/generic_math.h' 2025-07-24T05:25:06.1689812Z adding 'torch/include/c10/util/hash.h' 2025-07-24T05:25:06.1697370Z adding 'torch/include/c10/util/int128.h' 2025-07-24T05:25:06.1714775Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-07-24T05:25:06.1717870Z adding 'torch/include/c10/util/irange.h' 2025-07-24T05:25:06.1730030Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-07-24T05:25:06.1735391Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-07-24T05:25:06.1740733Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-07-24T05:25:06.1744498Z adding 'torch/include/c10/util/numa.h' 2025-07-24T05:25:06.1764189Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-07-24T05:25:06.1769774Z adding 'torch/include/c10/util/overflows.h' 2025-07-24T05:25:06.1773670Z adding 'torch/include/c10/util/overloaded.h' 2025-07-24T05:25:06.1777124Z adding 'torch/include/c10/util/python_stub.h' 2025-07-24T05:25:06.1780421Z adding 'torch/include/c10/util/qint32.h' 2025-07-24T05:25:06.1783827Z adding 'torch/include/c10/util/qint8.h' 2025-07-24T05:25:06.1787378Z adding 'torch/include/c10/util/quint2x4.h' 2025-07-24T05:25:06.1790086Z adding 'torch/include/c10/util/quint4x2.h' 2025-07-24T05:25:06.1821659Z adding 'torch/include/c10/util/quint8.h' 2025-07-24T05:25:06.1822030Z adding 'torch/include/c10/util/safe_numerics.h' 2025-07-24T05:25:06.1822383Z adding 'torch/include/c10/util/signal_handler.h' 2025-07-24T05:25:06.1822728Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-07-24T05:25:06.1823050Z adding 'torch/include/c10/util/ssize.h' 2025-07-24T05:25:06.1823373Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-07-24T05:25:06.1823776Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-07-24T05:25:06.1826592Z adding 'torch/include/c10/util/strides.h' 2025-07-24T05:25:06.1829555Z adding 'torch/include/c10/util/string_utils.h' 2025-07-24T05:25:06.1836411Z adding 'torch/include/c10/util/string_view.h' 2025-07-24T05:25:06.1846423Z adding 'torch/include/c10/util/strong_type.h' 2025-07-24T05:25:06.1850987Z adding 'torch/include/c10/util/tempfile.h' 2025-07-24T05:25:06.1854006Z adding 'torch/include/c10/util/thread_name.h' 2025-07-24T05:25:06.1863727Z adding 'torch/include/c10/util/typeid.h' 2025-07-24T05:25:06.1867555Z adding 'torch/include/c10/util/win32-headers.h' 2025-07-24T05:25:06.1871855Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-07-24T05:25:06.1876963Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-07-24T05:25:06.1880420Z adding 'torch/include/c10/xpu/XPUException.h' 2025-07-24T05:25:06.1883659Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-07-24T05:25:06.1886822Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-07-24T05:25:06.1891637Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-07-24T05:25:06.1897218Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-07-24T05:25:06.1901899Z adding 'torch/include/c10/xpu/test/impl/XPUTest.h' 2025-07-24T05:25:06.1906745Z adding 'torch/include/caffe2/core/common.h' 2025-07-24T05:25:06.1910278Z adding 'torch/include/caffe2/core/macros.h' 2025-07-24T05:25:06.1913620Z adding 'torch/include/caffe2/core/timer.h' 2025-07-24T05:25:06.1919453Z adding 'torch/include/caffe2/perfkernels/batch_box_cox_vec.h' 2025-07-24T05:25:06.1923686Z adding 'torch/include/caffe2/perfkernels/common.h' 2025-07-24T05:25:06.1927377Z adding 'torch/include/caffe2/perfkernels/embedding_lookup_idx.h' 2025-07-24T05:25:06.1969420Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-07-24T05:25:06.1974592Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-07-24T05:25:06.1977914Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-07-24T05:25:06.1984123Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-07-24T05:25:06.1987536Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-07-24T05:25:06.1990708Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-07-24T05:25:06.1995622Z adding 'torch/include/caffe2/serialize/versions.h' 2025-07-24T05:25:06.2000555Z adding 'torch/include/caffe2/utils/fixed_divisor.h' 2025-07-24T05:25:06.2003758Z adding 'torch/include/caffe2/utils/proto_wrap.h' 2025-07-24T05:25:06.2007019Z adding 'torch/include/caffe2/utils/string_utils.h' 2025-07-24T05:25:06.2011668Z adding 'torch/include/caffe2/utils/threadpool/ThreadPool.h' 2025-07-24T05:25:06.2014918Z adding 'torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h' 2025-07-24T05:25:06.2021326Z adding 'torch/include/caffe2/utils/threadpool/WorkersPool.h' 2025-07-24T05:25:06.2025175Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h' 2025-07-24T05:25:06.2029421Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool.h' 2025-07-24T05:25:06.2032851Z adding 'torch/include/caffe2/utils/threadpool/thread_pool_guard.h' 2025-07-24T05:25:06.2038585Z adding 'torch/include/fbgemm/ConvUtils.h' 2025-07-24T05:25:06.2051949Z adding 'torch/include/fbgemm/Fbgemm.h' 2025-07-24T05:25:06.2056709Z adding 'torch/include/fbgemm/FbgemmBuild.h' 2025-07-24T05:25:06.2061018Z adding 'torch/include/fbgemm/FbgemmConvert.h' 2025-07-24T05:25:06.2066430Z adding 'torch/include/fbgemm/FbgemmEmbedding.h' 2025-07-24T05:25:06.2069983Z adding 'torch/include/fbgemm/FbgemmFP16.h' 2025-07-24T05:25:06.2073280Z adding 'torch/include/fbgemm/FbgemmFP32.h' 2025-07-24T05:25:06.2078913Z adding 'torch/include/fbgemm/FbgemmFPCommon.h' 2025-07-24T05:25:06.2133281Z adding 'torch/include/fbgemm/FbgemmI64.h' 2025-07-24T05:25:06.2133896Z adding 'torch/include/fbgemm/FbgemmI8DepthwiseAvx2.h' 2025-07-24T05:25:06.2134317Z adding 'torch/include/fbgemm/FbgemmI8DirectconvAvx2.h' 2025-07-24T05:25:06.2134701Z adding 'torch/include/fbgemm/FbgemmI8Spmdm.h' 2025-07-24T05:25:06.2135051Z adding 'torch/include/fbgemm/FbgemmPackMatrixB.h' 2025-07-24T05:25:06.2135402Z adding 'torch/include/fbgemm/FbgemmSparse.h' 2025-07-24T05:25:06.2135734Z adding 'torch/include/fbgemm/FloatConversion.h' 2025-07-24T05:25:06.2136103Z adding 'torch/include/fbgemm/OutputProcessing-inl.h' 2025-07-24T05:25:06.2136482Z adding 'torch/include/fbgemm/PackingTraits-inl.h' 2025-07-24T05:25:06.2136820Z adding 'torch/include/fbgemm/QuantUtils.h' 2025-07-24T05:25:06.2137141Z adding 'torch/include/fbgemm/QuantUtilsAvx2.h' 2025-07-24T05:25:06.2137500Z adding 'torch/include/fbgemm/QuantUtilsAvx512.h' 2025-07-24T05:25:06.2139310Z adding 'torch/include/fbgemm/QuantUtilsNeon.h' 2025-07-24T05:25:06.2142387Z adding 'torch/include/fbgemm/SimdUtils.h' 2025-07-24T05:25:06.2146097Z adding 'torch/include/fbgemm/Types.h' 2025-07-24T05:25:06.2152788Z adding 'torch/include/fbgemm/Utils.h' 2025-07-24T05:25:06.2156811Z adding 'torch/include/fbgemm/UtilsAvx2.h' 2025-07-24T05:25:06.2160312Z adding 'torch/include/fbgemm/spmmUtils.h' 2025-07-24T05:25:06.2163773Z adding 'torch/include/fbgemm/spmmUtilsAvx2.h' 2025-07-24T05:25:06.2169922Z adding 'torch/include/fmt/args.h' 2025-07-24T05:25:06.2213866Z adding 'torch/include/fmt/base.h' 2025-07-24T05:25:06.2244476Z adding 'torch/include/fmt/chrono.h' 2025-07-24T05:25:06.2256465Z adding 'torch/include/fmt/color.h' 2025-07-24T05:25:06.2264889Z adding 'torch/include/fmt/compile.h' 2025-07-24T05:25:06.2268455Z adding 'torch/include/fmt/core.h' 2025-07-24T05:25:06.2300826Z adding 'torch/include/fmt/format-inl.h' 2025-07-24T05:25:06.2364679Z adding 'torch/include/fmt/format.h' 2025-07-24T05:25:06.2374969Z adding 'torch/include/fmt/os.h' 2025-07-24T05:25:06.2379717Z adding 'torch/include/fmt/ostream.h' 2025-07-24T05:25:06.2388666Z adding 'torch/include/fmt/printf.h' 2025-07-24T05:25:06.2398939Z adding 'torch/include/fmt/ranges.h' 2025-07-24T05:25:06.2408037Z adding 'torch/include/fmt/std.h' 2025-07-24T05:25:06.2414191Z adding 'torch/include/fmt/xchar.h' 2025-07-24T05:25:06.2418958Z adding 'torch/include/fp16/bitcasts.h' 2025-07-24T05:25:06.2425947Z adding 'torch/include/fp16/fp16.h' 2025-07-24T05:25:06.2430598Z adding 'torch/include/fp16/psimd.h' 2025-07-24T05:25:06.2437862Z adding 'torch/include/google/protobuf/any.h' 2025-07-24T05:25:06.2443958Z adding 'torch/include/google/protobuf/any.pb.h' 2025-07-24T05:25:06.2456477Z adding 'torch/include/google/protobuf/api.pb.h' 2025-07-24T05:25:06.2470456Z adding 'torch/include/google/protobuf/arena.h' 2025-07-24T05:25:06.2478583Z adding 'torch/include/google/protobuf/arena_impl.h' 2025-07-24T05:25:06.2485825Z adding 'torch/include/google/protobuf/arenastring.h' 2025-07-24T05:25:06.2521302Z adding 'torch/include/google/protobuf/descriptor.h' 2025-07-24T05:25:06.2609194Z adding 'torch/include/google/protobuf/descriptor.pb.h' 2025-07-24T05:25:06.2630428Z adding 'torch/include/google/protobuf/descriptor_database.h' 2025-07-24T05:25:06.2636619Z adding 'torch/include/google/protobuf/duration.pb.h' 2025-07-24T05:25:06.2642334Z adding 'torch/include/google/protobuf/dynamic_message.h' 2025-07-24T05:25:06.2647199Z adding 'torch/include/google/protobuf/empty.pb.h' 2025-07-24T05:25:06.2672291Z adding 'torch/include/google/protobuf/extension_set.h' 2025-07-24T05:25:06.2679964Z adding 'torch/include/google/protobuf/extension_set_inl.h' 2025-07-24T05:25:06.2686620Z adding 'torch/include/google/protobuf/field_mask.pb.h' 2025-07-24T05:25:06.2691578Z adding 'torch/include/google/protobuf/generated_enum_reflection.h' 2025-07-24T05:25:06.2696069Z adding 'torch/include/google/protobuf/generated_enum_util.h' 2025-07-24T05:25:06.2703481Z adding 'torch/include/google/protobuf/generated_message_reflection.h' 2025-07-24T05:25:06.2726992Z adding 'torch/include/google/protobuf/generated_message_table_driven.h' 2025-07-24T05:25:06.2727588Z adding 'torch/include/google/protobuf/generated_message_util.h' 2025-07-24T05:25:06.2728072Z adding 'torch/include/google/protobuf/has_bits.h' 2025-07-24T05:25:06.2728478Z adding 'torch/include/google/protobuf/implicit_weak_message.h' 2025-07-24T05:25:06.2731652Z adding 'torch/include/google/protobuf/inlined_string_field.h' 2025-07-24T05:25:06.2750258Z adding 'torch/include/google/protobuf/map.h' 2025-07-24T05:25:06.2756685Z adding 'torch/include/google/protobuf/map_entry.h' 2025-07-24T05:25:06.2767201Z adding 'torch/include/google/protobuf/map_entry_lite.h' 2025-07-24T05:25:06.2778882Z adding 'torch/include/google/protobuf/map_field.h' 2025-07-24T05:25:06.2786279Z adding 'torch/include/google/protobuf/map_field_inl.h' 2025-07-24T05:25:06.2791529Z adding 'torch/include/google/protobuf/map_field_lite.h' 2025-07-24T05:25:06.2801571Z adding 'torch/include/google/protobuf/map_type_handler.h' 2025-07-24T05:25:06.2826760Z adding 'torch/include/google/protobuf/message.h' 2025-07-24T05:25:06.2839638Z adding 'torch/include/google/protobuf/message_lite.h' 2025-07-24T05:25:06.2843892Z adding 'torch/include/google/protobuf/metadata.h' 2025-07-24T05:25:06.2849045Z adding 'torch/include/google/protobuf/metadata_lite.h' 2025-07-24T05:25:06.2860995Z adding 'torch/include/google/protobuf/parse_context.h' 2025-07-24T05:25:06.2865484Z adding 'torch/include/google/protobuf/port.h' 2025-07-24T05:25:06.2873875Z adding 'torch/include/google/protobuf/reflection.h' 2025-07-24T05:25:06.2878497Z adding 'torch/include/google/protobuf/reflection_ops.h' 2025-07-24T05:25:06.2914489Z adding 'torch/include/google/protobuf/repeated_field.h' 2025-07-24T05:25:06.2923939Z adding 'torch/include/google/protobuf/service.h' 2025-07-24T05:25:06.2929667Z adding 'torch/include/google/protobuf/source_context.pb.h' 2025-07-24T05:25:06.2941688Z adding 'torch/include/google/protobuf/struct.pb.h' 2025-07-24T05:25:06.2954450Z adding 'torch/include/google/protobuf/text_format.h' 2025-07-24T05:25:06.2960212Z adding 'torch/include/google/protobuf/timestamp.pb.h' 2025-07-24T05:25:06.2980628Z adding 'torch/include/google/protobuf/type.pb.h' 2025-07-24T05:25:06.2990049Z adding 'torch/include/google/protobuf/unknown_field_set.h' 2025-07-24T05:25:06.2997812Z adding 'torch/include/google/protobuf/wire_format.h' 2025-07-24T05:25:06.3020987Z adding 'torch/include/google/protobuf/wire_format_lite.h' 2025-07-24T05:25:06.3034163Z adding 'torch/include/google/protobuf/wrappers.pb.h' 2025-07-24T05:25:06.3042363Z adding 'torch/include/google/protobuf/compiler/code_generator.h' 2025-07-24T05:25:06.3052594Z adding 'torch/include/google/protobuf/compiler/command_line_interface.h' 2025-07-24T05:25:06.3060331Z adding 'torch/include/google/protobuf/compiler/importer.h' 2025-07-24T05:25:06.3072898Z adding 'torch/include/google/protobuf/compiler/parser.h' 2025-07-24T05:25:06.3078141Z adding 'torch/include/google/protobuf/compiler/plugin.h' 2025-07-24T05:25:06.3094329Z adding 'torch/include/google/protobuf/compiler/plugin.pb.h' 2025-07-24T05:25:06.3101438Z adding 'torch/include/google/protobuf/compiler/cpp/cpp_generator.h' 2025-07-24T05:25:06.3106454Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_generator.h' 2025-07-24T05:25:06.3110745Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_names.h' 2025-07-24T05:25:06.3115668Z adding 'torch/include/google/protobuf/compiler/java/java_generator.h' 2025-07-24T05:25:06.3119793Z adding 'torch/include/google/protobuf/compiler/java/java_names.h' 2025-07-24T05:25:06.3127020Z adding 'torch/include/google/protobuf/compiler/js/js_generator.h' 2025-07-24T05:25:06.3131312Z adding 'torch/include/google/protobuf/compiler/js/well_known_types_embed.h' 2025-07-24T05:25:06.3136259Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h' 2025-07-24T05:25:06.3142829Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h' 2025-07-24T05:25:06.3148106Z adding 'torch/include/google/protobuf/compiler/php/php_generator.h' 2025-07-24T05:25:06.3153789Z adding 'torch/include/google/protobuf/compiler/python/python_generator.h' 2025-07-24T05:25:06.3158774Z adding 'torch/include/google/protobuf/compiler/ruby/ruby_generator.h' 2025-07-24T05:25:06.3189520Z adding 'torch/include/google/protobuf/io/coded_stream.h' 2025-07-24T05:25:06.3196706Z adding 'torch/include/google/protobuf/io/gzip_stream.h' 2025-07-24T05:25:06.3201879Z adding 'torch/include/google/protobuf/io/io_win32.h' 2025-07-24T05:25:06.3211340Z adding 'torch/include/google/protobuf/io/printer.h' 2025-07-24T05:25:06.3236462Z adding 'torch/include/google/protobuf/io/strtod.h' 2025-07-24T05:25:06.3237030Z adding 'torch/include/google/protobuf/io/tokenizer.h' 2025-07-24T05:25:06.3237464Z adding 'torch/include/google/protobuf/io/zero_copy_stream.h' 2025-07-24T05:25:06.3237951Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl.h' 2025-07-24T05:25:06.3245558Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h' 2025-07-24T05:25:06.3253566Z adding 'torch/include/google/protobuf/stubs/bytestream.h' 2025-07-24T05:25:06.3259344Z adding 'torch/include/google/protobuf/stubs/callback.h' 2025-07-24T05:25:06.3264849Z adding 'torch/include/google/protobuf/stubs/casts.h' 2025-07-24T05:25:06.3270135Z adding 'torch/include/google/protobuf/stubs/common.h' 2025-07-24T05:25:06.3274742Z adding 'torch/include/google/protobuf/stubs/fastmem.h' 2025-07-24T05:25:06.3279085Z adding 'torch/include/google/protobuf/stubs/hash.h' 2025-07-24T05:25:06.3284584Z adding 'torch/include/google/protobuf/stubs/logging.h' 2025-07-24T05:25:06.3289268Z adding 'torch/include/google/protobuf/stubs/macros.h' 2025-07-24T05:25:06.3300301Z adding 'torch/include/google/protobuf/stubs/map_util.h' 2025-07-24T05:25:06.3305852Z adding 'torch/include/google/protobuf/stubs/mutex.h' 2025-07-24T05:25:06.3309411Z adding 'torch/include/google/protobuf/stubs/once.h' 2025-07-24T05:25:06.3313723Z adding 'torch/include/google/protobuf/stubs/platform_macros.h' 2025-07-24T05:25:06.3319838Z adding 'torch/include/google/protobuf/stubs/port.h' 2025-07-24T05:25:06.3324306Z adding 'torch/include/google/protobuf/stubs/status.h' 2025-07-24T05:25:06.3328428Z adding 'torch/include/google/protobuf/stubs/stl_util.h' 2025-07-24T05:25:06.3337347Z adding 'torch/include/google/protobuf/stubs/stringpiece.h' 2025-07-24T05:25:06.3352096Z adding 'torch/include/google/protobuf/stubs/strutil.h' 2025-07-24T05:25:06.3357689Z adding 'torch/include/google/protobuf/stubs/template_util.h' 2025-07-24T05:25:06.3363334Z adding 'torch/include/google/protobuf/util/delimited_message_util.h' 2025-07-24T05:25:06.3369092Z adding 'torch/include/google/protobuf/util/field_comparator.h' 2025-07-24T05:25:06.3375350Z adding 'torch/include/google/protobuf/util/field_mask_util.h' 2025-07-24T05:25:06.3380561Z adding 'torch/include/google/protobuf/util/json_util.h' 2025-07-24T05:25:06.3400204Z adding 'torch/include/google/protobuf/util/message_differencer.h' 2025-07-24T05:25:06.3406983Z adding 'torch/include/google/protobuf/util/time_util.h' 2025-07-24T05:25:06.3411304Z adding 'torch/include/google/protobuf/util/type_resolver.h' 2025-07-24T05:25:06.3415045Z adding 'torch/include/google/protobuf/util/type_resolver_util.h' 2025-07-24T05:25:06.3420219Z adding 'torch/include/kineto/AbstractConfig.h' 2025-07-24T05:25:06.3424552Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-07-24T05:25:06.3427890Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-07-24T05:25:06.3431481Z adding 'torch/include/kineto/ActivityType.h' 2025-07-24T05:25:06.3434477Z adding 'torch/include/kineto/ClientInterface.h' 2025-07-24T05:25:06.3441622Z adding 'torch/include/kineto/Config.h' 2025-07-24T05:25:06.3445956Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-07-24T05:25:06.3450375Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-07-24T05:25:06.3454170Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-07-24T05:25:06.3457836Z adding 'torch/include/kineto/ITraceActivity.h' 2025-07-24T05:25:06.3483487Z adding 'torch/include/kineto/LoggingAPI.h' 2025-07-24T05:25:06.3483815Z adding 'torch/include/kineto/ThreadUtil.h' 2025-07-24T05:25:06.3484190Z adding 'torch/include/kineto/TraceSpan.h' 2025-07-24T05:25:06.3484500Z adding 'torch/include/kineto/libkineto.h' 2025-07-24T05:25:06.3484801Z adding 'torch/include/kineto/output_base.h' 2025-07-24T05:25:06.3485134Z adding 'torch/include/kineto/time_since_epoch.h' 2025-07-24T05:25:06.3489692Z adding 'torch/include/legacy/ittnotify.h' 2025-07-24T05:25:06.3495212Z adding 'torch/include/mimalloc-2.2/mimalloc-new-delete.h' 2025-07-24T05:25:06.3499211Z adding 'torch/include/mimalloc-2.2/mimalloc-override.h' 2025-07-24T05:25:06.4122805Z adding 'torch/include/mimalloc-2.2/mimalloc-stats.h' 2025-07-24T05:25:06.4123264Z adding 'torch/include/mimalloc-2.2/mimalloc.h' 2025-07-24T05:25:06.4123621Z adding 'torch/include/oneapi/dnnl/dnnl.h' 2025-07-24T05:25:06.4123936Z adding 'torch/include/oneapi/dnnl/dnnl.hpp' 2025-07-24T05:25:06.4124281Z adding 'torch/include/oneapi/dnnl/dnnl_common.h' 2025-07-24T05:25:06.4124646Z adding 'torch/include/oneapi/dnnl/dnnl_common.hpp' 2025-07-24T05:25:06.4125175Z adding 'torch/include/oneapi/dnnl/dnnl_common_types.h' 2025-07-24T05:25:06.4125568Z adding 'torch/include/oneapi/dnnl/dnnl_config.h' 2025-07-24T05:25:06.4125910Z adding 'torch/include/oneapi/dnnl/dnnl_debug.h' 2025-07-24T05:25:06.4126251Z adding 'torch/include/oneapi/dnnl/dnnl_graph.h' 2025-07-24T05:25:06.4126664Z adding 'torch/include/oneapi/dnnl/dnnl_graph.hpp' 2025-07-24T05:25:06.4127023Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.h' 2025-07-24T05:25:06.4127465Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.hpp' 2025-07-24T05:25:06.4127852Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.h' 2025-07-24T05:25:06.4128355Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.hpp' 2025-07-24T05:25:06.4128821Z adding 'torch/include/oneapi/dnnl/dnnl_graph_types.h' 2025-07-24T05:25:06.4129186Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.h' 2025-07-24T05:25:06.4129711Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.hpp' 2025-07-24T05:25:06.4130092Z adding 'torch/include/oneapi/dnnl/dnnl_ocl_types.h' 2025-07-24T05:25:06.4130465Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.h' 2025-07-24T05:25:06.4130798Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.hpp' 2025-07-24T05:25:06.4131157Z adding 'torch/include/oneapi/dnnl/dnnl_sycl_types.h' 2025-07-24T05:25:06.4131532Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.h' 2025-07-24T05:25:06.4131923Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.hpp' 2025-07-24T05:25:06.4132337Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool_iface.hpp' 2025-07-24T05:25:06.4132741Z adding 'torch/include/oneapi/dnnl/dnnl_types.h' 2025-07-24T05:25:06.4133083Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.h' 2025-07-24T05:25:06.4133506Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.hpp' 2025-07-24T05:25:06.4133928Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel_types.h' 2025-07-24T05:25:06.4134297Z adding 'torch/include/oneapi/dnnl/dnnl_version.h' 2025-07-24T05:25:06.4134663Z adding 'torch/include/oneapi/dnnl/dnnl_version_hash.h' 2025-07-24T05:25:06.4135020Z adding 'torch/include/pybind11/attr.h' 2025-07-24T05:25:06.4135327Z adding 'torch/include/pybind11/buffer_info.h' 2025-07-24T05:25:06.4135636Z adding 'torch/include/pybind11/cast.h' 2025-07-24T05:25:06.4135932Z adding 'torch/include/pybind11/chrono.h' 2025-07-24T05:25:06.4136226Z adding 'torch/include/pybind11/common.h' 2025-07-24T05:25:06.4136529Z adding 'torch/include/pybind11/complex.h' 2025-07-24T05:25:06.4136838Z adding 'torch/include/pybind11/eigen.h' 2025-07-24T05:25:06.4137134Z adding 'torch/include/pybind11/embed.h' 2025-07-24T05:25:06.4137428Z adding 'torch/include/pybind11/eval.h' 2025-07-24T05:25:06.4137740Z adding 'torch/include/pybind11/functional.h' 2025-07-24T05:25:06.4138056Z adding 'torch/include/pybind11/gil.h' 2025-07-24T05:25:06.4138381Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-07-24T05:25:06.4238055Z adding 'torch/include/pybind11/iostream.h' 2025-07-24T05:25:06.4238414Z adding 'torch/include/pybind11/numpy.h' 2025-07-24T05:25:06.4238759Z adding 'torch/include/pybind11/operators.h' 2025-07-24T05:25:06.4239083Z adding 'torch/include/pybind11/options.h' 2025-07-24T05:25:06.4239395Z adding 'torch/include/pybind11/pybind11.h' 2025-07-24T05:25:06.4239710Z adding 'torch/include/pybind11/pytypes.h' 2025-07-24T05:25:06.4240012Z adding 'torch/include/pybind11/stl.h' 2025-07-24T05:25:06.4240320Z adding 'torch/include/pybind11/stl_bind.h' 2025-07-24T05:25:06.4240696Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-07-24T05:25:06.4241087Z adding 'torch/include/pybind11/typing.h' 2025-07-24T05:25:06.4241429Z adding 'torch/include/pybind11/detail/class.h' 2025-07-24T05:25:06.4241780Z adding 'torch/include/pybind11/detail/common.h' 2025-07-24T05:25:06.4242157Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-07-24T05:25:06.4242517Z adding 'torch/include/pybind11/detail/descr.h' 2025-07-24T05:25:06.4242925Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-07-24T05:25:06.4243320Z adding 'torch/include/pybind11/detail/init.h' 2025-07-24T05:25:06.4243803Z adding 'torch/include/pybind11/detail/internals.h' 2025-07-24T05:25:06.4244190Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-07-24T05:25:06.4244574Z adding 'torch/include/pybind11/detail/typeid.h' 2025-07-24T05:25:06.4245024Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-07-24T05:25:06.4245395Z adding 'torch/include/pybind11/eigen/common.h' 2025-07-24T05:25:06.4245741Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-07-24T05:25:06.4246080Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-07-24T05:25:06.4247609Z adding 'torch/include/pybind11/stl/filesystem.h' 2025-07-24T05:25:06.4256995Z adding 'torch/include/torch/custom_class.h' 2025-07-24T05:25:06.4262538Z adding 'torch/include/torch/custom_class_detail.h' 2025-07-24T05:25:06.4266036Z adding 'torch/include/torch/extension.h' 2025-07-24T05:25:06.4282416Z adding 'torch/include/torch/library.h' 2025-07-24T05:25:06.4286522Z adding 'torch/include/torch/script.h' 2025-07-24T05:25:06.4292029Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-07-24T05:25:06.4295238Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-07-24T05:25:06.4298302Z adding 'torch/include/torch/csrc/Device.h' 2025-07-24T05:25:06.4301324Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-07-24T05:25:06.4304506Z adding 'torch/include/torch/csrc/Dtype.h' 2025-07-24T05:25:06.4308165Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-07-24T05:25:06.4311293Z adding 'torch/include/torch/csrc/Event.h' 2025-07-24T05:25:06.4317961Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-07-24T05:25:06.4321391Z adding 'torch/include/torch/csrc/Export.h' 2025-07-24T05:25:06.4324630Z adding 'torch/include/torch/csrc/Generator.h' 2025-07-24T05:25:06.4327755Z adding 'torch/include/torch/csrc/Layout.h' 2025-07-24T05:25:06.4330912Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-07-24T05:25:06.4333770Z adding 'torch/include/torch/csrc/Module.h' 2025-07-24T05:25:06.4336768Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-07-24T05:25:06.4340231Z adding 'torch/include/torch/csrc/QScheme.h' 2025-07-24T05:25:06.4343006Z adding 'torch/include/torch/csrc/Size.h' 2025-07-24T05:25:06.4346580Z adding 'torch/include/torch/csrc/Storage.h' 2025-07-24T05:25:06.4349542Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-07-24T05:25:06.4352394Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-07-24T05:25:06.4355398Z adding 'torch/include/torch/csrc/Stream.h' 2025-07-24T05:25:06.4358360Z adding 'torch/include/torch/csrc/THConcat.h' 2025-07-24T05:25:06.4361575Z adding 'torch/include/torch/csrc/THP.h' 2025-07-24T05:25:06.4364617Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-07-24T05:25:06.4367484Z adding 'torch/include/torch/csrc/Types.h' 2025-07-24T05:25:06.4495844Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-07-24T05:25:06.4496408Z adding 'torch/include/torch/csrc/itt.h' 2025-07-24T05:25:06.4496743Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-07-24T05:25:06.4497117Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-07-24T05:25:06.4497477Z adding 'torch/include/torch/csrc/python_headers.h' 2025-07-24T05:25:06.4497827Z adding 'torch/include/torch/csrc/serialization.h' 2025-07-24T05:25:06.4498169Z adding 'torch/include/torch/csrc/utils.h' 2025-07-24T05:25:06.4498529Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-07-24T05:25:06.4498949Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-07-24T05:25:06.4499396Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-07-24T05:25:06.4499832Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-07-24T05:25:06.4500257Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-07-24T05:25:06.4500683Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-07-24T05:25:06.4501159Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-07-24T05:25:06.4501624Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-07-24T05:25:06.4502193Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-07-24T05:25:06.4502623Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-07-24T05:25:06.4503022Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-07-24T05:25:06.4503517Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-07-24T05:25:06.4503941Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-07-24T05:25:06.4504444Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-07-24T05:25:06.4504920Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-07-24T05:25:06.4505477Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-07-24T05:25:06.4506471Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-07-24T05:25:06.4506928Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-07-24T05:25:06.4507376Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-07-24T05:25:06.4507811Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-07-24T05:25:06.4508239Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-07-24T05:25:06.4508656Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-07-24T05:25:06.4509104Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-07-24T05:25:06.4509537Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-07-24T05:25:06.4510023Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-07-24T05:25:06.4510601Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-07-24T05:25:06.4510810Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-07-24T05:25:06.4513760Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-07-24T05:25:06.4517961Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-07-24T05:25:06.4521157Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-07-24T05:25:06.4524146Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-07-24T05:25:06.4527475Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-07-24T05:25:06.4534175Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-07-24T05:25:06.4538291Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-07-24T05:25:06.4542188Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-07-24T05:25:06.4548375Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-07-24T05:25:06.4557738Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-07-24T05:25:06.4562357Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-07-24T05:25:06.4565907Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-07-24T05:25:06.4569579Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-07-24T05:25:06.4573280Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-07-24T05:25:06.4576654Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-07-24T05:25:06.4581396Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-07-24T05:25:06.4585370Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-07-24T05:25:06.4589691Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-07-24T05:25:06.4594110Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-07-24T05:25:06.4597592Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-07-24T05:25:06.4601414Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-07-24T05:25:06.4605097Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-07-24T05:25:06.4608510Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-07-24T05:25:06.4611862Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-07-24T05:25:06.4615509Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-07-24T05:25:06.4620005Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-07-24T05:25:06.4623536Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-07-24T05:25:06.4627117Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-07-24T05:25:06.4630722Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-07-24T05:25:06.4634426Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-07-24T05:25:06.4641841Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-07-24T05:25:06.4645930Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-07-24T05:25:06.4650997Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-07-24T05:25:06.4654414Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-07-24T05:25:06.4658522Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-07-24T05:25:06.4668580Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-07-24T05:25:06.4672694Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-07-24T05:25:06.4675906Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-07-24T05:25:06.4679794Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-07-24T05:25:06.4705021Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-07-24T05:25:06.4705451Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-07-24T05:25:06.4705723Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-07-24T05:25:06.4706041Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-07-24T05:25:06.4707819Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-07-24T05:25:06.4712009Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-07-24T05:25:06.4717649Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-07-24T05:25:06.4722755Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-07-24T05:25:06.4726900Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-07-24T05:25:06.4730889Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-07-24T05:25:06.4734500Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-07-24T05:25:06.4742263Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-07-24T05:25:06.4747501Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-07-24T05:25:06.4751408Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-07-24T05:25:06.4754937Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-07-24T05:25:06.4762374Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-07-24T05:25:06.4768382Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-07-24T05:25:06.4773044Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-07-24T05:25:06.4777593Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-07-24T05:25:06.4784689Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-07-24T05:25:06.4789586Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-07-24T05:25:06.4794174Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-07-24T05:25:06.4798430Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-07-24T05:25:06.4804334Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-07-24T05:25:06.4808841Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-07-24T05:25:06.4813073Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-07-24T05:25:06.4817551Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-07-24T05:25:06.4821354Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-07-24T05:25:06.4825655Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-07-24T05:25:06.4830123Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-07-24T05:25:06.4838097Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-07-24T05:25:06.4843382Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-07-24T05:25:06.4848429Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-07-24T05:25:06.4852519Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-07-24T05:25:06.4859385Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-07-24T05:25:06.4865566Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-07-24T05:25:06.4870468Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-07-24T05:25:06.4875067Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-07-24T05:25:06.4879758Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-07-24T05:25:06.4883596Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-07-24T05:25:06.4887190Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-07-24T05:25:06.4895024Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-07-24T05:25:06.4899984Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-07-24T05:25:06.4904599Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-07-24T05:25:06.4909425Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-07-24T05:25:06.4915371Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-07-24T05:25:06.4921310Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-07-24T05:25:06.4925810Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-07-24T05:25:06.4930437Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-07-24T05:25:06.4935444Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-07-24T05:25:06.4942903Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-07-24T05:25:06.4951294Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-07-24T05:25:06.4955971Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-07-24T05:25:06.4959750Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-07-24T05:25:06.4964676Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-07-24T05:25:06.4968718Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-07-24T05:25:06.4972442Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-07-24T05:25:06.4977317Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-07-24T05:25:06.4981214Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-07-24T05:25:06.4985107Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-07-24T05:25:06.4988825Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-07-24T05:25:06.4995857Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-07-24T05:25:06.5000826Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-07-24T05:25:06.5005122Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-07-24T05:25:06.5008819Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-07-24T05:25:06.5014196Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-07-24T05:25:06.5018983Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-07-24T05:25:06.5022847Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-07-24T05:25:06.5026576Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-07-24T05:25:06.5030114Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-07-24T05:25:06.5034318Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-07-24T05:25:06.5037794Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-07-24T05:25:06.5044895Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-07-24T05:25:06.5050185Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-07-24T05:25:06.5054061Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-07-24T05:25:06.5060310Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-07-24T05:25:06.5065552Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-07-24T05:25:06.5069339Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-07-24T05:25:06.5073108Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-07-24T05:25:06.5077022Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-07-24T05:25:06.5081970Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-07-24T05:25:06.5085881Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-07-24T05:25:06.5092083Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-07-24T05:25:06.5096102Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-07-24T05:25:06.5100554Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-07-24T05:25:06.5104229Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-07-24T05:25:06.5107497Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-07-24T05:25:06.5111641Z adding 'torch/include/torch/csrc/api/include/torch/python/init.h' 2025-07-24T05:25:06.5115153Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-07-24T05:25:06.5119073Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-07-24T05:25:06.5122722Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-07-24T05:25:06.5125851Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-07-24T05:25:06.5137434Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-07-24T05:25:06.5141306Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-07-24T05:25:06.5147933Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-07-24T05:25:06.5151854Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-07-24T05:25:06.5156254Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-07-24T05:25:06.5159844Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-07-24T05:25:06.5162949Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-07-24T05:25:06.5172503Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-07-24T05:25:06.5176776Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-07-24T05:25:06.5182533Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-07-24T05:25:06.5209145Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-07-24T05:25:06.5209439Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-07-24T05:25:06.5209652Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-07-24T05:25:06.5212190Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-07-24T05:25:06.5218463Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-07-24T05:25:06.5222759Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-07-24T05:25:06.5227202Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-07-24T05:25:06.5231532Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-07-24T05:25:06.5234892Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-07-24T05:25:06.5240579Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-07-24T05:25:06.5247408Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-07-24T05:25:06.5250810Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-07-24T05:25:06.5254510Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-07-24T05:25:06.5257568Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-07-24T05:25:06.5261575Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-07-24T05:25:06.5265123Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-07-24T05:25:06.5268322Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-07-24T05:25:06.5271351Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-07-24T05:25:06.5275928Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-07-24T05:25:06.5279418Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-07-24T05:25:06.5282610Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-07-24T05:25:06.5285968Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-07-24T05:25:06.5288941Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-07-24T05:25:06.5291794Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-07-24T05:25:06.5295369Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-07-24T05:25:06.5298093Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-07-24T05:25:06.5301107Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-07-24T05:25:06.5304303Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-07-24T05:25:06.5308843Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-07-24T05:25:06.5312655Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-07-24T05:25:06.5315933Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-07-24T05:25:06.5320355Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-07-24T05:25:06.5323816Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-07-24T05:25:06.5326826Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-07-24T05:25:06.5343666Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-07-24T05:25:06.5348155Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-07-24T05:25:06.5356216Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-07-24T05:25:06.5360310Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-07-24T05:25:06.5363690Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-07-24T05:25:06.5367492Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-07-24T05:25:06.5372827Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-07-24T05:25:06.5376910Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-07-24T05:25:06.5433613Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-07-24T05:25:06.5449027Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-07-24T05:25:06.5455579Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-07-24T05:25:06.5459807Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-07-24T05:25:06.5463334Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-07-24T05:25:06.5472549Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-07-24T05:25:06.5477332Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-07-24T05:25:06.5481125Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-07-24T05:25:06.5484633Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-07-24T05:25:06.5487871Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-07-24T05:25:06.5490988Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-07-24T05:25:06.5494804Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-07-24T05:25:06.5498712Z adding 'torch/include/torch/csrc/cpu/Module.h' 2025-07-24T05:25:06.5504544Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-07-24T05:25:06.5507917Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-07-24T05:25:06.5511105Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-07-24T05:25:06.5514131Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-07-24T05:25:06.5517393Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-07-24T05:25:06.5520341Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-07-24T05:25:06.5523734Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-07-24T05:25:06.5526832Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-07-24T05:25:06.5530236Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-07-24T05:25:06.5534597Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-07-24T05:25:06.5537868Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-07-24T05:25:06.5541018Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-07-24T05:25:06.5544012Z adding 'torch/include/torch/csrc/cuda/utils.h' 2025-07-24T05:25:06.5549726Z adding 'torch/include/torch/csrc/distributed/autograd/autograd.h' 2025-07-24T05:25:06.5553015Z adding 'torch/include/torch/csrc/distributed/autograd/python_autograd.h' 2025-07-24T05:25:06.5556625Z adding 'torch/include/torch/csrc/distributed/autograd/utils.h' 2025-07-24T05:25:06.5562383Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-07-24T05:25:06.5567527Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-07-24T05:25:06.5573852Z adding 'torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h' 2025-07-24T05:25:06.5578577Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-07-24T05:25:06.5582127Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-07-24T05:25:06.5586653Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-07-24T05:25:06.5590192Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-07-24T05:25:06.5593443Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-07-24T05:25:06.5596917Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-07-24T05:25:06.5600259Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-07-24T05:25:06.5604219Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-07-24T05:25:06.5608131Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-07-24T05:25:06.5611815Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-07-24T05:25:06.5615337Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-07-24T05:25:06.5618657Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-07-24T05:25:06.5626981Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-07-24T05:25:06.5630915Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-07-24T05:25:06.5635675Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-07-24T05:25:06.5638868Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-07-24T05:25:06.5644713Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-07-24T05:25:06.5652694Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp' 2025-07-24T05:25:06.5656608Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-07-24T05:25:06.5661984Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-07-24T05:25:06.5665279Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-07-24T05:25:06.5668957Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-07-24T05:25:06.5676309Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-07-24T05:25:06.5680100Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-07-24T05:25:06.5684580Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-07-24T05:25:06.5688468Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-07-24T05:25:06.5700251Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-07-24T05:25:06.5709373Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-07-24T05:25:06.5747974Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp' 2025-07-24T05:25:06.5748457Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-07-24T05:25:06.5748909Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-07-24T05:25:06.5755973Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-07-24T05:25:06.5760428Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-07-24T05:25:06.5765776Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-07-24T05:25:06.5769749Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-07-24T05:25:06.5773719Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-07-24T05:25:06.5778529Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-07-24T05:25:06.5782283Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-07-24T05:25:06.5787722Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-07-24T05:25:06.5792242Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-07-24T05:25:06.5796032Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-07-24T05:25:06.5800748Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-07-24T05:25:06.5804195Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-07-24T05:25:06.5813070Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-07-24T05:25:06.5816958Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-07-24T05:25:06.5821622Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-07-24T05:25:06.5824967Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-07-24T05:25:06.5829108Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-07-24T05:25:06.5832436Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-07-24T05:25:06.5835894Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-07-24T05:25:06.5839186Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-07-24T05:25:06.5842569Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-07-24T05:25:06.5847747Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-07-24T05:25:06.5851143Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-07-24T05:25:06.5854554Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-07-24T05:25:06.5866452Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-07-24T05:25:06.5871453Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-07-24T05:25:06.5874370Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-07-24T05:25:06.5878118Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-07-24T05:25:06.5881311Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-07-24T05:25:06.5886646Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp' 2025-07-24T05:25:06.5890128Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp' 2025-07-24T05:25:06.5894495Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp' 2025-07-24T05:25:06.5897909Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp' 2025-07-24T05:25:06.5901917Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/CUDAEventCache.hpp' 2025-07-24T05:25:06.5905268Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp' 2025-07-24T05:25:06.5908333Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp' 2025-07-24T05:25:06.5912380Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization.h' 2025-07-24T05:25:06.5915522Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h' 2025-07-24T05:25:06.5918879Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h' 2025-07-24T05:25:06.5925699Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h' 2025-07-24T05:25:06.5929878Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp' 2025-07-24T05:25:06.5933154Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp' 2025-07-24T05:25:06.5936990Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp' 2025-07-24T05:25:06.5940391Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp' 2025-07-24T05:25:06.5945442Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp' 2025-07-24T05:25:06.5949319Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp' 2025-07-24T05:25:06.5954098Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-07-24T05:25:06.5959091Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-07-24T05:25:06.5963171Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-07-24T05:25:06.5967216Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-07-24T05:25:06.5970739Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-07-24T05:25:06.5974101Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-07-24T05:25:06.5977264Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-07-24T05:25:06.5981599Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-07-24T05:25:06.5985229Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-07-24T05:25:06.5988669Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-07-24T05:25:06.5992386Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-07-24T05:25:06.5995423Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-07-24T05:25:06.6002790Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-07-24T05:25:06.6006726Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-07-24T05:25:06.6014950Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-07-24T05:25:06.6023925Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-07-24T05:25:06.6028553Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-07-24T05:25:06.6032621Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-07-24T05:25:06.6036338Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-07-24T05:25:06.6040264Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-07-24T05:25:06.6048082Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-07-24T05:25:06.6052955Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-07-24T05:25:06.6056562Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-07-24T05:25:06.6060267Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-07-24T05:25:06.6063729Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-07-24T05:25:06.6067404Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-07-24T05:25:06.6071426Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-07-24T05:25:06.6075960Z adding 'torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h' 2025-07-24T05:25:06.6080541Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h' 2025-07-24T05:25:06.6085254Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h' 2025-07-24T05:25:06.6090168Z adding 'torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h' 2025-07-24T05:25:06.6155581Z adding 'torch/include/torch/csrc/distributed/rpc/testing/testing.h' 2025-07-24T05:25:06.6156159Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-07-24T05:25:06.6156609Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-07-24T05:25:06.6157006Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-07-24T05:25:06.6157386Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-07-24T05:25:06.6157805Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-07-24T05:25:06.6158220Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-07-24T05:25:06.6158610Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-07-24T05:25:06.6159000Z adding 'torch/include/torch/csrc/dynamo/eval_frame_cpp.h' 2025-07-24T05:25:06.6159394Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-07-24T05:25:06.6159817Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-07-24T05:25:06.6160235Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-07-24T05:25:06.6160581Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-07-24T05:25:06.6161062Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-07-24T05:25:06.6161552Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-07-24T05:25:06.6164802Z adding 'torch/include/torch/csrc/export/example_upgraders.h' 2025-07-24T05:25:06.6169030Z adding 'torch/include/torch/csrc/export/pt2_archive_constants.h' 2025-07-24T05:25:06.6171960Z adding 'torch/include/torch/csrc/export/pybind.h' 2025-07-24T05:25:06.6176148Z adding 'torch/include/torch/csrc/export/upgrader.h' 2025-07-24T05:25:06.6180237Z adding 'torch/include/torch/csrc/functorch/init.h' 2025-07-24T05:25:06.6183898Z adding 'torch/include/torch/csrc/fx/node.h' 2025-07-24T05:25:06.6188702Z adding 'torch/include/torch/csrc/inductor/array_ref_impl.h' 2025-07-24T05:25:06.6202410Z adding 'torch/include/torch/csrc/inductor/cpp_prefix.h' 2025-07-24T05:25:06.6207112Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-07-24T05:25:06.6210607Z adding 'torch/include/torch/csrc/inductor/static_cuda_launcher.h' 2025-07-24T05:25:06.6215891Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h' 2025-07-24T05:25:06.6220712Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h' 2025-07-24T05:25:06.6225147Z adding 'torch/include/torch/csrc/inductor/aoti_include/array_ref.h' 2025-07-24T05:25:06.6228215Z adding 'torch/include/torch/csrc/inductor/aoti_include/common.h' 2025-07-24T05:25:06.6231315Z adding 'torch/include/torch/csrc/inductor/aoti_include/cpu.h' 2025-07-24T05:25:06.6234747Z adding 'torch/include/torch/csrc/inductor/aoti_include/cuda.h' 2025-07-24T05:25:06.6237829Z adding 'torch/include/torch/csrc/inductor/aoti_include/mps.h' 2025-07-24T05:25:06.6241332Z adding 'torch/include/torch/csrc/inductor/aoti_include/xpu.h' 2025-07-24T05:25:06.6245257Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-07-24T05:25:06.6248284Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-07-24T05:25:06.6253251Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-07-24T05:25:06.6256882Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-07-24T05:25:06.6260171Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-07-24T05:25:06.6263254Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h' 2025-07-24T05:25:06.6266897Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-07-24T05:25:06.6269728Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-07-24T05:25:06.6275204Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-07-24T05:25:06.6278581Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h' 2025-07-24T05:25:06.6282183Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-07-24T05:25:06.6287015Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-07-24T05:25:06.6291470Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h' 2025-07-24T05:25:06.6295080Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-07-24T05:25:06.6304131Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_base.h' 2025-07-24T05:25:06.6314812Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-07-24T05:25:06.6318922Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-07-24T05:25:06.6323517Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-07-24T05:25:06.6327430Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-07-24T05:25:06.6332671Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-07-24T05:25:06.6336414Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-07-24T05:25:06.6506181Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-07-24T05:25:06.6506716Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-07-24T05:25:06.6507287Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-07-24T05:25:06.6507852Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-07-24T05:25:06.6508396Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-07-24T05:25:06.6508903Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-07-24T05:25:06.6509378Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/macros.h' 2025-07-24T05:25:06.6509837Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-07-24T05:25:06.6510323Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h' 2025-07-24T05:25:06.6510853Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_deprecated.h' 2025-07-24T05:25:06.6511452Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h' 2025-07-24T05:25:06.6511994Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-07-24T05:25:06.6512546Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-07-24T05:25:06.6513150Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-07-24T05:25:06.6513735Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h' 2025-07-24T05:25:06.6514319Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-07-24T05:25:06.6514992Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h' 2025-07-24T05:25:06.6515497Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/common.h' 2025-07-24T05:25:06.6515958Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h' 2025-07-24T05:25:06.6517019Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h' 2025-07-24T05:25:06.6517565Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/mps.h' 2025-07-24T05:25:06.6518066Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h' 2025-07-24T05:25:06.6518660Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h' 2025-07-24T05:25:06.6519320Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h' 2025-07-24T05:25:06.6519930Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h' 2025-07-24T05:25:06.6520526Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h' 2025-07-24T05:25:06.6521059Z adding 'torch/include/torch/csrc/instruction_counter/Module.h' 2025-07-24T05:25:06.6521467Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-07-24T05:25:06.6521822Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-07-24T05:25:06.6522217Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-07-24T05:25:06.6522635Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-07-24T05:25:06.6523067Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-07-24T05:25:06.6523502Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-07-24T05:25:06.6523906Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-07-24T05:25:06.6524268Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-07-24T05:25:06.6524640Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-07-24T05:25:06.6525104Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-07-24T05:25:06.6525635Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-07-24T05:25:06.6526129Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-07-24T05:25:06.6526614Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-07-24T05:25:06.6527094Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-07-24T05:25:06.6527576Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-07-24T05:25:06.6528083Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-07-24T05:25:06.6529244Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-07-24T05:25:06.6533883Z adding 'torch/include/torch/csrc/jit/backends/coreml/cpp/context.h' 2025-07-24T05:25:06.6537961Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h' 2025-07-24T05:25:06.6542369Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h' 2025-07-24T05:25:06.6544555Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h' 2025-07-24T05:25:06.6547818Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h' 2025-07-24T05:25:06.6550997Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h' 2025-07-24T05:25:06.6555900Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h' 2025-07-24T05:25:06.6560189Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h' 2025-07-24T05:25:06.6564356Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h' 2025-07-24T05:25:06.6589854Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h' 2025-07-24T05:25:06.6590596Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-07-24T05:25:06.6591077Z adding 'torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h' 2025-07-24T05:25:06.6591534Z adding 'torch/include/torch/csrc/jit/codegen/fuser/codegen.h' 2025-07-24T05:25:06.6591987Z adding 'torch/include/torch/csrc/jit/codegen/fuser/compiler.h' 2025-07-24T05:25:06.6593236Z adding 'torch/include/torch/csrc/jit/codegen/fuser/executor.h' 2025-07-24T05:25:06.6593689Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fallback.h' 2025-07-24T05:25:06.6596392Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h' 2025-07-24T05:25:06.6600683Z adding 'torch/include/torch/csrc/jit/codegen/fuser/interface.h' 2025-07-24T05:25:06.6603413Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h' 2025-07-24T05:25:06.6607527Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h' 2025-07-24T05:25:06.6611678Z adding 'torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h' 2025-07-24T05:25:06.6615207Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h' 2025-07-24T05:25:06.6618441Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h' 2025-07-24T05:25:06.6622815Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h' 2025-07-24T05:25:06.6626651Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h' 2025-07-24T05:25:06.6630448Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h' 2025-07-24T05:25:06.6635434Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h' 2025-07-24T05:25:06.6641326Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h' 2025-07-24T05:25:06.6647689Z adding 'torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h' 2025-07-24T05:25:06.6651182Z adding 'torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h' 2025-07-24T05:25:06.6654260Z adding 'torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h' 2025-07-24T05:25:06.6657714Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h' 2025-07-24T05:25:06.6661374Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h' 2025-07-24T05:25:06.6664714Z adding 'torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h' 2025-07-24T05:25:06.6668231Z adding 'torch/include/torch/csrc/jit/codegen/onednn/interface.h' 2025-07-24T05:25:06.6672043Z adding 'torch/include/torch/csrc/jit/codegen/onednn/kernel.h' 2025-07-24T05:25:06.6675329Z adding 'torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h' 2025-07-24T05:25:06.6679194Z adding 'torch/include/torch/csrc/jit/codegen/onednn/operator.h' 2025-07-24T05:25:06.6682631Z adding 'torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h' 2025-07-24T05:25:06.6687683Z adding 'torch/include/torch/csrc/jit/cuda/cuda.h' 2025-07-24T05:25:06.6692289Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-07-24T05:25:06.6695428Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-07-24T05:25:06.6701637Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-07-24T05:25:06.6705672Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-07-24T05:25:06.6709265Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-07-24T05:25:06.6713131Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-07-24T05:25:06.6716596Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-07-24T05:25:06.6720080Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-07-24T05:25:06.6723586Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-07-24T05:25:06.6726780Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-07-24T05:25:06.6735624Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-07-24T05:25:06.6739811Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-07-24T05:25:06.6743059Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-07-24T05:25:06.6746850Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-07-24T05:25:06.6750243Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-07-24T05:25:06.6753338Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-07-24T05:25:06.6756838Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-07-24T05:25:06.6760365Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-07-24T05:25:06.6763708Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-07-24T05:25:06.6767358Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-07-24T05:25:06.6774954Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-07-24T05:25:06.6778747Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-07-24T05:25:06.6781863Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-07-24T05:25:06.6792598Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-07-24T05:25:06.6798880Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-07-24T05:25:06.6804101Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-07-24T05:25:06.6816356Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-07-24T05:25:06.6820537Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-07-24T05:25:06.6828999Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-07-24T05:25:06.6833468Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-07-24T05:25:06.6837148Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-07-24T05:25:06.6841534Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-07-24T05:25:06.6844909Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-07-24T05:25:06.6866899Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-07-24T05:25:06.6872461Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-07-24T05:25:06.6876238Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-07-24T05:25:06.6879918Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-07-24T05:25:06.6883033Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-07-24T05:25:06.6887716Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-07-24T05:25:06.6891991Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-07-24T05:25:06.6895181Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-07-24T05:25:06.6899669Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-07-24T05:25:06.6903214Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-07-24T05:25:06.6908071Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-07-24T05:25:06.6913420Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-07-24T05:25:06.6916815Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-07-24T05:25:06.6920579Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-07-24T05:25:06.6924582Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-07-24T05:25:06.6927949Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-07-24T05:25:06.6931184Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-07-24T05:25:06.6934326Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-07-24T05:25:06.6937490Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-07-24T05:25:06.6941899Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-07-24T05:25:06.6946129Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-07-24T05:25:06.6949429Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-07-24T05:25:06.6952686Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-07-24T05:25:06.6956016Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-07-24T05:25:06.6960941Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-07-24T05:25:06.6965449Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-07-24T05:25:06.6969236Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-07-24T05:25:06.6973264Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-07-24T05:25:06.6977115Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-07-24T05:25:06.6980797Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-07-24T05:25:06.6985589Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport.h' 2025-07-24T05:25:06.6989395Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h' 2025-07-24T05:25:06.6993665Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h' 2025-07-24T05:25:06.6997885Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h' 2025-07-24T05:25:06.7002642Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h' 2025-07-24T05:25:06.7006605Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h' 2025-07-24T05:25:06.7010047Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h' 2025-07-24T05:25:06.7014737Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h' 2025-07-24T05:25:06.7018634Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h' 2025-07-24T05:25:06.7022114Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h' 2025-07-24T05:25:06.7025544Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h' 2025-07-24T05:25:06.7029716Z adding 'torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h' 2025-07-24T05:25:06.7034263Z adding 'torch/include/torch/csrc/jit/mobile/nnc/context.h' 2025-07-24T05:25:06.7037981Z adding 'torch/include/torch/csrc/jit/mobile/nnc/registry.h' 2025-07-24T05:25:06.7042572Z adding 'torch/include/torch/csrc/jit/mobile/train/export_data.h' 2025-07-24T05:25:06.7046040Z adding 'torch/include/torch/csrc/jit/mobile/train/random.h' 2025-07-24T05:25:06.7049631Z adding 'torch/include/torch/csrc/jit/mobile/train/sequential.h' 2025-07-24T05:25:06.7054430Z adding 'torch/include/torch/csrc/jit/mobile/train/optim/sgd.h' 2025-07-24T05:25:06.7058833Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders.h' 2025-07-24T05:25:06.7062054Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h' 2025-07-24T05:25:06.7065551Z adding 'torch/include/torch/csrc/jit/operator_upgraders/utils.h' 2025-07-24T05:25:06.7068821Z adding 'torch/include/torch/csrc/jit/operator_upgraders/version_map.h' 2025-07-24T05:25:06.7074517Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-07-24T05:25:06.7077577Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-07-24T05:25:06.7080526Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-07-24T05:25:06.7083812Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-07-24T05:25:06.7086740Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-07-24T05:25:06.7089860Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-07-24T05:25:06.7092908Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-07-24T05:25:06.7095818Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-07-24T05:25:06.7098799Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-07-24T05:25:06.7101997Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-07-24T05:25:06.7105138Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-07-24T05:25:06.7108093Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-07-24T05:25:06.7111036Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-07-24T05:25:06.7114306Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-07-24T05:25:06.7117490Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-07-24T05:25:06.7120495Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-07-24T05:25:06.7123779Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-07-24T05:25:06.7126782Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-07-24T05:25:06.7129796Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-07-24T05:25:06.7132763Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-07-24T05:25:06.7135806Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-07-24T05:25:06.7138981Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-07-24T05:25:06.7142485Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-07-24T05:25:06.7145793Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-07-24T05:25:06.7149064Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-07-24T05:25:06.7152388Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-07-24T05:25:06.7155777Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-07-24T05:25:06.7158527Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-07-24T05:25:06.7161526Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-07-24T05:25:06.7164704Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-07-24T05:25:06.7167694Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-07-24T05:25:06.7170679Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-07-24T05:25:06.7173669Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-07-24T05:25:06.7176789Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-07-24T05:25:06.7179784Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-07-24T05:25:06.7183055Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-07-24T05:25:06.7186660Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-07-24T05:25:06.7189738Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-07-24T05:25:06.7192739Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-07-24T05:25:06.7195762Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-07-24T05:25:06.7198793Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-07-24T05:25:06.7201791Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-07-24T05:25:06.7205113Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-07-24T05:25:06.7208127Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-07-24T05:25:06.7211136Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-07-24T05:25:06.7214154Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-07-24T05:25:06.7217096Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-07-24T05:25:06.7220182Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-07-24T05:25:06.7223383Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-07-24T05:25:06.7226690Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-07-24T05:25:06.7230078Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-07-24T05:25:06.7233242Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-07-24T05:25:06.7236643Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-07-24T05:25:06.7240126Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-07-24T05:25:06.7243580Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-07-24T05:25:06.7246992Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-07-24T05:25:06.7250743Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-07-24T05:25:06.7254205Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-07-24T05:25:06.7258990Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-07-24T05:25:06.7262657Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-07-24T05:25:06.7266261Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-07-24T05:25:06.7269880Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-07-24T05:25:06.7274533Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-07-24T05:25:06.7278130Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-07-24T05:25:06.7281468Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-07-24T05:25:06.7284869Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-07-24T05:25:06.7288159Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-07-24T05:25:06.7291347Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-07-24T05:25:06.7308403Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-07-24T05:25:06.7309486Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-07-24T05:25:06.7310058Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-07-24T05:25:06.7310579Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-07-24T05:25:06.7311179Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-07-24T05:25:06.7311761Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-07-24T05:25:06.7314407Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-07-24T05:25:06.7317677Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-07-24T05:25:06.7320872Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-07-24T05:25:06.7324898Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-07-24T05:25:06.7328533Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-07-24T05:25:06.7332042Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-07-24T05:25:06.7335930Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-07-24T05:25:06.7339622Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-07-24T05:25:06.7343090Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-07-24T05:25:06.7346659Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-07-24T05:25:06.7349841Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-07-24T05:25:06.7352992Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-07-24T05:25:06.7356148Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-07-24T05:25:06.7360362Z adding 'torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h' 2025-07-24T05:25:06.7364487Z adding 'torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h' 2025-07-24T05:25:06.7367609Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_fold.h' 2025-07-24T05:25:06.7371572Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_map.h' 2025-07-24T05:25:06.7374829Z adding 'torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h' 2025-07-24T05:25:06.7377904Z adding 'torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h' 2025-07-24T05:25:06.7380819Z adding 'torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h' 2025-07-24T05:25:06.7383805Z adding 'torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h' 2025-07-24T05:25:06.7387547Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_extraction.h' 2025-07-24T05:25:06.7390575Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_substitution.h' 2025-07-24T05:25:06.7393957Z adding 'torch/include/torch/csrc/jit/passes/onnx/helper.h' 2025-07-24T05:25:06.7397143Z adding 'torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h' 2025-07-24T05:25:06.7400204Z adding 'torch/include/torch/csrc/jit/passes/onnx/naming.h' 2025-07-24T05:25:06.7403334Z adding 'torch/include/torch/csrc/jit/passes/onnx/onnx_log.h' 2025-07-24T05:25:06.7406292Z adding 'torch/include/torch/csrc/jit/passes/onnx/peephole.h' 2025-07-24T05:25:06.7409454Z adding 'torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h' 2025-07-24T05:25:06.7412896Z adding 'torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h' 2025-07-24T05:25:06.7416057Z adding 'torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h' 2025-07-24T05:25:06.7419130Z adding 'torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h' 2025-07-24T05:25:06.7423150Z adding 'torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h' 2025-07-24T05:25:06.7426633Z adding 'torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h' 2025-07-24T05:25:06.7430643Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h' 2025-07-24T05:25:06.7433592Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h' 2025-07-24T05:25:06.7437519Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h' 2025-07-24T05:25:06.7440732Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h' 2025-07-24T05:25:06.7444844Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-07-24T05:25:06.7448375Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-07-24T05:25:06.7451460Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-07-24T05:25:06.7456067Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-07-24T05:25:06.7459821Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-07-24T05:25:06.7463231Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-07-24T05:25:06.7474599Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-07-24T05:25:06.7479053Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-07-24T05:25:06.7482208Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-07-24T05:25:06.7486230Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-07-24T05:25:06.7490912Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-07-24T05:25:06.7494378Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-07-24T05:25:06.7497480Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-07-24T05:25:06.7501039Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-07-24T05:25:06.7505213Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-07-24T05:25:06.7508647Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-07-24T05:25:06.7513400Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-07-24T05:25:06.7531106Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-07-24T05:25:06.7536433Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-07-24T05:25:06.7539727Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-07-24T05:25:06.7543668Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-07-24T05:25:06.7547532Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-07-24T05:25:06.7551699Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-07-24T05:25:06.7556437Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-07-24T05:25:06.7562340Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-07-24T05:25:06.7566126Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-07-24T05:25:06.7569204Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-07-24T05:25:06.7572300Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-07-24T05:25:06.7575311Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-07-24T05:25:06.7578332Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-07-24T05:25:06.7587553Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-07-24T05:25:06.7592316Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-07-24T05:25:06.7596236Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-07-24T05:25:06.7599609Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-07-24T05:25:06.7603052Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-07-24T05:25:06.7606163Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-07-24T05:25:06.7609470Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-07-24T05:25:06.7613788Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-07-24T05:25:06.7617939Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-07-24T05:25:06.7622886Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-07-24T05:25:06.7627540Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-07-24T05:25:06.7632161Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-07-24T05:25:06.7635641Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-07-24T05:25:06.7638913Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-07-24T05:25:06.7642627Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-07-24T05:25:06.7648469Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-07-24T05:25:06.7652250Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-07-24T05:25:06.7655193Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-07-24T05:25:06.7659053Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-07-24T05:25:06.7664567Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-07-24T05:25:06.7675136Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-07-24T05:25:06.7680073Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-07-24T05:25:06.7683681Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-07-24T05:25:06.7686818Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-07-24T05:25:06.7689994Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-07-24T05:25:06.7693352Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-07-24T05:25:06.7696598Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-07-24T05:25:06.7700529Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-07-24T05:25:06.7703773Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-07-24T05:25:06.7707115Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-07-24T05:25:06.7710560Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-07-24T05:25:06.7716058Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h' 2025-07-24T05:25:06.7729405Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h' 2025-07-24T05:25:06.7733810Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/frame.h' 2025-07-24T05:25:06.7737302Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h' 2025-07-24T05:25:06.7742819Z adding 'torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h' 2025-07-24T05:25:06.7746361Z adding 'torch/include/torch/csrc/jit/runtime/static/fusion.h' 2025-07-24T05:25:06.7761224Z adding 'torch/include/torch/csrc/jit/runtime/static/impl.h' 2025-07-24T05:25:06.7765241Z adding 'torch/include/torch/csrc/jit/runtime/static/init.h' 2025-07-24T05:25:06.7771391Z adding 'torch/include/torch/csrc/jit/runtime/static/memory_planner.h' 2025-07-24T05:25:06.7775888Z adding 'torch/include/torch/csrc/jit/runtime/static/ops.h' 2025-07-24T05:25:06.7779975Z adding 'torch/include/torch/csrc/jit/runtime/static/passes.h' 2025-07-24T05:25:06.7784800Z adding 'torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h' 2025-07-24T05:25:06.7788497Z adding 'torch/include/torch/csrc/jit/runtime/static/static_method.h' 2025-07-24T05:25:06.7791764Z adding 'torch/include/torch/csrc/jit/runtime/static/te_wrapper.h' 2025-07-24T05:25:06.7796753Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-07-24T05:25:06.7803249Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-07-24T05:25:06.7807032Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-07-24T05:25:06.7811075Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-07-24T05:25:06.7814075Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-07-24T05:25:06.7817847Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-07-24T05:25:06.7821280Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-07-24T05:25:06.7824284Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-07-24T05:25:06.7827573Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-07-24T05:25:06.7830826Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-07-24T05:25:06.7834599Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-07-24T05:25:06.7855606Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-07-24T05:25:06.7861076Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-07-24T05:25:06.7865417Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-07-24T05:25:06.7870262Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-07-24T05:25:06.7875573Z adding 'torch/include/torch/csrc/jit/serialization/pickler_helper.h' 2025-07-24T05:25:06.7879182Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-07-24T05:25:06.7882729Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-07-24T05:25:06.7886040Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-07-24T05:25:06.7889506Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-07-24T05:25:06.7892988Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-07-24T05:25:06.7897973Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-07-24T05:25:06.7904422Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-07-24T05:25:06.7908855Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-07-24T05:25:06.7912470Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-07-24T05:25:06.7916758Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-07-24T05:25:06.7921750Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-07-24T05:25:06.7925633Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-07-24T05:25:06.7928910Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-07-24T05:25:06.7933880Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-07-24T05:25:06.7937779Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-07-24T05:25:06.7942860Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-07-24T05:25:06.7946784Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-07-24T05:25:06.7953136Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-07-24T05:25:06.7957295Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-07-24T05:25:06.7960432Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-07-24T05:25:06.7964568Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-07-24T05:25:06.7968400Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-07-24T05:25:06.7973111Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-07-24T05:25:06.7977761Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-07-24T05:25:06.7982671Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-07-24T05:25:06.7986286Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-07-24T05:25:06.7994450Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-07-24T05:25:06.7998810Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-07-24T05:25:06.8002218Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-07-24T05:25:06.8006190Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-07-24T05:25:06.8012907Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-07-24T05:25:06.8016753Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-07-24T05:25:06.8020121Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-07-24T05:25:06.8027075Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-07-24T05:25:06.8031491Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-07-24T05:25:06.8035292Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-07-24T05:25:06.8044894Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-07-24T05:25:06.8048834Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-07-24T05:25:06.8052179Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-07-24T05:25:06.8058859Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-07-24T05:25:06.8064236Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-07-24T05:25:06.8071393Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-07-24T05:25:06.8080621Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-07-24T05:25:06.8086231Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-07-24T05:25:06.8089806Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-07-24T05:25:06.8093838Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-07-24T05:25:06.8097476Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-07-24T05:25:06.8101031Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-07-24T05:25:06.8105552Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-07-24T05:25:06.8108914Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-07-24T05:25:06.8112577Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-07-24T05:25:06.8115723Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-07-24T05:25:06.8118820Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-07-24T05:25:06.8122160Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-07-24T05:25:06.8125844Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-07-24T05:25:06.8129332Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-07-24T05:25:06.8132399Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-07-24T05:25:06.8136331Z adding 'torch/include/torch/csrc/jit/testing/catch_utils.hpp' 2025-07-24T05:25:06.8139933Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-07-24T05:25:06.8143306Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-07-24T05:25:06.8148497Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-07-24T05:25:06.8152287Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-07-24T05:25:06.8156791Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-07-24T05:25:06.8160874Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-07-24T05:25:06.8166120Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-07-24T05:25:06.8169502Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-07-24T05:25:06.8172996Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-07-24T05:25:06.8177958Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-07-24T05:25:06.8182839Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-07-24T05:25:06.8186958Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-07-24T05:25:06.8192324Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-07-24T05:25:06.8196701Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-07-24T05:25:06.8200030Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-07-24T05:25:06.8203612Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-07-24T05:25:06.8207079Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-07-24T05:25:06.8214433Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-07-24T05:25:06.8220307Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-07-24T05:25:06.8224506Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-07-24T05:25:06.8228010Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-07-24T05:25:06.8231575Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-07-24T05:25:06.8236863Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-07-24T05:25:06.8243160Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-07-24T05:25:06.8247010Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-07-24T05:25:06.8251436Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-07-24T05:25:06.8254715Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-07-24T05:25:06.8258221Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-07-24T05:25:06.8261819Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-07-24T05:25:06.8265738Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-07-24T05:25:06.8270016Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-07-24T05:25:06.8273953Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-07-24T05:25:06.8277284Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-07-24T05:25:06.8315632Z adding 'torch/include/torch/csrc/lazy/generated/LazyIr.h' 2025-07-24T05:25:06.8328903Z adding 'torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h' 2025-07-24T05:25:06.8333170Z adding 'torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h' 2025-07-24T05:25:06.8337134Z adding 'torch/include/torch/csrc/lazy/python/init.h' 2025-07-24T05:25:06.8340197Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-07-24T05:25:06.8344124Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-07-24T05:25:06.8347794Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-07-24T05:25:06.8351319Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-07-24T05:25:06.8354672Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-07-24T05:25:06.8357759Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-07-24T05:25:06.8360909Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-07-24T05:25:06.8364260Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-07-24T05:25:06.8368383Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-07-24T05:25:06.8372482Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-07-24T05:25:06.8375891Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-07-24T05:25:06.8380073Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h' 2025-07-24T05:25:06.8383382Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/generic.h' 2025-07-24T05:25:06.8387443Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h' 2025-07-24T05:25:06.8393312Z adding 'torch/include/torch/csrc/monitor/counters.h' 2025-07-24T05:25:06.8397290Z adding 'torch/include/torch/csrc/monitor/events.h' 2025-07-24T05:25:06.8400349Z adding 'torch/include/torch/csrc/monitor/python_init.h' 2025-07-24T05:25:06.8404080Z adding 'torch/include/torch/csrc/mps/Module.h' 2025-07-24T05:25:06.8407758Z adding 'torch/include/torch/csrc/mtia/Module.h' 2025-07-24T05:25:06.8411707Z adding 'torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h' 2025-07-24T05:25:06.8415406Z adding 'torch/include/torch/csrc/multiprocessing/init.h' 2025-07-24T05:25:06.8419679Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-07-24T05:25:06.8422689Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-07-24T05:25:06.8425908Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-07-24T05:25:06.8430073Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-07-24T05:25:06.8438362Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-07-24T05:25:06.8442581Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-07-24T05:25:06.8447254Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-07-24T05:25:06.8451515Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-07-24T05:25:06.8454871Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-07-24T05:25:06.8458013Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-07-24T05:25:06.8461804Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-07-24T05:25:06.8465472Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-07-24T05:25:06.8469172Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-07-24T05:25:06.8473965Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-07-24T05:25:06.8479926Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-07-24T05:25:06.8483924Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-07-24T05:25:06.8487179Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-07-24T05:25:06.8491471Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-07-24T05:25:06.8494796Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-07-24T05:25:06.8498063Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-07-24T05:25:06.8502883Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-07-24T05:25:06.8505782Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-07-24T05:25:06.8508798Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-07-24T05:25:06.8512212Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-07-24T05:25:06.8516368Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-07-24T05:25:06.8520956Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-07-24T05:25:06.8524603Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-07-24T05:25:06.8529603Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-07-24T05:25:06.8533802Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-07-24T05:25:06.8538058Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-07-24T05:25:06.8541827Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-07-24T05:25:06.8555299Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-07-24T05:25:06.8563347Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-07-24T05:25:06.8568111Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-07-24T05:25:06.8573608Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-07-24T05:25:06.8578153Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-07-24T05:25:06.8582096Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-07-24T05:25:06.8586307Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-07-24T05:25:06.8589824Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-07-24T05:25:06.8593380Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-07-24T05:25:06.8597033Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-07-24T05:25:06.8604551Z adding 'torch/include/torch/csrc/stable/library.h' 2025-07-24T05:25:06.8608381Z adding 'torch/include/torch/csrc/stable/ops.h' 2025-07-24T05:25:06.8612657Z adding 'torch/include/torch/csrc/stable/tensor.h' 2025-07-24T05:25:06.8617157Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-07-24T05:25:06.8622922Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-07-24T05:25:06.8626112Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-07-24T05:25:06.8629161Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-07-24T05:25:06.8632884Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-07-24T05:25:06.8636491Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-07-24T05:25:06.8660890Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-07-24T05:25:06.8667046Z adding 'torch/include/torch/csrc/utils/init.h' 2025-07-24T05:25:06.8670351Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-07-24T05:25:06.8673469Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-07-24T05:25:06.8676725Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-07-24T05:25:06.8680198Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-07-24T05:25:06.8683445Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-07-24T05:25:06.8689392Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-07-24T05:25:06.8693009Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-07-24T05:25:06.8696466Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-07-24T05:25:06.8710889Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-07-24T05:25:06.8715739Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-07-24T05:25:06.8719302Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-07-24T05:25:06.8724022Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-07-24T05:25:06.8728125Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-07-24T05:25:06.8732759Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-07-24T05:25:06.8737572Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-07-24T05:25:06.8740956Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-07-24T05:25:06.8745604Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-07-24T05:25:06.8749328Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-07-24T05:25:06.8752704Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-07-24T05:25:06.8766463Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-07-24T05:25:06.8771663Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-07-24T05:25:06.8775232Z adding 'torch/include/torch/csrc/utils/six.h' 2025-07-24T05:25:06.8778343Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-07-24T05:25:06.8781417Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-07-24T05:25:06.8784506Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-07-24T05:25:06.8788453Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-07-24T05:25:06.8791782Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-07-24T05:25:06.8794578Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-07-24T05:25:06.8797557Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-07-24T05:25:06.8801491Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-07-24T05:25:06.8804852Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-07-24T05:25:06.8807871Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-07-24T05:25:06.8811064Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-07-24T05:25:06.8815782Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-07-24T05:25:06.8820955Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-07-24T05:25:06.8824720Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-07-24T05:25:06.8828657Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-07-24T05:25:06.8831899Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-07-24T05:25:06.8835983Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-07-24T05:25:06.8838949Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-07-24T05:25:06.8842047Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-07-24T05:25:06.8848176Z adding 'torch/include/torch/headeronly/macros/Export.h' 2025-07-24T05:25:06.8856574Z adding 'torch/include/torch/headeronly/macros/Macros.h' 2025-07-24T05:25:06.8860376Z adding 'torch/include/torch/headeronly/macros/cmake_macros.h' 2025-07-24T05:25:06.8865190Z adding 'torch/include/torch/headeronly/util/Exception.h' 2025-07-24T05:25:06.8872372Z adding 'torch/jit/__init__.py' 2025-07-24T05:25:06.8876584Z adding 'torch/jit/_async.py' 2025-07-24T05:25:06.8879802Z adding 'torch/jit/_await.py' 2025-07-24T05:25:06.8884867Z adding 'torch/jit/_builtins.py' 2025-07-24T05:25:06.8891246Z adding 'torch/jit/_check.py' 2025-07-24T05:25:06.8896307Z adding 'torch/jit/_dataclass_impls.py' 2025-07-24T05:25:06.8899599Z adding 'torch/jit/_decomposition_utils.py' 2025-07-24T05:25:06.8903678Z adding 'torch/jit/_decompositions.py' 2025-07-24T05:25:06.8909366Z adding 'torch/jit/_freeze.py' 2025-07-24T05:25:06.8914415Z adding 'torch/jit/_fuser.py' 2025-07-24T05:25:06.8917800Z adding 'torch/jit/_ir_utils.py' 2025-07-24T05:25:06.8920698Z adding 'torch/jit/_logging.py' 2025-07-24T05:25:06.8925608Z adding 'torch/jit/_monkeytype_config.py' 2025-07-24T05:25:06.8929100Z adding 'torch/jit/_pickle.py' 2025-07-24T05:25:06.8946259Z adding 'torch/jit/_recursive.py' 2025-07-24T05:25:06.8973413Z adding 'torch/jit/_script.py' 2025-07-24T05:25:06.8980153Z adding 'torch/jit/_script.pyi' 2025-07-24T05:25:06.8985912Z adding 'torch/jit/_serialization.py' 2025-07-24T05:25:06.9002546Z adding 'torch/jit/_shape_functions.py' 2025-07-24T05:25:06.9007628Z adding 'torch/jit/_state.py' 2025-07-24T05:25:06.9029076Z adding 'torch/jit/_trace.py' 2025-07-24T05:25:06.9039018Z adding 'torch/jit/annotations.py' 2025-07-24T05:25:06.9056512Z adding 'torch/jit/frontend.py' 2025-07-24T05:25:06.9061073Z adding 'torch/jit/generate_bytecode.py' 2025-07-24T05:25:06.9064570Z adding 'torch/jit/quantized.py' 2025-07-24T05:25:06.9070355Z adding 'torch/jit/supported_ops.py' 2025-07-24T05:25:06.9074445Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-07-24T05:25:06.9078657Z adding 'torch/jit/_passes/__init__.py' 2025-07-24T05:25:06.9082072Z adding 'torch/jit/_passes/_property_propagation.py' 2025-07-24T05:25:06.9087642Z adding 'torch/jit/mobile/__init__.py' 2025-07-24T05:25:07.4791775Z adding 'torch/lib/XNNPACK.lib' 2025-07-24T05:25:07.5135053Z adding 'torch/lib/_C.lib' 2025-07-24T05:25:07.5253751Z adding 'torch/lib/aoti_custom_ops.dll' 2025-07-24T05:25:07.5268903Z adding 'torch/lib/aoti_custom_ops.lib' 2025-07-24T05:25:07.5506118Z adding 'torch/lib/asmjit.dll' 2025-07-24T05:25:07.5543126Z adding 'torch/lib/asmjit.lib' 2025-07-24T05:25:07.5659812Z adding 'torch/lib/backend_with_compiler.dll' 2025-07-24T05:25:07.5674419Z adding 'torch/lib/backend_with_compiler.lib' 2025-07-24T05:25:07.6177243Z adding 'torch/lib/c10.dll' 2025-07-24T05:25:07.6372945Z adding 'torch/lib/c10.lib' 2025-07-24T05:25:07.6628239Z adding 'torch/lib/c10_cuda.dll' 2025-07-24T05:25:07.6650578Z adding 'torch/lib/c10_cuda.lib' 2025-07-24T05:25:07.6662191Z adding 'torch/lib/caffe2_nvrtc.dll' 2025-07-24T05:25:07.6666580Z adding 'torch/lib/caffe2_nvrtc.lib' 2025-07-24T05:25:07.6900537Z adding 'torch/lib/cpuinfo.lib' 2025-07-24T05:26:28.5097026Z adding 'torch/lib/dnnl.lib' 2025-07-24T05:26:34.3619089Z adding 'torch/lib/fbgemm.dll' 2025-07-24T05:26:34.3951572Z adding 'torch/lib/fbgemm.lib' 2025-07-24T05:26:34.5404557Z adding 'torch/lib/fmt.lib' 2025-07-24T05:26:34.5581279Z adding 'torch/lib/jitbackend_test.dll' 2025-07-24T05:26:34.5594629Z adding 'torch/lib/jitbackend_test.lib' 2025-07-24T05:26:38.2690494Z adding 'torch/lib/kineto.lib' 2025-07-24T05:26:38.5300938Z adding 'torch/lib/libittnotify.lib' 2025-07-24T05:26:39.3165232Z adding 'torch/lib/libprotobuf-lite.lib' 2025-07-24T05:26:43.4278259Z adding 'torch/lib/libprotobuf.lib' 2025-07-24T05:26:49.1930427Z adding 'torch/lib/libprotoc.lib' 2025-07-24T05:26:50.1829758Z adding 'torch/lib/microkernels-prod.lib' 2025-07-24T05:26:50.2660070Z adding 'torch/lib/pthreadpool.lib' 2025-07-24T05:26:50.2689587Z adding 'torch/lib/shm.dll' 2025-07-24T05:26:50.2694410Z adding 'torch/lib/shm.lib' 2025-07-24T05:26:51.6229583Z adding 'torch/lib/sleef.lib' 2025-07-24T05:26:51.6888630Z adding 'torch/lib/torch.dll' 2025-07-24T05:26:51.6892763Z adding 'torch/lib/torch.lib' 2025-07-24T05:27:03.1139475Z adding 'torch/lib/torch_cpu.dll' 2025-07-24T05:27:04.2379518Z adding 'torch/lib/torch_cpu.lib' 2025-07-24T05:27:19.4971200Z adding 'torch/lib/torch_cuda.dll' 2025-07-24T05:27:20.1191477Z adding 'torch/lib/torch_cuda.lib' 2025-07-24T05:27:20.1241630Z adding 'torch/lib/torch_global_deps.dll' 2025-07-24T05:27:20.8932462Z adding 'torch/lib/torch_python.dll' 2025-07-24T05:27:20.9391909Z adding 'torch/lib/torch_python.lib' 2025-07-24T05:27:20.9637370Z adding 'torch/lib/torchbind_test.dll' 2025-07-24T05:27:20.9663972Z adding 'torch/lib/torchbind_test.lib' 2025-07-24T05:27:20.9669650Z adding 'torch/lib/libshm/alloc_info.h' 2025-07-24T05:27:20.9673159Z adding 'torch/lib/libshm/err.h' 2025-07-24T05:27:20.9676763Z adding 'torch/lib/libshm/libshm.h' 2025-07-24T05:27:20.9681338Z adding 'torch/lib/libshm/socket.h' 2025-07-24T05:27:20.9685407Z adding 'torch/lib/libshm_windows/libshm.h' 2025-07-24T05:27:20.9724599Z adding 'torch/linalg/__init__.py' 2025-07-24T05:27:20.9732276Z adding 'torch/masked/__init__.py' 2025-07-24T05:27:20.9740837Z adding 'torch/masked/_docs.py' 2025-07-24T05:27:20.9765593Z adding 'torch/masked/_ops.py' 2025-07-24T05:27:20.9771574Z adding 'torch/masked/maskedtensor/__init__.py' 2025-07-24T05:27:20.9778280Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-07-24T05:27:20.9783377Z adding 'torch/masked/maskedtensor/binary.py' 2025-07-24T05:27:20.9790095Z adding 'torch/masked/maskedtensor/core.py' 2025-07-24T05:27:20.9793717Z adding 'torch/masked/maskedtensor/creation.py' 2025-07-24T05:27:20.9797201Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-07-24T05:27:20.9801861Z adding 'torch/masked/maskedtensor/reductions.py' 2025-07-24T05:27:20.9806119Z adding 'torch/masked/maskedtensor/unary.py' 2025-07-24T05:27:20.9810578Z adding 'torch/monitor/__init__.py' 2025-07-24T05:27:20.9816021Z adding 'torch/mps/__init__.py' 2025-07-24T05:27:20.9819967Z adding 'torch/mps/event.py' 2025-07-24T05:27:20.9823837Z adding 'torch/mps/profiler.py' 2025-07-24T05:27:20.9831328Z adding 'torch/mtia/__init__.py' 2025-07-24T05:27:20.9835146Z adding 'torch/mtia/_utils.py' 2025-07-24T05:27:20.9838460Z adding 'torch/mtia/memory.py' 2025-07-24T05:27:20.9843445Z adding 'torch/multiprocessing/__init__.py' 2025-07-24T05:27:20.9847055Z adding 'torch/multiprocessing/_atfork.py' 2025-07-24T05:27:20.9850534Z adding 'torch/multiprocessing/pool.py' 2025-07-24T05:27:20.9853851Z adding 'torch/multiprocessing/queue.py' 2025-07-24T05:27:20.9863147Z adding 'torch/multiprocessing/reductions.py' 2025-07-24T05:27:20.9870547Z adding 'torch/multiprocessing/spawn.py' 2025-07-24T05:27:20.9880670Z adding 'torch/nested/__init__.py' 2025-07-24T05:27:20.9885280Z adding 'torch/nested/_internal/__init__.py' 2025-07-24T05:27:20.9889151Z adding 'torch/nested/_internal/nested_int.py' 2025-07-24T05:27:20.9899138Z adding 'torch/nested/_internal/nested_tensor.py' 2025-07-24T05:27:20.9930148Z adding 'torch/nested/_internal/ops.py' 2025-07-24T05:27:20.9944754Z adding 'torch/nested/_internal/sdpa.py' 2025-07-24T05:27:20.9950442Z adding 'torch/nn/__init__.py' 2025-07-24T05:27:20.9954032Z adding 'torch/nn/_reduction.py' 2025-07-24T05:27:20.9957622Z adding 'torch/nn/common_types.py' 2025-07-24T05:27:20.9961509Z adding 'torch/nn/cpp.py' 2025-07-24T05:27:21.0034650Z adding 'torch/nn/functional.py' 2025-07-24T05:27:21.0047644Z adding 'torch/nn/functional.pyi' 2025-07-24T05:27:21.0052384Z adding 'torch/nn/grad.py' 2025-07-24T05:27:21.0061471Z adding 'torch/nn/init.py' 2025-07-24T05:27:21.0067711Z adding 'torch/nn/parameter.py' 2025-07-24T05:27:21.0071151Z adding 'torch/nn/parameter.pyi' 2025-07-24T05:27:21.0076534Z adding 'torch/nn/attention/__init__.py' 2025-07-24T05:27:21.0080266Z adding 'torch/nn/attention/_utils.py' 2025-07-24T05:27:21.0086379Z adding 'torch/nn/attention/bias.py' 2025-07-24T05:27:21.0111552Z adding 'torch/nn/attention/flex_attention.py' 2025-07-24T05:27:21.0117190Z adding 'torch/nn/attention/experimental/__init__.py' 2025-07-24T05:27:21.0123122Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-07-24T05:27:21.0127137Z adding 'torch/nn/backends/__init__.py' 2025-07-24T05:27:21.0130233Z adding 'torch/nn/backends/thnn.py' 2025-07-24T05:27:21.0134205Z adding 'torch/nn/intrinsic/__init__.py' 2025-07-24T05:27:21.0138415Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-07-24T05:27:21.0141570Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-07-24T05:27:21.0145302Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-07-24T05:27:21.0149737Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-07-24T05:27:21.0153023Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-07-24T05:27:21.0156291Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-07-24T05:27:21.0159412Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-07-24T05:27:21.0163453Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-07-24T05:27:21.0167430Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-07-24T05:27:21.0171343Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-07-24T05:27:21.0174525Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-07-24T05:27:21.0178396Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-07-24T05:27:21.0181574Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-07-24T05:27:21.0184506Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-07-24T05:27:21.0187547Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-07-24T05:27:21.0193223Z adding 'torch/nn/modules/__init__.py' 2025-07-24T05:27:21.0199440Z adding 'torch/nn/modules/_functions.py' 2025-07-24T05:27:21.0217721Z adding 'torch/nn/modules/activation.py' 2025-07-24T05:27:21.0225740Z adding 'torch/nn/modules/adaptive.py' 2025-07-24T05:27:21.0237429Z adding 'torch/nn/modules/batchnorm.py' 2025-07-24T05:27:21.0242384Z adding 'torch/nn/modules/channelshuffle.py' 2025-07-24T05:27:21.0256116Z adding 'torch/nn/modules/container.py' 2025-07-24T05:27:21.0274782Z adding 'torch/nn/modules/conv.py' 2025-07-24T05:27:21.0280606Z adding 'torch/nn/modules/distance.py' 2025-07-24T05:27:21.0285667Z adding 'torch/nn/modules/dropout.py' 2025-07-24T05:27:21.0290569Z adding 'torch/nn/modules/flatten.py' 2025-07-24T05:27:21.0296348Z adding 'torch/nn/modules/fold.py' 2025-07-24T05:27:21.0302965Z adding 'torch/nn/modules/instancenorm.py' 2025-07-24T05:27:21.0309531Z adding 'torch/nn/modules/lazy.py' 2025-07-24T05:27:21.0315398Z adding 'torch/nn/modules/linear.py' 2025-07-24T05:27:21.0342335Z adding 'torch/nn/modules/loss.py' 2025-07-24T05:27:21.0386497Z adding 'torch/nn/modules/module.py' 2025-07-24T05:27:21.0395520Z adding 'torch/nn/modules/normalization.py' 2025-07-24T05:27:21.0402320Z adding 'torch/nn/modules/padding.py' 2025-07-24T05:27:21.0406892Z adding 'torch/nn/modules/pixelshuffle.py' 2025-07-24T05:27:21.0420070Z adding 'torch/nn/modules/pooling.py' 2025-07-24T05:27:21.0440534Z adding 'torch/nn/modules/rnn.py' 2025-07-24T05:27:21.0450342Z adding 'torch/nn/modules/sparse.py' 2025-07-24T05:27:21.0465405Z adding 'torch/nn/modules/transformer.py' 2025-07-24T05:27:21.0472229Z adding 'torch/nn/modules/upsampling.py' 2025-07-24T05:27:21.0476356Z adding 'torch/nn/modules/utils.py' 2025-07-24T05:27:21.0480584Z adding 'torch/nn/parallel/__init__.py' 2025-07-24T05:27:21.0484808Z adding 'torch/nn/parallel/_functions.py' 2025-07-24T05:27:21.0490677Z adding 'torch/nn/parallel/comm.py' 2025-07-24T05:27:21.0497068Z adding 'torch/nn/parallel/data_parallel.py' 2025-07-24T05:27:21.0541742Z adding 'torch/nn/parallel/distributed.py' 2025-07-24T05:27:21.0548609Z adding 'torch/nn/parallel/parallel_apply.py' 2025-07-24T05:27:21.0553443Z adding 'torch/nn/parallel/replicate.py' 2025-07-24T05:27:21.0557996Z adding 'torch/nn/parallel/scatter_gather.py' 2025-07-24T05:27:21.0562007Z adding 'torch/nn/qat/__init__.py' 2025-07-24T05:27:21.0565753Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-07-24T05:27:21.0569598Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-07-24T05:27:21.0572851Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-07-24T05:27:21.0576661Z adding 'torch/nn/qat/modules/__init__.py' 2025-07-24T05:27:21.0579693Z adding 'torch/nn/qat/modules/conv.py' 2025-07-24T05:27:21.0582779Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-07-24T05:27:21.0585792Z adding 'torch/nn/qat/modules/linear.py' 2025-07-24T05:27:21.0589361Z adding 'torch/nn/quantizable/__init__.py' 2025-07-24T05:27:21.0593137Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-07-24T05:27:21.0596184Z adding 'torch/nn/quantizable/modules/activation.py' 2025-07-24T05:27:21.0599177Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-07-24T05:27:21.0603062Z adding 'torch/nn/quantized/__init__.py' 2025-07-24T05:27:21.0606095Z adding 'torch/nn/quantized/functional.py' 2025-07-24T05:27:21.0609848Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-07-24T05:27:21.0613878Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-07-24T05:27:21.0617173Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-07-24T05:27:21.0620342Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-07-24T05:27:21.0623498Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-07-24T05:27:21.0626617Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-07-24T05:27:21.0629779Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-07-24T05:27:21.0633427Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-07-24T05:27:21.0637533Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-07-24T05:27:21.0641609Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-07-24T05:27:21.0644669Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-07-24T05:27:21.0647979Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-07-24T05:27:21.0652394Z adding 'torch/nn/quantized/modules/__init__.py' 2025-07-24T05:27:21.0655622Z adding 'torch/nn/quantized/modules/activation.py' 2025-07-24T05:27:21.0658676Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-07-24T05:27:21.0661807Z adding 'torch/nn/quantized/modules/conv.py' 2025-07-24T05:27:21.0665050Z adding 'torch/nn/quantized/modules/dropout.py' 2025-07-24T05:27:21.0668629Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-07-24T05:27:21.0671760Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-07-24T05:27:21.0674901Z adding 'torch/nn/quantized/modules/linear.py' 2025-07-24T05:27:21.0678027Z adding 'torch/nn/quantized/modules/normalization.py' 2025-07-24T05:27:21.0681167Z adding 'torch/nn/quantized/modules/rnn.py' 2025-07-24T05:27:21.0684221Z adding 'torch/nn/quantized/modules/utils.py' 2025-07-24T05:27:21.0688627Z adding 'torch/nn/utils/__init__.py' 2025-07-24T05:27:21.0692160Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-07-24T05:27:21.0697969Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-07-24T05:27:21.0702796Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-07-24T05:27:21.0708518Z adding 'torch/nn/utils/clip_grad.py' 2025-07-24T05:27:21.0712657Z adding 'torch/nn/utils/convert_parameters.py' 2025-07-24T05:27:21.0717072Z adding 'torch/nn/utils/fusion.py' 2025-07-24T05:27:21.0720912Z adding 'torch/nn/utils/init.py' 2025-07-24T05:27:21.0725406Z adding 'torch/nn/utils/memory_format.py' 2025-07-24T05:27:21.0736467Z adding 'torch/nn/utils/parametrizations.py' 2025-07-24T05:27:21.0751662Z adding 'torch/nn/utils/parametrize.py' 2025-07-24T05:27:21.0772553Z adding 'torch/nn/utils/prune.py' 2025-07-24T05:27:21.0784042Z adding 'torch/nn/utils/rnn.py' 2025-07-24T05:27:21.0792515Z adding 'torch/nn/utils/spectral_norm.py' 2025-07-24T05:27:21.0799446Z adding 'torch/nn/utils/stateless.py' 2025-07-24T05:27:21.0804865Z adding 'torch/nn/utils/weight_norm.py' 2025-07-24T05:27:21.0809904Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-07-24T05:27:21.0814144Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-07-24T05:27:21.0820188Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-07-24T05:27:21.0825937Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-07-24T05:27:21.0830765Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-07-24T05:27:21.0836009Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-07-24T05:27:21.0844015Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-07-24T05:27:21.0855729Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-07-24T05:27:21.0859570Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-07-24T05:27:21.0863264Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-07-24T05:27:21.0872847Z adding 'torch/onnx/__init__.py' 2025-07-24T05:27:21.0876489Z adding 'torch/onnx/_constants.py' 2025-07-24T05:27:21.0879718Z adding 'torch/onnx/_experimental.py' 2025-07-24T05:27:21.0883175Z adding 'torch/onnx/_flags.py' 2025-07-24T05:27:21.0886855Z adding 'torch/onnx/_globals.py' 2025-07-24T05:27:21.0890769Z adding 'torch/onnx/_onnx_supported_ops.py' 2025-07-24T05:27:21.0896943Z adding 'torch/onnx/_type_utils.py' 2025-07-24T05:27:21.0901257Z adding 'torch/onnx/errors.py' 2025-07-24T05:27:21.0904639Z adding 'torch/onnx/operators.py' 2025-07-24T05:27:21.0933566Z adding 'torch/onnx/symbolic_helper.py' 2025-07-24T05:27:21.0946310Z adding 'torch/onnx/symbolic_opset10.py' 2025-07-24T05:27:21.0965486Z adding 'torch/onnx/symbolic_opset11.py' 2025-07-24T05:27:21.0973644Z adding 'torch/onnx/symbolic_opset12.py' 2025-07-24T05:27:21.0987137Z adding 'torch/onnx/symbolic_opset13.py' 2025-07-24T05:27:21.0993648Z adding 'torch/onnx/symbolic_opset14.py' 2025-07-24T05:27:21.0997800Z adding 'torch/onnx/symbolic_opset15.py' 2025-07-24T05:27:21.1002628Z adding 'torch/onnx/symbolic_opset16.py' 2025-07-24T05:27:21.1008254Z adding 'torch/onnx/symbolic_opset17.py' 2025-07-24T05:27:21.1013195Z adding 'torch/onnx/symbolic_opset18.py' 2025-07-24T05:27:21.1016813Z adding 'torch/onnx/symbolic_opset19.py' 2025-07-24T05:27:21.1020538Z adding 'torch/onnx/symbolic_opset20.py' 2025-07-24T05:27:21.1023979Z adding 'torch/onnx/symbolic_opset7.py' 2025-07-24T05:27:21.1030434Z adding 'torch/onnx/symbolic_opset8.py' 2025-07-24T05:27:21.1103990Z adding 'torch/onnx/symbolic_opset9.py' 2025-07-24T05:27:21.1140214Z adding 'torch/onnx/utils.py' 2025-07-24T05:27:21.1168436Z adding 'torch/onnx/verification.py' 2025-07-24T05:27:21.1174278Z adding 'torch/onnx/_internal/__init__.py' 2025-07-24T05:27:21.1178909Z adding 'torch/onnx/_internal/_exporter_legacy.py' 2025-07-24T05:27:21.1182595Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-07-24T05:27:21.1189283Z adding 'torch/onnx/_internal/jit_utils.py' 2025-07-24T05:27:21.1195042Z adding 'torch/onnx/_internal/onnx_proto_utils.py' 2025-07-24T05:27:21.1201299Z adding 'torch/onnx/_internal/registration.py' 2025-07-24T05:27:21.1205824Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-07-24T05:27:21.1211796Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-07-24T05:27:21.1223838Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-07-24T05:27:21.1229849Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-07-24T05:27:21.1235477Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-07-24T05:27:21.1238853Z adding 'torch/onnx/_internal/exporter/_constants.py' 2025-07-24T05:27:21.1264512Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-07-24T05:27:21.1270083Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-07-24T05:27:21.1276637Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-07-24T05:27:21.1283603Z adding 'torch/onnx/_internal/exporter/_dynamic_shapes.py' 2025-07-24T05:27:21.1292552Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-07-24T05:27:21.1293114Z adding 'torch/onnx/_internal/exporter/_flags.py' 2025-07-24T05:27:21.1293959Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-07-24T05:27:21.1298353Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-07-24T05:27:21.1302070Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-07-24T05:27:21.1309611Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-07-24T05:27:21.1316318Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-07-24T05:27:21.1321294Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-07-24T05:27:21.1330271Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-07-24T05:27:21.1334239Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-07-24T05:27:21.1338122Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-07-24T05:27:21.1341509Z adding 'torch/onnx/_internal/exporter/_type_casting.py' 2025-07-24T05:27:21.1347786Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-07-24T05:27:21.1352008Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-07-24T05:27:21.1355492Z adding 'torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py' 2025-07-24T05:27:21.1359243Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-07-24T05:27:21.1363198Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-07-24T05:27:21.1366546Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/core.py' 2025-07-24T05:27:21.1371312Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-07-24T05:27:21.1376969Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/nn.py' 2025-07-24T05:27:21.1381549Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py' 2025-07-24T05:27:21.1385183Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symops.py' 2025-07-24T05:27:21.1389054Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-07-24T05:27:21.1394685Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-07-24T05:27:21.1399590Z adding 'torch/onnx/_internal/fx/patcher.py' 2025-07-24T05:27:21.1406478Z adding 'torch/onnx/_internal/fx/serialization.py' 2025-07-24T05:27:21.1411257Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-07-24T05:27:21.1415396Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-07-24T05:27:21.1419624Z adding 'torch/onnx/_internal/fx/passes/_utils.py' 2025-07-24T05:27:21.1436716Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-07-24T05:27:21.1447649Z adding 'torch/onnx/ops/__init__.py' 2025-07-24T05:27:21.1451634Z adding 'torch/onnx/ops/_dtype_mappings.py' 2025-07-24T05:27:21.1458212Z adding 'torch/onnx/ops/_impl.py' 2025-07-24T05:27:21.1463911Z adding 'torch/onnx/ops/_symbolic_impl.py' 2025-07-24T05:27:21.1468878Z adding 'torch/optim/__init__.py' 2025-07-24T05:27:21.1479025Z adding 'torch/optim/_adafactor.py' 2025-07-24T05:27:21.1483960Z adding 'torch/optim/_functional.py' 2025-07-24T05:27:21.1491104Z adding 'torch/optim/adadelta.py' 2025-07-24T05:27:21.1499905Z adding 'torch/optim/adagrad.py' 2025-07-24T05:27:21.1513608Z adding 'torch/optim/adam.py' 2025-07-24T05:27:21.1521882Z adding 'torch/optim/adamax.py' 2025-07-24T05:27:21.1527430Z adding 'torch/optim/adamw.py' 2025-07-24T05:27:21.1534814Z adding 'torch/optim/asgd.py' 2025-07-24T05:27:21.1543202Z adding 'torch/optim/lbfgs.py' 2025-07-24T05:27:21.1569190Z adding 'torch/optim/lr_scheduler.py' 2025-07-24T05:27:21.1580546Z adding 'torch/optim/nadam.py' 2025-07-24T05:27:21.1599837Z adding 'torch/optim/optimizer.py' 2025-07-24T05:27:21.1610145Z adding 'torch/optim/radam.py' 2025-07-24T05:27:21.1618727Z adding 'torch/optim/rmsprop.py' 2025-07-24T05:27:21.1626629Z adding 'torch/optim/rprop.py' 2025-07-24T05:27:21.1635044Z adding 'torch/optim/sgd.py' 2025-07-24T05:27:21.1640985Z adding 'torch/optim/sparse_adam.py' 2025-07-24T05:27:21.1649516Z adding 'torch/optim/swa_utils.py' 2025-07-24T05:27:21.1654165Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-07-24T05:27:21.1657411Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-07-24T05:27:21.1661500Z adding 'torch/package/__init__.py' 2025-07-24T05:27:21.1665959Z adding 'torch/package/_digraph.py' 2025-07-24T05:27:21.1669828Z adding 'torch/package/_directory_reader.py' 2025-07-24T05:27:21.1673693Z adding 'torch/package/_importlib.py' 2025-07-24T05:27:21.1677600Z adding 'torch/package/_mangling.py' 2025-07-24T05:27:21.1681330Z adding 'torch/package/_mock.py' 2025-07-24T05:27:21.1685692Z adding 'torch/package/_package_pickler.py' 2025-07-24T05:27:21.1689382Z adding 'torch/package/_package_unpickler.py' 2025-07-24T05:27:21.1693587Z adding 'torch/package/_stdlib.py' 2025-07-24T05:27:21.1698158Z adding 'torch/package/file_structure_representation.py' 2025-07-24T05:27:21.1702206Z adding 'torch/package/find_file_dependencies.py' 2025-07-24T05:27:21.1706563Z adding 'torch/package/glob_group.py' 2025-07-24T05:27:21.1712087Z adding 'torch/package/importer.py' 2025-07-24T05:27:21.1731149Z adding 'torch/package/package_exporter.py' 2025-07-24T05:27:21.1745897Z adding 'torch/package/package_importer.py' 2025-07-24T05:27:21.1750476Z adding 'torch/package/analyze/__init__.py' 2025-07-24T05:27:21.1753775Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-07-24T05:27:21.1756729Z adding 'torch/package/analyze/is_from_package.py' 2025-07-24T05:27:21.1760280Z adding 'torch/package/analyze/trace_dependencies.py' 2025-07-24T05:27:21.1764848Z adding 'torch/profiler/__init__.py' 2025-07-24T05:27:21.1783478Z adding 'torch/profiler/_memory_profiler.py' 2025-07-24T05:27:21.1793639Z adding 'torch/profiler/_pattern_matcher.py' 2025-07-24T05:27:21.1800904Z adding 'torch/profiler/_utils.py' 2025-07-24T05:27:21.1804782Z adding 'torch/profiler/itt.py' 2025-07-24T05:27:21.1821459Z adding 'torch/profiler/profiler.py' 2025-07-24T05:27:21.1825793Z adding 'torch/profiler/python_tracer.py' 2025-07-24T05:27:21.1830380Z adding 'torch/quantization/__init__.py' 2025-07-24T05:27:21.1833695Z adding 'torch/quantization/_numeric_suite.py' 2025-07-24T05:27:21.1836840Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-07-24T05:27:21.1840855Z adding 'torch/quantization/_quantized_conversions.py' 2025-07-24T05:27:21.1844097Z adding 'torch/quantization/fake_quantize.py' 2025-07-24T05:27:21.1847304Z adding 'torch/quantization/fuse_modules.py' 2025-07-24T05:27:21.1850364Z adding 'torch/quantization/fuser_method_mappings.py' 2025-07-24T05:27:21.1853442Z adding 'torch/quantization/observer.py' 2025-07-24T05:27:21.1856493Z adding 'torch/quantization/qconfig.py' 2025-07-24T05:27:21.1859492Z adding 'torch/quantization/quant_type.py' 2025-07-24T05:27:21.1862641Z adding 'torch/quantization/quantization_mappings.py' 2025-07-24T05:27:21.1865696Z adding 'torch/quantization/quantize.py' 2025-07-24T05:27:21.1868754Z adding 'torch/quantization/quantize_fx.py' 2025-07-24T05:27:21.1871951Z adding 'torch/quantization/quantize_jit.py' 2025-07-24T05:27:21.1874895Z adding 'torch/quantization/stubs.py' 2025-07-24T05:27:21.1877948Z adding 'torch/quantization/utils.py' 2025-07-24T05:27:21.1881933Z adding 'torch/quantization/fx/__init__.py' 2025-07-24T05:27:21.1885154Z adding 'torch/quantization/fx/_equalize.py' 2025-07-24T05:27:21.1888385Z adding 'torch/quantization/fx/convert.py' 2025-07-24T05:27:21.1891423Z adding 'torch/quantization/fx/fuse.py' 2025-07-24T05:27:21.1894436Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-07-24T05:27:21.1897415Z adding 'torch/quantization/fx/graph_module.py' 2025-07-24T05:27:21.1900384Z adding 'torch/quantization/fx/match_utils.py' 2025-07-24T05:27:21.1903541Z adding 'torch/quantization/fx/pattern_utils.py' 2025-07-24T05:27:21.1906501Z adding 'torch/quantization/fx/prepare.py' 2025-07-24T05:27:21.1909710Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-07-24T05:27:21.1912728Z adding 'torch/quantization/fx/quantization_types.py' 2025-07-24T05:27:21.1915672Z adding 'torch/quantization/fx/utils.py' 2025-07-24T05:27:21.1920648Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-07-24T05:27:21.1925706Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-07-24T05:27:21.1929464Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-07-24T05:27:21.1933958Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-07-24T05:27:21.1947864Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-07-24T05:27:21.1952720Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-07-24T05:27:21.1956453Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-07-24T05:27:21.1960723Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-07-24T05:27:21.1964904Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-07-24T05:27:21.1968926Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-07-24T05:27:21.1973383Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-07-24T05:27:21.2005800Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-07-24T05:27:21.2015024Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake' 2025-07-24T05:27:21.2018944Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-07-24T05:27:21.2024028Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-07-24T05:27:21.2028138Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-07-24T05:27:21.2034260Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-07-24T05:27:21.2040205Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-07-24T05:27:21.2046943Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-07-24T05:27:21.2053862Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-07-24T05:27:21.2057922Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-07-24T05:27:21.2061775Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-07-24T05:27:21.2065166Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-07-24T05:27:21.2068282Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-07-24T05:27:21.2072000Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-07-24T05:27:21.2080732Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-07-24T05:27:21.2084710Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-07-24T05:27:21.2089915Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-07-24T05:27:21.2093196Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-07-24T05:27:21.2096758Z adding 'torch/signal/__init__.py' 2025-07-24T05:27:21.2100408Z adding 'torch/signal/windows/__init__.py' 2025-07-24T05:27:21.2107497Z adding 'torch/signal/windows/windows.py' 2025-07-24T05:27:21.2118788Z adding 'torch/sparse/__init__.py' 2025-07-24T05:27:21.2126107Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-07-24T05:27:21.2130932Z adding 'torch/sparse/_semi_structured_ops.py' 2025-07-24T05:27:21.2157450Z adding 'torch/sparse/_triton_ops.py' 2025-07-24T05:27:21.2288665Z adding 'torch/sparse/_triton_ops_meta.py' 2025-07-24T05:27:21.2310792Z adding 'torch/sparse/semi_structured.py' 2025-07-24T05:27:21.2321747Z adding 'torch/special/__init__.py' 2025-07-24T05:27:21.2499911Z adding 'torch/test/CppSignature_test.exe' 2025-07-24T05:27:21.2782556Z adding 'torch/test/Dict_test.exe' 2025-07-24T05:27:21.2988317Z adding 'torch/test/Dimname_test.exe' 2025-07-24T05:27:21.3234783Z adding 'torch/test/IListRef_test.exe' 2025-07-24T05:27:21.3489521Z adding 'torch/test/KernelFunction_test.exe' 2025-07-24T05:27:21.3860923Z adding 'torch/test/List_test.exe' 2025-07-24T05:27:21.4133629Z adding 'torch/test/MaybeOwned_test.exe' 2025-07-24T05:27:21.4382483Z adding 'torch/test/NamedTensor_test.exe' 2025-07-24T05:27:21.4601714Z adding 'torch/test/StorageUtils_test.exe' 2025-07-24T05:27:21.4835610Z adding 'torch/test/apply_utils_test.exe' 2025-07-24T05:27:21.5079837Z adding 'torch/test/atest.exe' 2025-07-24T05:27:21.5310340Z adding 'torch/test/backend_fallback_test.exe' 2025-07-24T05:27:21.5573880Z adding 'torch/test/basic.exe' 2025-07-24T05:27:21.5804182Z adding 'torch/test/broadcast_test.exe' 2025-07-24T05:27:21.5984412Z adding 'torch/test/c10_ArrayRef_test.exe' 2025-07-24T05:27:21.6171099Z adding 'torch/test/c10_Bitset_test.exe' 2025-07-24T05:27:21.6342984Z adding 'torch/test/c10_CompileTimeFunctionPointer_test.exe' 2025-07-24T05:27:21.6509298Z adding 'torch/test/c10_ConstexprCrc_test.exe' 2025-07-24T05:27:21.6680370Z adding 'torch/test/c10_DeadlockDetection_test.exe' 2025-07-24T05:27:21.6866384Z adding 'torch/test/c10_DeviceGuard_test.exe' 2025-07-24T05:27:21.7054201Z adding 'torch/test/c10_Device_test.exe' 2025-07-24T05:27:21.7269067Z adding 'torch/test/c10_DispatchKeySet_test.exe' 2025-07-24T05:27:21.7471370Z adding 'torch/test/c10_Enumerate_test.exe' 2025-07-24T05:27:21.7652569Z adding 'torch/test/c10_Half_test.exe' 2025-07-24T05:27:21.7851223Z adding 'torch/test/c10_InlineDeviceGuard_test.exe' 2025-07-24T05:27:21.8052188Z adding 'torch/test/c10_InlineStreamGuard_test.exe' 2025-07-24T05:27:21.8239947Z adding 'torch/test/c10_IntrusiveList_test.exe' 2025-07-24T05:27:21.8443633Z adding 'torch/test/c10_LeftRight_test.exe' 2025-07-24T05:27:21.8635496Z adding 'torch/test/c10_Metaprogramming_test.exe' 2025-07-24T05:27:21.8827491Z adding 'torch/test/c10_NetworkFlow_test.exe' 2025-07-24T05:27:21.9014870Z adding 'torch/test/c10_Scalar_test.exe' 2025-07-24T05:27:21.9196037Z adding 'torch/test/c10_Semaphore_test.exe' 2025-07-24T05:27:21.9390533Z adding 'torch/test/c10_SizesAndStrides_test.exe' 2025-07-24T05:27:21.9556004Z adding 'torch/test/c10_StreamGuard_test.exe' 2025-07-24T05:27:21.9734400Z adding 'torch/test/c10_SymInt_test.exe' 2025-07-24T05:27:21.9913216Z adding 'torch/test/c10_Synchronized_test.exe' 2025-07-24T05:27:22.0112448Z adding 'torch/test/c10_ThreadLocal_test.exe' 2025-07-24T05:27:22.0294439Z adding 'torch/test/c10_TypeIndex_test.exe' 2025-07-24T05:27:22.0469120Z adding 'torch/test/c10_TypeList_test.exe' 2025-07-24T05:27:22.0634216Z adding 'torch/test/c10_TypeTraits_test.exe' 2025-07-24T05:27:22.0821883Z adding 'torch/test/c10_accumulate_test.exe' 2025-07-24T05:27:22.1023395Z adding 'torch/test/c10_bfloat16_test.exe' 2025-07-24T05:27:22.1197568Z adding 'torch/test/c10_bit_cast_test.exe' 2025-07-24T05:27:22.1410636Z adding 'torch/test/c10_complex_math_test.exe' 2025-07-24T05:27:22.1611820Z adding 'torch/test/c10_complex_test.exe' 2025-07-24T05:27:22.1820695Z adding 'torch/test/c10_cow_test.exe' 2025-07-24T05:27:22.1991158Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_1_var_test.exe' 2025-07-24T05:27:22.2159703Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_catches_stream.exe' 2025-07-24T05:27:22.2332052Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe' 2025-07-24T05:27:22.2506550Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_from_2_processes.exe' 2025-07-24T05:27:22.2675602Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe' 2025-07-24T05:27:22.2848711Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe' 2025-07-24T05:27:22.3018065Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe' 2025-07-24T05:27:22.3185243Z adding 'torch/test/c10_cuda_CUDATest.exe' 2025-07-24T05:27:22.3364233Z adding 'torch/test/c10_error_test.exe' 2025-07-24T05:27:22.3554836Z adding 'torch/test/c10_exception_test.exe' 2025-07-24T05:27:22.3727888Z adding 'torch/test/c10_flags_test.exe' 2025-07-24T05:27:22.3908407Z adding 'torch/test/c10_generic_math_test.exe' 2025-07-24T05:27:22.4064203Z adding 'torch/test/c10_intrusive_ptr_benchmark.exe' 2025-07-24T05:27:22.4528956Z adding 'torch/test/c10_intrusive_ptr_test.exe' 2025-07-24T05:27:22.4726210Z adding 'torch/test/c10_irange_test.exe' 2025-07-24T05:27:22.4918213Z adding 'torch/test/c10_lazy_test.exe' 2025-07-24T05:27:22.5117884Z adding 'torch/test/c10_logging_test.exe' 2025-07-24T05:27:22.5380476Z adding 'torch/test/c10_optional_test.exe' 2025-07-24T05:27:22.5600507Z adding 'torch/test/c10_ordered_preserving_dict_test.exe' 2025-07-24T05:27:22.5795901Z adding 'torch/test/c10_registry_test.exe' 2025-07-24T05:27:22.6176495Z adding 'torch/test/c10_small_vector_test.exe' 2025-07-24T05:27:22.6377059Z adding 'torch/test/c10_ssize_test.exe' 2025-07-24T05:27:22.6576075Z adding 'torch/test/c10_string_util_test.exe' 2025-07-24T05:27:22.6743629Z adding 'torch/test/c10_string_view_test.exe' 2025-07-24T05:27:22.6916720Z adding 'torch/test/c10_tempfile_test.exe' 2025-07-24T05:27:22.7114221Z adding 'torch/test/c10_typeid_test.exe' 2025-07-24T05:27:22.7324850Z adding 'torch/test/cpu_allocator_test.exe' 2025-07-24T05:27:22.7558669Z adding 'torch/test/cpu_generator_test.exe' 2025-07-24T05:27:22.7778932Z adding 'torch/test/cpu_profiling_allocator_test.exe' 2025-07-24T05:27:22.8142872Z adding 'torch/test/cpu_rng_test.exe' 2025-07-24T05:27:22.8336675Z adding 'torch/test/cuda_allocatorTraceTracker_test.exe' 2025-07-24T05:27:22.8550190Z adding 'torch/test/cuda_allocator_test.exe' 2025-07-24T05:27:22.8724036Z adding 'torch/test/cuda_apply_test.exe' 2025-07-24T05:27:22.8948341Z adding 'torch/test/cuda_atomic_ops_test.exe' 2025-07-24T05:27:22.9188819Z adding 'torch/test/cuda_caching_host_allocator_test.exe' 2025-07-24T05:27:22.9437701Z adding 'torch/test/cuda_complex_math_test.exe' 2025-07-24T05:27:22.9650906Z adding 'torch/test/cuda_complex_test.exe' 2025-07-24T05:27:22.9889420Z adding 'torch/test/cuda_cub_test.exe' 2025-07-24T05:27:23.0095836Z adding 'torch/test/cuda_cudnn_test.exe' 2025-07-24T05:27:23.0270220Z adding 'torch/test/cuda_device_test.exe' 2025-07-24T05:27:23.0573864Z adding 'torch/test/cuda_distributions_test.exe' 2025-07-24T05:27:23.0799704Z adding 'torch/test/cuda_dlconvertor_test.exe' 2025-07-24T05:27:23.0977645Z adding 'torch/test/cuda_exchange_device_test.exe' 2025-07-24T05:27:23.1205889Z adding 'torch/test/cuda_generator_test.exe' 2025-07-24T05:27:23.1414100Z adding 'torch/test/cuda_half_test.exe' 2025-07-24T05:27:23.1594437Z adding 'torch/test/cuda_integer_divider_test.exe' 2025-07-24T05:27:23.1801431Z adding 'torch/test/cuda_optional_test.exe' 2025-07-24T05:27:23.2022765Z adding 'torch/test/cuda_packedtensoraccessor_test.exe' 2025-07-24T05:27:23.2246307Z adding 'torch/test/cuda_reportMemoryUsage_test.exe' 2025-07-24T05:27:23.2464308Z adding 'torch/test/cuda_stream_test.exe' 2025-07-24T05:27:23.2686610Z adding 'torch/test/cuda_vectorized_test.exe' 2025-07-24T05:27:23.2900392Z adding 'torch/test/dlconvertor_test.exe' 2025-07-24T05:27:23.3131952Z adding 'torch/test/extension_backend_test.exe' 2025-07-24T05:27:23.3365896Z adding 'torch/test/half_test.exe' 2025-07-24T05:27:23.3628260Z adding 'torch/test/inline_container_test.exe' 2025-07-24T05:27:23.4021911Z adding 'torch/test/ivalue_test.exe' 2025-07-24T05:27:23.4468104Z adding 'torch/test/kernel_function_legacy_test.exe' 2025-07-24T05:27:23.4838891Z adding 'torch/test/kernel_function_test.exe' 2025-07-24T05:27:23.5297577Z adding 'torch/test/kernel_lambda_legacy_test.exe' 2025-07-24T05:27:23.5685006Z adding 'torch/test/kernel_lambda_test.exe' 2025-07-24T05:27:23.5947522Z adding 'torch/test/kernel_stackbased_test.exe' 2025-07-24T05:27:23.6157132Z adding 'torch/test/lazy_tensor_test.exe' 2025-07-24T05:27:23.6463674Z adding 'torch/test/legacy_vmap_test.exe' 2025-07-24T05:27:23.6832351Z adding 'torch/test/make_boxed_from_unboxed_functor_test.exe' 2025-07-24T05:27:23.7067815Z adding 'torch/test/math_kernel_test.exe' 2025-07-24T05:27:23.7283009Z adding 'torch/test/memory_format_test.exe' 2025-07-24T05:27:23.7504010Z adding 'torch/test/memory_overlapping_test.exe' 2025-07-24T05:27:23.7719275Z adding 'torch/test/mobile_memory_cleanup.exe' 2025-07-24T05:27:23.7963541Z adding 'torch/test/native_test.exe' 2025-07-24T05:27:23.8131870Z adding 'torch/test/op_allowlist_test.exe' 2025-07-24T05:27:23.8996830Z adding 'torch/test/op_registration_test.exe' 2025-07-24T05:27:23.9230100Z adding 'torch/test/operator_name_test.exe' 2025-07-24T05:27:23.9443728Z adding 'torch/test/operators_test.exe' 2025-07-24T05:27:23.9662526Z adding 'torch/test/packedtensoraccessor_test.exe' 2025-07-24T05:27:23.9953751Z adding 'torch/test/pow_test.exe' 2025-07-24T05:27:24.0193809Z adding 'torch/test/quantized_test.exe' 2025-07-24T05:27:24.0411012Z adding 'torch/test/reduce_ops_test.exe' 2025-07-24T05:27:24.0634738Z adding 'torch/test/reportMemoryUsage_test.exe' 2025-07-24T05:27:24.0881524Z adding 'torch/test/scalar_tensor_test.exe' 2025-07-24T05:27:24.1131574Z adding 'torch/test/scalar_test.exe' 2025-07-24T05:27:24.1355327Z adding 'torch/test/stride_properties_test.exe' 2025-07-24T05:27:24.1651716Z adding 'torch/test/tensor_iterator_test.exe' 2025-07-24T05:27:24.1880961Z adding 'torch/test/test_parallel.exe' 2025-07-24T05:27:24.1942822Z adding 'torch/test/thread_init_test.exe' 2025-07-24T05:27:24.2131415Z adding 'torch/test/type_ptr_test.exe' 2025-07-24T05:27:24.2373872Z adding 'torch/test/type_test.exe' 2025-07-24T05:27:24.2601786Z adding 'torch/test/undefined_tensor_test.exe' 2025-07-24T05:27:24.2807378Z adding 'torch/test/verify_api_visibility.exe' 2025-07-24T05:27:24.3028006Z adding 'torch/test/weakref_test.exe' 2025-07-24T05:27:24.3246652Z adding 'torch/test/wrapdim_test.exe' 2025-07-24T05:27:24.3462802Z adding 'torch/test/xla_tensor_test.exe' 2025-07-24T05:27:24.3475577Z adding 'torch/testing/__init__.py' 2025-07-24T05:27:24.3497944Z adding 'torch/testing/_comparison.py' 2025-07-24T05:27:24.3505693Z adding 'torch/testing/_creation.py' 2025-07-24T05:27:24.3509609Z adding 'torch/testing/_utils.py' 2025-07-24T05:27:24.3515275Z adding 'torch/testing/_internal/__init__.py' 2025-07-24T05:27:24.3523179Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-07-24T05:27:24.3530149Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-07-24T05:27:24.3535425Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-07-24T05:27:24.3541846Z adding 'torch/testing/_internal/common_cuda.py' 2025-07-24T05:27:24.3570787Z adding 'torch/testing/_internal/common_device_type.py' 2025-07-24T05:27:24.3576194Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-07-24T05:27:24.3601276Z adding 'torch/testing/_internal/common_distributed.py' 2025-07-24T05:27:24.3607150Z adding 'torch/testing/_internal/common_dtype.py' 2025-07-24T05:27:24.3626986Z adding 'torch/testing/_internal/common_fsdp.py' 2025-07-24T05:27:24.3635081Z adding 'torch/testing/_internal/common_jit.py' 2025-07-24T05:27:24.3886467Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-07-24T05:27:24.3920055Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-07-24T05:27:24.3957589Z adding 'torch/testing/_internal/common_modules.py' 2025-07-24T05:27:24.3973996Z adding 'torch/testing/_internal/common_mps.py' 2025-07-24T05:27:24.4011747Z adding 'torch/testing/_internal/common_nn.py' 2025-07-24T05:27:24.4033287Z adding 'torch/testing/_internal/common_optimizers.py' 2025-07-24T05:27:24.4040406Z adding 'torch/testing/_internal/common_pruning.py' 2025-07-24T05:27:24.4073504Z adding 'torch/testing/_internal/common_quantization.py' 2025-07-24T05:27:24.4084506Z adding 'torch/testing/_internal/common_quantized.py' 2025-07-24T05:27:24.4090924Z adding 'torch/testing/_internal/common_subclass.py' 2025-07-24T05:27:24.4183434Z adding 'torch/testing/_internal/common_utils.py' 2025-07-24T05:27:24.4198911Z adding 'torch/testing/_internal/composite_compliance.py' 2025-07-24T05:27:24.4206639Z adding 'torch/testing/_internal/custom_op_db.py' 2025-07-24T05:27:24.4211319Z adding 'torch/testing/_internal/custom_tensor.py' 2025-07-24T05:27:24.4216399Z adding 'torch/testing/_internal/dist_utils.py' 2025-07-24T05:27:24.4221176Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-07-24T05:27:24.4224668Z adding 'torch/testing/_internal/fake_config_module.py' 2025-07-24T05:27:24.4227790Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-07-24T05:27:24.4230825Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-07-24T05:27:24.4235818Z adding 'torch/testing/_internal/hop_db.py' 2025-07-24T05:27:24.4242999Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-07-24T05:27:24.4249578Z adding 'torch/testing/_internal/inductor_utils.py' 2025-07-24T05:27:24.4261482Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-07-24T05:27:24.4275090Z adding 'torch/testing/_internal/jit_utils.py' 2025-07-24T05:27:24.4280829Z adding 'torch/testing/_internal/logging_tensor.py' 2025-07-24T05:27:24.4286195Z adding 'torch/testing/_internal/logging_utils.py' 2025-07-24T05:27:24.4289905Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-07-24T05:27:24.4293328Z adding 'torch/testing/_internal/static_module.py' 2025-07-24T05:27:24.4297084Z adding 'torch/testing/_internal/subclasses.py' 2025-07-24T05:27:24.4301323Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-07-24T05:27:24.4309932Z adding 'torch/testing/_internal/triton_utils.py' 2025-07-24T05:27:24.4314756Z adding 'torch/testing/_internal/two_tensor.py' 2025-07-24T05:27:24.4318744Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-07-24T05:27:24.4322571Z adding 'torch/testing/_internal/data/__init__.py' 2025-07-24T05:27:24.4325609Z adding 'torch/testing/_internal/data/network1.py' 2025-07-24T05:27:24.4328802Z adding 'torch/testing/_internal/data/network2.py' 2025-07-24T05:27:24.4333016Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-07-24T05:27:24.4337528Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-07-24T05:27:24.4342418Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-07-24T05:27:24.4352123Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-07-24T05:27:24.4460936Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-07-24T05:27:24.4475222Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-07-24T05:27:24.4478682Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-07-24T05:27:24.4486544Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-07-24T05:27:24.4492123Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-07-24T05:27:24.4496125Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-07-24T05:27:24.4499366Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-07-24T05:27:24.4504055Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-07-24T05:27:24.4508364Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-07-24T05:27:24.4511885Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-07-24T05:27:24.4515580Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-07-24T05:27:24.4524972Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-07-24T05:27:24.4529536Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-07-24T05:27:24.4533222Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-07-24T05:27:24.4541203Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-07-24T05:27:24.4545879Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-07-24T05:27:24.4575217Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-07-24T05:27:24.4582718Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-07-24T05:27:24.4588519Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-07-24T05:27:24.4592653Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-07-24T05:27:24.4596236Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-07-24T05:27:24.4658216Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-07-24T05:27:24.4667109Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-07-24T05:27:24.4670805Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-07-24T05:27:24.4674914Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-07-24T05:27:24.4680531Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-07-24T05:27:24.4684641Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-07-24T05:27:24.4688544Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-07-24T05:27:24.4703293Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-07-24T05:27:24.4709049Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-07-24T05:27:24.4713022Z adding 'torch/testing/_internal/generated/__init__.py' 2025-07-24T05:27:24.4766121Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-07-24T05:27:24.4782695Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-07-24T05:27:24.4827525Z adding 'torch/testing/_internal/opinfo/core.py' 2025-07-24T05:27:24.4835099Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-07-24T05:27:24.4840867Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-07-24T05:27:24.4845316Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-07-24T05:27:24.4855311Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-07-24T05:27:24.4863260Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-07-24T05:27:24.4886486Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-07-24T05:27:24.4908245Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-07-24T05:27:24.4916207Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-07-24T05:27:24.4926925Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-07-24T05:27:24.4934636Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-07-24T05:27:24.4939504Z adding 'torch/testing/_internal/optests/__init__.py' 2025-07-24T05:27:24.4944363Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-07-24T05:27:24.4949182Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-07-24T05:27:24.4952400Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-07-24T05:27:24.4965621Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-07-24T05:27:24.4970636Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-07-24T05:27:24.4974540Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-07-24T05:27:24.4977446Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-07-24T05:27:24.4980330Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-07-24T05:27:24.4985936Z adding 'torch/utils/__init__.py' 2025-07-24T05:27:24.4989964Z adding 'torch/utils/_appending_byte_serializer.py' 2025-07-24T05:27:24.4994250Z adding 'torch/utils/_backport_slots.py' 2025-07-24T05:27:24.5006361Z adding 'torch/utils/_config_module.py' 2025-07-24T05:27:24.5010539Z adding 'torch/utils/_config_typing.pyi' 2025-07-24T05:27:24.5016137Z adding 'torch/utils/_content_store.py' 2025-07-24T05:27:24.5020995Z adding 'torch/utils/_contextlib.py' 2025-07-24T05:27:24.5024621Z adding 'torch/utils/_cpp_embed_headers.py' 2025-07-24T05:27:24.5028096Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-07-24T05:27:24.5039805Z adding 'torch/utils/_cxx_pytree.py' 2025-07-24T05:27:24.5044659Z adding 'torch/utils/_device.py' 2025-07-24T05:27:24.5048014Z adding 'torch/utils/_dtype_abbrs.py' 2025-07-24T05:27:24.5051175Z adding 'torch/utils/_exposed_in.py' 2025-07-24T05:27:24.5054572Z adding 'torch/utils/_filelock.py' 2025-07-24T05:27:24.5058454Z adding 'torch/utils/_foreach_utils.py' 2025-07-24T05:27:24.5064367Z adding 'torch/utils/_freeze.py' 2025-07-24T05:27:24.5077566Z adding 'torch/utils/_functools.py' 2025-07-24T05:27:24.5083393Z adding 'torch/utils/_get_clean_triton.py' 2025-07-24T05:27:24.5095378Z adding 'torch/utils/_helion.py' 2025-07-24T05:27:24.5098860Z adding 'torch/utils/_import_utils.py' 2025-07-24T05:27:24.5101880Z adding 'torch/utils/_mode_utils.py' 2025-07-24T05:27:24.5106060Z adding 'torch/utils/_ordered_set.py' 2025-07-24T05:27:24.5118195Z adding 'torch/utils/_python_dispatch.py' 2025-07-24T05:27:24.5143442Z adding 'torch/utils/_pytree.py' 2025-07-24T05:27:24.5148536Z adding 'torch/utils/_stats.py' 2025-07-24T05:27:24.5151700Z adding 'torch/utils/_thunk.py' 2025-07-24T05:27:24.5157443Z adding 'torch/utils/_traceback.py' 2025-07-24T05:27:24.5161780Z adding 'torch/utils/_triton.py' 2025-07-24T05:27:24.5164956Z adding 'torch/utils/_typing_utils.py' 2025-07-24T05:27:24.5168673Z adding 'torch/utils/_zip.py' 2025-07-24T05:27:24.5176696Z adding 'torch/utils/backend_registration.py' 2025-07-24T05:27:24.5185864Z adding 'torch/utils/bundled_inputs.py' 2025-07-24T05:27:24.5215083Z adding 'torch/utils/checkpoint.py' 2025-07-24T05:27:24.5228109Z adding 'torch/utils/collect_env.py' 2025-07-24T05:27:24.5231994Z adding 'torch/utils/cpp_backtrace.py' 2025-07-24T05:27:24.5281059Z adding 'torch/utils/cpp_extension.py' 2025-07-24T05:27:24.5287701Z adding 'torch/utils/deterministic.py' 2025-07-24T05:27:24.5292676Z adding 'torch/utils/dlpack.py' 2025-07-24T05:27:24.5296343Z adding 'torch/utils/file_baton.py' 2025-07-24T05:27:24.5308561Z adding 'torch/utils/flop_counter.py' 2025-07-24T05:27:24.5315021Z adding 'torch/utils/hooks.py' 2025-07-24T05:27:24.5319629Z adding 'torch/utils/mkldnn.py' 2025-07-24T05:27:24.5324311Z adding 'torch/utils/mobile_optimizer.py' 2025-07-24T05:27:24.5327620Z adding 'torch/utils/model_zoo.py' 2025-07-24T05:27:24.5331810Z adding 'torch/utils/module_tracker.py' 2025-07-24T05:27:24.5336364Z adding 'torch/utils/show_pickle.py' 2025-07-24T05:27:24.5341318Z adding 'torch/utils/throughput_benchmark.py' 2025-07-24T05:27:24.5347619Z adding 'torch/utils/weak.py' 2025-07-24T05:27:24.5351886Z adding 'torch/utils/_strobelight/__init__.py' 2025-07-24T05:27:24.5357426Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-07-24T05:27:24.5361450Z adding 'torch/utils/_sympy/__init__.py' 2025-07-24T05:27:24.5381503Z adding 'torch/utils/_sympy/functions.py' 2025-07-24T05:27:24.5388213Z adding 'torch/utils/_sympy/interp.py' 2025-07-24T05:27:24.5393297Z adding 'torch/utils/_sympy/numbers.py' 2025-07-24T05:27:24.5400475Z adding 'torch/utils/_sympy/printers.py' 2025-07-24T05:27:24.5406802Z adding 'torch/utils/_sympy/reference.py' 2025-07-24T05:27:24.5410974Z adding 'torch/utils/_sympy/singleton_int.py' 2025-07-24T05:27:24.5415628Z adding 'torch/utils/_sympy/solve.py' 2025-07-24T05:27:24.5419919Z adding 'torch/utils/_sympy/symbol.py' 2025-07-24T05:27:24.5433374Z adding 'torch/utils/_sympy/value_ranges.py' 2025-07-24T05:27:24.5438252Z adding 'torch/utils/backcompat/__init__.py' 2025-07-24T05:27:24.5442346Z adding 'torch/utils/benchmark/__init__.py' 2025-07-24T05:27:24.5446665Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-07-24T05:27:24.5450980Z adding 'torch/utils/benchmark/examples/compare.py' 2025-07-24T05:27:24.5455233Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-07-24T05:27:24.5459794Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-07-24T05:27:24.5463459Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-07-24T05:27:24.5468024Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-07-24T05:27:24.5475700Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-07-24T05:27:24.5479716Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-07-24T05:27:24.5483643Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-07-24T05:27:24.5487732Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-07-24T05:27:24.5491526Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-07-24T05:27:24.5495226Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-07-24T05:27:24.5499569Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-07-24T05:27:24.5502699Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-07-24T05:27:24.5509695Z adding 'torch/utils/benchmark/utils/common.py' 2025-07-24T05:27:24.5516710Z adding 'torch/utils/benchmark/utils/compare.py' 2025-07-24T05:27:24.5521842Z adding 'torch/utils/benchmark/utils/compile.py' 2025-07-24T05:27:24.5527086Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-07-24T05:27:24.5535365Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-07-24T05:27:24.5540934Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-07-24T05:27:24.5543731Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-07-24T05:27:24.5552780Z adding 'torch/utils/benchmark/utils/timer.py' 2025-07-24T05:27:24.5557227Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-07-24T05:27:24.5561790Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-07-24T05:27:24.5565125Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-07-24T05:27:24.5568743Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-07-24T05:27:24.5583252Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-07-24T05:27:24.5639516Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-07-24T05:27:24.5653150Z adding 'torch/utils/bottleneck/__init__.py' 2025-07-24T05:27:24.5657824Z adding 'torch/utils/bottleneck/__main__.py' 2025-07-24T05:27:24.5662285Z adding 'torch/utils/data/__init__.py' 2025-07-24T05:27:24.5665485Z adding 'torch/utils/data/backward_compatibility.py' 2025-07-24T05:27:24.5697734Z adding 'torch/utils/data/dataloader.py' 2025-07-24T05:27:24.5707994Z adding 'torch/utils/data/dataset.py' 2025-07-24T05:27:24.5712889Z adding 'torch/utils/data/distributed.py' 2025-07-24T05:27:24.5717525Z adding 'torch/utils/data/graph.py' 2025-07-24T05:27:24.5722127Z adding 'torch/utils/data/graph_settings.py' 2025-07-24T05:27:24.5728481Z adding 'torch/utils/data/sampler.py' 2025-07-24T05:27:24.5733139Z adding 'torch/utils/data/_utils/__init__.py' 2025-07-24T05:27:24.5739760Z adding 'torch/utils/data/_utils/collate.py' 2025-07-24T05:27:24.5743674Z adding 'torch/utils/data/_utils/fetch.py' 2025-07-24T05:27:24.5747654Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-07-24T05:27:24.5751598Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-07-24T05:27:24.5758486Z adding 'torch/utils/data/_utils/worker.py' 2025-07-24T05:27:24.5762726Z adding 'torch/utils/data/datapipes/__init__.py' 2025-07-24T05:27:24.5767424Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-07-24T05:27:24.5773561Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-07-24T05:27:24.5781286Z adding 'torch/utils/data/datapipes/_typing.py' 2025-07-24T05:27:24.5788291Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-07-24T05:27:24.5799724Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-07-24T05:27:24.5806753Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-07-24T05:27:24.5811328Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-07-24T05:27:24.5815110Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-07-24T05:27:24.5821194Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-07-24T05:27:24.5825376Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-07-24T05:27:24.5828796Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-07-24T05:27:24.5833208Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-07-24T05:27:24.5838893Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-07-24T05:27:24.5844322Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-07-24T05:27:24.5853909Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-07-24T05:27:24.5858441Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-07-24T05:27:24.5862464Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-07-24T05:27:24.5868474Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-07-24T05:27:24.5872595Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-07-24T05:27:24.5876709Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-07-24T05:27:24.5880712Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-07-24T05:27:24.5884285Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-07-24T05:27:24.5888224Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-07-24T05:27:24.5892490Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-07-24T05:27:24.5896035Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-07-24T05:27:24.5900178Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-07-24T05:27:24.5904225Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-07-24T05:27:24.5907973Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-07-24T05:27:24.5911740Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-07-24T05:27:24.5915699Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-07-24T05:27:24.5922516Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-07-24T05:27:24.5929089Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-07-24T05:27:24.5933452Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-07-24T05:27:24.5937397Z adding 'torch/utils/hipify/__init__.py' 2025-07-24T05:27:24.5940854Z adding 'torch/utils/hipify/constants.py' 2025-07-24T05:27:24.6010336Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-07-24T05:27:24.6038076Z adding 'torch/utils/hipify/hipify_python.py' 2025-07-24T05:27:24.6042137Z adding 'torch/utils/hipify/version.py' 2025-07-24T05:27:24.6045786Z adding 'torch/utils/jit/__init__.py' 2025-07-24T05:27:24.6049826Z adding 'torch/utils/jit/log_extract.py' 2025-07-24T05:27:24.6058375Z adding 'torch/utils/model_dump/__init__.py' 2025-07-24T05:27:24.6061746Z adding 'torch/utils/model_dump/__main__.py' 2025-07-24T05:27:24.6069467Z adding 'torch/utils/model_dump/code.js' 2025-07-24T05:27:24.6073357Z adding 'torch/utils/model_dump/htm.mjs' 2025-07-24T05:27:24.6079425Z adding 'torch/utils/model_dump/preact.mjs' 2025-07-24T05:27:24.6082826Z adding 'torch/utils/model_dump/skeleton.html' 2025-07-24T05:27:24.6086535Z adding 'torch/utils/serialization/__init__.py' 2025-07-24T05:27:24.6089634Z adding 'torch/utils/serialization/config.py' 2025-07-24T05:27:24.6093577Z adding 'torch/utils/tensorboard/__init__.py' 2025-07-24T05:27:24.6096662Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-07-24T05:27:24.6100371Z adding 'torch/utils/tensorboard/_embedding.py' 2025-07-24T05:27:24.6103967Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-07-24T05:27:24.6107430Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-07-24T05:27:24.6114363Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-07-24T05:27:24.6118976Z adding 'torch/utils/tensorboard/_utils.py' 2025-07-24T05:27:24.6132301Z adding 'torch/utils/tensorboard/summary.py' 2025-07-24T05:27:24.6147741Z adding 'torch/utils/tensorboard/writer.py' 2025-07-24T05:27:24.6152556Z adding 'torch/utils/viz/__init__.py' 2025-07-24T05:27:24.6160226Z adding 'torch/utils/viz/_cycles.py' 2025-07-24T05:27:24.6169285Z adding 'torch/xpu/__init__.py' 2025-07-24T05:27:24.6173047Z adding 'torch/xpu/_gpu_trace.py' 2025-07-24T05:27:24.6176394Z adding 'torch/xpu/_utils.py' 2025-07-24T05:27:24.6180902Z adding 'torch/xpu/memory.py' 2025-07-24T05:27:24.6185000Z adding 'torch/xpu/random.py' 2025-07-24T05:27:24.6189448Z adding 'torch/xpu/streams.py' 2025-07-24T05:27:24.6319987Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/licenses/LICENSE' 2025-07-24T05:27:24.6342406Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/licenses/NOTICE' 2025-07-24T05:27:24.6347219Z adding 'torchgen/__init__.py' 2025-07-24T05:27:24.6351193Z adding 'torchgen/code_template.py' 2025-07-24T05:27:24.6355230Z adding 'torchgen/context.py' 2025-07-24T05:27:24.6394129Z adding 'torchgen/gen.py' 2025-07-24T05:27:24.6406814Z adding 'torchgen/gen_aoti_c_shim.py' 2025-07-24T05:27:24.6416344Z adding 'torchgen/gen_backend_stubs.py' 2025-07-24T05:27:24.6431111Z adding 'torchgen/gen_functionalization_type.py' 2025-07-24T05:27:24.6441556Z adding 'torchgen/gen_lazy_tensor.py' 2025-07-24T05:27:24.6446070Z adding 'torchgen/gen_schema_utils.py' 2025-07-24T05:27:24.6451454Z adding 'torchgen/gen_vmap_plumbing.py' 2025-07-24T05:27:24.6455512Z adding 'torchgen/local.py' 2025-07-24T05:27:24.6501526Z adding 'torchgen/model.py' 2025-07-24T05:27:24.6516594Z adding 'torchgen/native_function_generation.py' 2025-07-24T05:27:24.6525859Z adding 'torchgen/utils.py' 2025-07-24T05:27:24.6529816Z adding 'torchgen/yaml_utils.py' 2025-07-24T05:27:24.6533356Z adding 'torchgen/aoti/__init__.py' 2025-07-24T05:27:24.6537888Z adding 'torchgen/aoti/fallback_ops.py' 2025-07-24T05:27:24.6548420Z adding 'torchgen/api/__init__.py' 2025-07-24T05:27:24.6557238Z adding 'torchgen/api/autograd.py' 2025-07-24T05:27:24.6565311Z adding 'torchgen/api/cpp.py' 2025-07-24T05:27:24.6569623Z adding 'torchgen/api/dispatcher.py' 2025-07-24T05:27:24.6574489Z adding 'torchgen/api/functionalization.py' 2025-07-24T05:27:24.6582230Z adding 'torchgen/api/lazy.py' 2025-07-24T05:27:24.6585759Z adding 'torchgen/api/meta.py' 2025-07-24T05:27:24.6590015Z adding 'torchgen/api/native.py' 2025-07-24T05:27:24.6612883Z adding 'torchgen/api/python.py' 2025-07-24T05:27:24.6618751Z adding 'torchgen/api/structured.py' 2025-07-24T05:27:24.6626415Z adding 'torchgen/api/translate.py' 2025-07-24T05:27:24.6631463Z adding 'torchgen/api/ufunc.py' 2025-07-24T05:27:24.6636817Z adding 'torchgen/api/unboxing.py' 2025-07-24T05:27:24.6640792Z adding 'torchgen/api/types/__init__.py' 2025-07-24T05:27:24.6647499Z adding 'torchgen/api/types/signatures.py' 2025-07-24T05:27:24.6652366Z adding 'torchgen/api/types/types.py' 2025-07-24T05:27:24.6657338Z adding 'torchgen/api/types/types_base.py' 2025-07-24T05:27:24.6661491Z adding 'torchgen/dest/__init__.py' 2025-07-24T05:27:24.6672566Z adding 'torchgen/dest/lazy_ir.py' 2025-07-24T05:27:24.6676795Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-07-24T05:27:24.6680518Z adding 'torchgen/dest/native_functions.py' 2025-07-24T05:27:24.6695329Z adding 'torchgen/dest/register_dispatch_key.py' 2025-07-24T05:27:24.6703803Z adding 'torchgen/dest/ufunc.py' 2025-07-24T05:27:24.6708045Z adding 'torchgen/operator_versions/__init__.py' 2025-07-24T05:27:24.6714002Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-07-24T05:27:24.6717493Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-07-24T05:27:24.6845126Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-07-24T05:27:24.6864198Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-07-24T05:27:24.6869705Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-07-24T05:27:24.6873330Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-07-24T05:27:24.6876767Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-07-24T05:27:24.6880308Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-07-24T05:27:24.6883743Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-07-24T05:27:24.6886930Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-07-24T05:27:24.6889935Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-07-24T05:27:24.6893007Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-07-24T05:27:24.6896327Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-07-24T05:27:24.6900266Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-07-24T05:27:24.6904543Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-07-24T05:27:24.6907781Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-07-24T05:27:24.6910917Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-07-24T05:27:24.6914078Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-07-24T05:27:24.6917541Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-07-24T05:27:24.6920828Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-07-24T05:27:24.6923850Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-07-24T05:27:24.6926979Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-07-24T05:27:24.6930084Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-07-24T05:27:24.6933040Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-07-24T05:27:24.6936905Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-07-24T05:27:24.6940191Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-07-24T05:27:24.6943378Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-07-24T05:27:24.6946686Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-07-24T05:27:24.6950024Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-07-24T05:27:24.6953460Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-07-24T05:27:24.7218431Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-07-24T05:27:24.7222649Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-07-24T05:27:24.7225926Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-07-24T05:27:24.7228928Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-07-24T05:27:24.7241152Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-07-24T05:27:24.7245550Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-07-24T05:27:24.7248914Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-07-24T05:27:24.7251992Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-07-24T05:27:24.7254999Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-07-24T05:27:24.7258101Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-07-24T05:27:24.7261479Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-07-24T05:27:24.7264675Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-07-24T05:27:24.7267613Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-07-24T05:27:24.7271581Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-07-24T05:27:24.7274402Z adding 'torchgen/packaged/autograd/README.md' 2025-07-24T05:27:24.7277270Z adding 'torchgen/packaged/autograd/__init__.py' 2025-07-24T05:27:24.7280134Z adding 'torchgen/packaged/autograd/build.bzl' 2025-07-24T05:27:24.7283283Z adding 'torchgen/packaged/autograd/context.py' 2025-07-24T05:27:24.7287019Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-07-24T05:27:24.7338657Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-07-24T05:27:24.7346856Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-07-24T05:27:24.7351075Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-07-24T05:27:24.7363443Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-07-24T05:27:24.7373914Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-07-24T05:27:24.7391701Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-07-24T05:27:24.7401065Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-07-24T05:27:24.7405852Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-07-24T05:27:24.7435101Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-07-24T05:27:24.7443427Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-07-24T05:27:24.7459267Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-07-24T05:27:24.7466161Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-07-24T05:27:24.7469134Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-07-24T05:27:24.7472912Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-07-24T05:27:24.7479784Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-07-24T05:27:24.7483918Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-07-24T05:27:24.7487734Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-07-24T05:27:24.7491124Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-07-24T05:27:24.7494194Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-07-24T05:27:24.7497412Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-07-24T05:27:24.7500409Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-07-24T05:27:24.7503983Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-07-24T05:27:24.7507314Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-07-24T05:27:24.7510445Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-07-24T05:27:24.7513794Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-07-24T05:27:24.7517296Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-07-24T05:27:24.7521183Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-07-24T05:27:24.7524572Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-07-24T05:27:24.7527616Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-07-24T05:27:24.7530894Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-07-24T05:27:24.7534257Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-07-24T05:27:24.7538022Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-07-24T05:27:24.7551728Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-07-24T05:27:24.7557086Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-07-24T05:27:24.7560951Z adding 'torchgen/selective_build/__init__.py' 2025-07-24T05:27:24.7565435Z adding 'torchgen/selective_build/operator.py' 2025-07-24T05:27:24.7571721Z adding 'torchgen/selective_build/selector.py' 2025-07-24T05:27:24.7575824Z adding 'torchgen/static_runtime/__init__.py' 2025-07-24T05:27:24.7580578Z adding 'torchgen/static_runtime/config.py' 2025-07-24T05:27:24.7585549Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-07-24T05:27:24.7595018Z adding 'torchgen/static_runtime/generator.py' 2025-07-24T05:27:24.7608331Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/METADATA' 2025-07-24T05:27:24.7611087Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/WHEEL' 2025-07-24T05:27:24.7613230Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/entry_points.txt' 2025-07-24T05:27:24.7615219Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/top_level.txt' 2025-07-24T05:27:24.8360157Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/RECORD' 2025-07-24T05:27:24.8750362Z removing build\bdist.win-amd64\wheel 2025-07-24T05:27:26.7163037Z 2025-07-24T05:27:26.7163611Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-07-24T05:27:26.7164536Z 2025-07-24T05:27:26.7164809Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-07-24T05:27:26.7165993Z 2025-07-24T05:27:26.7166249Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats 2025-07-24T05:27:26.7390207Z Compile requests 7493 2025-07-24T05:27:26.7390648Z Compile requests executed 5618 2025-07-24T05:27:26.7390927Z Cache hits 5545 2025-07-24T05:27:26.7391201Z Cache hits (C/C++) 5223 2025-07-24T05:27:26.7391463Z Cache hits (CUDA) 322 2025-07-24T05:27:26.7391728Z Cache misses 52 2025-07-24T05:27:26.7391992Z Cache misses (C/C++) 52 2025-07-24T05:27:26.7392262Z Cache timeouts 0 2025-07-24T05:27:26.7392520Z Cache read errors 0 2025-07-24T05:27:26.7392794Z Forced recaches 0 2025-07-24T05:27:26.7393057Z Cache write errors 0 2025-07-24T05:27:26.7393341Z Compilation failures 3 2025-07-24T05:27:26.7393616Z Cache errors 18 2025-07-24T05:27:26.7393880Z Cache errors (C/C++) 18 2025-07-24T05:27:26.7394159Z Non-cacheable compilations 2 2025-07-24T05:27:26.7394433Z Non-cacheable calls 1874 2025-07-24T05:27:26.7394883Z Non-compilation calls 1 2025-07-24T05:27:26.7395161Z Unsupported compiler calls 0 2025-07-24T05:27:26.7395461Z Average cache write 0.031 s 2025-07-24T05:27:26.7395753Z Average compiler 0.091 s 2025-07-24T05:27:26.7396148Z Average cache read hit 0.081 s 2025-07-24T05:27:26.7396456Z Failed distributed compilations 0 2025-07-24T05:27:26.7396655Z 2025-07-24T05:27:26.7396785Z Non-cacheable reasons: 2025-07-24T05:27:26.7397463Z multiple input files 1874 2025-07-24T05:27:26.7397755Z 2025-07-24T05:27:26.7398117Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-07-24T05:27:26.7398604Z Version (client) 0.7.4 2025-07-24T05:27:26.7422335Z 2025-07-24T05:27:26.7422994Z (base) C:\actions-runner\_work\pytorch\pytorch>python -c "import os, glob; os.system('python -mpip install --no-index --no-deps ' + glob.glob('dist/*.whl')[0])" 2025-07-24T05:27:27.8503976Z Processing c:\actions-runner\_work\pytorch\pytorch\dist\torch-2.9.0a0+git27c8ef1-cp39-cp39-win_amd64.whl 2025-07-24T05:27:30.4984717Z Installing collected packages: torch 2025-07-24T05:28:10.4796065Z Successfully installed torch-2.9.0a0+git27c8ef1 2025-07-24T05:28:10.5696793Z 2025-07-24T05:28:10.5698356Z (base) C:\actions-runner\_work\pytorch\pytorch>(if "win-vs2022-cuda12.6-py3" == "" (echo NOTE: To run `import torch`, please make sure to activate the conda environment by running `call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3` in Command Prompt before running Git Bash. ) else ( 2025-07-24T05:28:10.5699715Z copy /Y "dist\*.whl" "C:/16487210679/build-results/" 2025-07-24T05:28:10.5700076Z python tools/stats/export_test_times.py 2025-07-24T05:28:10.5701845Z robocopy /E ".additional_ci_files" "C:/16487210679/build-results/\.additional_ci_files" 2025-07-24T05:28:10.5702375Z copy /Y "build\.ninja_log" "C:/16487210679/build-results/\" 2025-07-24T05:28:10.5702723Z ) ) 2025-07-24T05:28:10.5705080Z dist\torch-2.9.0a0+git27c8ef1-cp39-cp39-win_amd64.whl 2025-07-24T05:28:11.0135656Z 1 file(s) copied. 2025-07-24T05:28:12.3358382Z Exporting test times from test-infra 2025-07-24T05:28:12.3359417Z Downloading https://raw.githubusercontent.com/pytorch/test-infra/generated-stats/stats/test-times.json to C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\test-times.json 2025-07-24T05:28:12.3361098Z Downloading https://raw.githubusercontent.com/pytorch/test-infra/generated-stats/stats/test-class-times.json to C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\test-class-times.json 2025-07-24T05:28:12.4928381Z 2025-07-24T05:28:12.4928880Z ------------------------------------------------------------------------------- 2025-07-24T05:28:12.4930154Z ROBOCOPY :: Robust File Copy for Windows 2025-07-24T05:28:12.4930682Z ------------------------------------------------------------------------------- 2025-07-24T05:28:12.4931008Z 2025-07-24T05:28:12.4932348Z Started : Thursday, July 24, 2025 5:28:12 AM 2025-07-24T05:28:12.4932842Z Source : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-07-24T05:28:12.4933600Z Dest : C:\16487210679\build-results\.additional_ci_files\ 2025-07-24T05:28:12.4933895Z 2025-07-24T05:28:12.4934180Z Files : *.* 2025-07-24T05:28:12.4934706Z 2025-07-24T05:28:12.4935757Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-07-24T05:28:12.4936054Z 2025-07-24T05:28:12.4936283Z ------------------------------------------------------------------------------ 2025-07-24T05:28:12.4939758Z 2025-07-24T05:28:12.4946418Z New Dir 2 C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-07-24T05:28:12.4954934Z New File 7.9 m test-class-times.json 2025-07-24T05:28:12.4958063Z 6.2% 2025-07-24T05:28:12.4961908Z 12.5% 2025-07-24T05:28:12.4964998Z 18.7% 2025-07-24T05:28:12.4968653Z 25.0% 2025-07-24T05:28:12.4971694Z 31.2% 2025-07-24T05:28:12.4975571Z 37.5% 2025-07-24T05:28:12.4978566Z 43.7% 2025-07-24T05:28:12.4982143Z 50.0% 2025-07-24T05:28:12.4985051Z 56.2% 2025-07-24T05:28:12.4988610Z 62.5% 2025-07-24T05:28:12.4991499Z 68.7% 2025-07-24T05:28:12.4995070Z 75.0% 2025-07-24T05:28:12.4998022Z 81.3% 2025-07-24T05:28:12.5001835Z 87.5% 2025-07-24T05:28:12.5005127Z 93.8% 2025-07-24T05:28:12.5007270Z 100% 2025-07-24T05:28:12.5013270Z New File 2.2 m test-times.json 2025-07-24T05:28:12.5016209Z 22% 2025-07-24T05:28:12.5019746Z 45% 2025-07-24T05:28:12.5022661Z 67% 2025-07-24T05:28:12.5024804Z 90% 2025-07-24T05:28:12.5028579Z 100% 2025-07-24T05:28:12.5028791Z 2025-07-24T05:28:12.5028960Z ------------------------------------------------------------------------------ 2025-07-24T05:28:12.5029246Z 2025-07-24T05:28:12.5030218Z Total Copied Skipped Mismatch FAILED Extras 2025-07-24T05:28:12.5031207Z Dirs : 1 1 0 0 0 0 2025-07-24T05:28:12.5032343Z Files : 2 2 0 0 0 0 2025-07-24T05:28:12.5033327Z Bytes : 10.20 m 10.20 m 0 0 0 0 2025-07-24T05:28:12.5034255Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-07-24T05:28:12.5034671Z 2025-07-24T05:28:12.5035057Z 2025-07-24T05:28:12.5036131Z Speed : 1783244000 Bytes/sec. 2025-07-24T05:28:12.5037127Z Speed : 102038.040 MegaBytes/min. 2025-07-24T05:28:12.5037462Z Ended : Thursday, July 24, 2025 5:28:12 AM 2025-07-24T05:28:12.5037836Z 2025-07-24T05:28:13.2191629Z 1 file(s) copied. 2025-07-24T05:28:13.2193797Z 2025-07-24T05:28:13.2194821Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats --stats-format json | jq .stats 1>sccache-stats-win-vs2022-cuda12.6-py3-46614187338.json 2025-07-24T05:28:13.2597484Z 2025-07-24T05:28:13.2598051Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-07-24T05:28:13.2690375Z Stopping sccache server... 2025-07-24T05:28:13.2710028Z Compile requests 7493 2025-07-24T05:28:13.2710391Z Compile requests executed 5618 2025-07-24T05:28:13.2710686Z Cache hits 5545 2025-07-24T05:28:13.2711052Z Cache hits (C/C++) 5223 2025-07-24T05:28:13.2711323Z Cache hits (CUDA) 322 2025-07-24T05:28:13.2711606Z Cache misses 52 2025-07-24T05:28:13.2711871Z Cache misses (C/C++) 52 2025-07-24T05:28:13.2712157Z Cache timeouts 0 2025-07-24T05:28:13.2712433Z Cache read errors 0 2025-07-24T05:28:13.2712722Z Forced recaches 0 2025-07-24T05:28:13.2713007Z Cache write errors 0 2025-07-24T05:28:13.2713465Z Compilation failures 3 2025-07-24T05:28:13.2713756Z Cache errors 18 2025-07-24T05:28:13.2714028Z Cache errors (C/C++) 18 2025-07-24T05:28:13.2714331Z Non-cacheable compilations 2 2025-07-24T05:28:13.2714614Z Non-cacheable calls 1874 2025-07-24T05:28:13.2714906Z Non-compilation calls 1 2025-07-24T05:28:13.2715207Z Unsupported compiler calls 0 2025-07-24T05:28:13.2715515Z Average cache write 0.031 s 2025-07-24T05:28:13.2715824Z Average compiler 0.091 s 2025-07-24T05:28:13.2716115Z Average cache read hit 0.081 s 2025-07-24T05:28:13.2716431Z Failed distributed compilations 0 2025-07-24T05:28:13.2716636Z 2025-07-24T05:28:13.2716736Z Non-cacheable reasons: 2025-07-24T05:28:13.2716988Z multiple input files 1874 2025-07-24T05:28:13.2717182Z 2025-07-24T05:28:13.2717384Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-07-24T05:28:13.2717804Z Version (client) 0.7.4 2025-07-24T05:28:13.2731222Z 2025-07-24T05:28:13.2731788Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-07-24T05:28:13.2913104Z + assert_git_not_dirty 2025-07-24T05:28:13.2940271Z + [[ win-vs2022-cuda12.6-py3 != *rocm* ]] 2025-07-24T05:28:13.2940629Z + [[ win-vs2022-cuda12.6-py3 != *xla* ]] 2025-07-24T05:28:13.3337550Z ++ git status --porcelain 2025-07-24T05:28:13.3397247Z ++ grep -v '?? third_party' 2025-07-24T05:30:04.7395473Z ++ true 2025-07-24T05:30:04.7399384Z + git_status= 2025-07-24T05:30:04.7399607Z + [[ -n '' ]] 2025-07-24T05:30:04.7400052Z + echo 'BUILD PASSED' 2025-07-24T05:30:04.7400293Z BUILD PASSED 2025-07-24T05:30:04.8660468Z ##[group]Run seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a 2025-07-24T05:30:04.8661147Z with: 2025-07-24T05:30:04.8661354Z retention-days: 14 2025-07-24T05:30:04.8661644Z if-no-files-found: error 2025-07-24T05:30:04.8661919Z name: win-vs2022-cuda12.6-py3 2025-07-24T05:30:04.8662201Z path: C:\16487210679\build-results 2025-07-24T05:30:04.8662485Z s3-bucket: gha-artifacts 2025-07-24T05:30:04.8662735Z region: us-east-1 2025-07-24T05:30:04.8662936Z env: 2025-07-24T05:30:04.8663126Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:30:04.8663507Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:30:04.8664058Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:30:04.8664549Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:30:04.8665053Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:30:04.8665358Z ##[endgroup] 2025-07-24T05:30:07.0097264Z With the provided path, there will be 4 files uploaded 2025-07-24T05:30:07.0097792Z Uploading to s3 prefix: pytorch/pytorch/16487210679/win-vs2022-cuda12.6-py3 2025-07-24T05:30:07.0125313Z Starting upload of .additional_ci_files\test-class-times.json 2025-07-24T05:30:07.4328459Z Finished upload of .additional_ci_files\test-class-times.json 2025-07-24T05:30:07.4331424Z Starting upload of .additional_ci_files\test-times.json 2025-07-24T05:30:07.6486816Z Finished upload of .additional_ci_files\test-times.json 2025-07-24T05:30:07.6488977Z Starting upload of .ninja_log 2025-07-24T05:30:07.8034072Z Finished upload of .ninja_log 2025-07-24T05:30:07.8035600Z Starting upload of torch-2.9.0a0+git27c8ef1-cp39-cp39-win_amd64.whl 2025-07-24T05:30:11.9467609Z Finished upload of torch-2.9.0a0+git27c8ef1-cp39-cp39-win_amd64.whl 2025-07-24T05:30:11.9857537Z Prepare all required actions 2025-07-24T05:30:11.9858290Z Getting action download info 2025-07-24T05:30:12.1259576Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-07-24T05:30:12.4914868Z ##[group]Run ./.github/actions/upload-sccache-stats 2025-07-24T05:30:12.4915196Z with: 2025-07-24T05:30:12.4925172Z github-token: *** 2025-07-24T05:30:12.4925403Z env: 2025-07-24T05:30:12.4925614Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:30:12.4926002Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:30:12.4926564Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:30:12.4927058Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:30:12.4927460Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:30:12.4927769Z ##[endgroup] 2025-07-24T05:30:12.5037404Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-07-24T05:30:12.5037792Z with: 2025-07-24T05:30:12.5038027Z s3-prefix: pytorch/pytorch/16487210679/1/artifact 2025-07-24T05:30:12.5038367Z retention-days: 14 2025-07-24T05:30:12.5038592Z if-no-files-found: warn 2025-07-24T05:30:12.5038845Z path: sccache-stats-*.json 2025-07-24T05:30:12.5039110Z name: artifact 2025-07-24T05:30:12.5039315Z s3-bucket: gha-artifacts 2025-07-24T05:30:12.5039564Z region: us-east-1 2025-07-24T05:30:12.5039758Z env: 2025-07-24T05:30:12.5039951Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:30:12.5040329Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:30:12.5040968Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:30:12.5041452Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:30:12.5041872Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:30:12.5042180Z ##[endgroup] 2025-07-24T05:30:12.9110215Z NOTE: s3-prefix specified, ignoring name parameter 2025-07-24T05:30:12.9110732Z With the provided path, there will be 1 file uploaded 2025-07-24T05:30:12.9111223Z Uploading to s3 prefix: pytorch/pytorch/16487210679/1/artifact 2025-07-24T05:30:12.9125206Z Starting upload of sccache-stats-win-vs2022-cuda12.6-py3-46614187338.json 2025-07-24T05:30:13.0494524Z Finished upload of sccache-stats-win-vs2022-cuda12.6-py3-46614187338.json 2025-07-24T05:30:13.0822642Z Prepare all required actions 2025-07-24T05:30:13.0823030Z Getting action download info 2025-07-24T05:30:13.2782861Z ##[group]Run ./.github/actions/teardown-win 2025-07-24T05:30:13.2783172Z with: 2025-07-24T05:30:13.2783408Z extra-delete-dir: /c/16487210679/build-results/ 2025-07-24T05:30:13.2783798Z env: 2025-07-24T05:30:13.2783990Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:30:13.2784357Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:30:13.2784885Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:30:13.2785366Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:30:13.2785761Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:30:13.2786050Z ##[endgroup] 2025-07-24T05:30:13.2871298Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-07-24T05:30:13.2871704Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-07-24T05:30:13.2888536Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T05:30:13.2888992Z env: 2025-07-24T05:30:13.2889185Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:30:13.2889570Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:30:13.2890101Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:30:13.2890579Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:30:13.2890970Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:30:13.2891262Z ##[endgroup] 2025-07-24T05:30:13.7990952Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T05:30:13.8068002Z Finished 2025-07-24T05:30:13.9558783Z Holding runner until all ssh sessions have logged out 2025-07-24T05:30:13.9859228Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-07-24T05:30:13.9859678Z .github\scripts\kill_active_ssh_sessions.ps1 2025-07-24T05:30:13.9876238Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T05:30:13.9876709Z env: 2025-07-24T05:30:13.9876893Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:30:13.9877279Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:30:13.9877798Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:30:13.9878278Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:30:13.9878676Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:30:13.9878962Z ##[endgroup] 2025-07-24T05:30:14.3459446Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T05:30:14.3518629Z Finished 2025-07-24T05:30:14.3905795Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-07-24T05:30:14.3906255Z env: 2025-07-24T05:30:14.3906474Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:30:14.3906916Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:30:14.3907473Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:30:14.3908114Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:30:14.3908570Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:30:14.3908888Z ##[endgroup] 2025-07-24T05:30:14.3994529Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-07-24T05:30:14.3995276Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-07-24T05:30:14.3995959Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-07-24T05:30:14.3996454Z # handle tool 2025-07-24T05:30:14.3996787Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-07-24T05:30:14.3997297Z Foreach ($process In $processes) { 2025-07-24T05:30:14.3998959Z  Try { 2025-07-24T05:30:14.3999568Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-07-24T05:30:14.4000290Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-07-24T05:30:14.4000711Z  } 2025-07-24T05:30:14.4000893Z  Catch { 2025-07-24T05:30:14.4001191Z  Write-Output "No leftover $process process, continuing" 2025-07-24T05:30:14.4001565Z  Write-Output $_ 2025-07-24T05:30:14.4001790Z  } 2025-07-24T05:30:14.4001968Z } 2025-07-24T05:30:14.4002132Z  2025-07-24T05:30:14.4002602Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-07-24T05:30:14.4003165Z # for hung processes 2025-07-24T05:30:14.4003437Z Foreach ($process In $processes) { 2025-07-24T05:30:14.4003721Z  Try { 2025-07-24T05:30:14.4004114Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-07-24T05:30:14.4004618Z  } 2025-07-24T05:30:14.4004795Z  Catch { 2025-07-24T05:30:14.4005007Z  Write-Output $_ 2025-07-24T05:30:14.4005278Z  } 2025-07-24T05:30:14.4005452Z } 2025-07-24T05:30:14.4005626Z  2025-07-24T05:30:14.4005790Z Try { 2025-07-24T05:30:14.4006018Z  # Print all the processes for debugging 2025-07-24T05:30:14.4006483Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-07-24T05:30:14.4006909Z } 2025-07-24T05:30:14.4007079Z Catch { 2025-07-24T05:30:14.4007465Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-07-24T05:30:14.4007934Z  Write-Output $_ 2025-07-24T05:30:14.4008163Z } 2025-07-24T05:30:14.4024755Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T05:30:14.4025216Z env: 2025-07-24T05:30:14.4025390Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:30:14.4025784Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:30:14.4026308Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:30:14.4026793Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:30:14.4027199Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:30:14.4027484Z ##[endgroup] 2025-07-24T05:30:14.7611028Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T05:30:14.7670710Z Finished 2025-07-24T05:30:14.7832778Z No leftover python process, continuing 2025-07-24T05:30:14.8324685Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-07-24T05:30:14.8325447Z At C:\actions-runner\_work\_temp\1c3c7574-4422-44ec-b4e5-bf7c3c68418c.ps1:9 char:5 2025-07-24T05:30:14.8326037Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T05:30:14.8326503Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:30:14.8327216Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-07-24T05:30:14.8328099Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T05:30:14.8328737Z 2025-07-24T05:30:14.8344545Z No leftover ninja process, continuing 2025-07-24T05:30:14.8357692Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-07-24T05:30:14.8358431Z At C:\actions-runner\_work\_temp\1c3c7574-4422-44ec-b4e5-bf7c3c68418c.ps1:9 char:5 2025-07-24T05:30:14.8359065Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T05:30:14.8359594Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:30:14.8360765Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-07-24T05:30:14.8361676Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T05:30:14.8362295Z 2025-07-24T05:30:14.8375364Z No leftover cl process, continuing 2025-07-24T05:30:14.8386757Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-07-24T05:30:14.8387418Z At C:\actions-runner\_work\_temp\1c3c7574-4422-44ec-b4e5-bf7c3c68418c.ps1:9 char:5 2025-07-24T05:30:14.8387988Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T05:30:14.8388408Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:30:14.8388875Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-07-24T05:30:14.8389759Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T05:30:14.8390365Z 2025-07-24T05:30:14.8401098Z No leftover nvcc process, continuing 2025-07-24T05:30:14.8412050Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-07-24T05:30:14.8412718Z At C:\actions-runner\_work\_temp\1c3c7574-4422-44ec-b4e5-bf7c3c68418c.ps1:9 char:5 2025-07-24T05:30:14.8413288Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T05:30:14.8413695Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:30:14.8414186Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-07-24T05:30:14.8415058Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T05:30:14.8415666Z 2025-07-24T05:30:14.8425817Z No leftover cmd process, continuing 2025-07-24T05:30:14.8436801Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-07-24T05:30:14.8437492Z At C:\actions-runner\_work\_temp\1c3c7574-4422-44ec-b4e5-bf7c3c68418c.ps1:9 char:5 2025-07-24T05:30:14.8438050Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T05:30:14.8438467Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:30:14.8438952Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-07-24T05:30:14.8439804Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T05:30:14.8440427Z 2025-07-24T05:30:14.8449927Z No leftover sccache process, continuing 2025-07-24T05:30:14.8460805Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-07-24T05:30:14.8461504Z At C:\actions-runner\_work\_temp\1c3c7574-4422-44ec-b4e5-bf7c3c68418c.ps1:9 char:5 2025-07-24T05:30:14.8462066Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T05:30:14.8462486Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:30:14.8462979Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-07-24T05:30:14.8464077Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T05:30:14.8464701Z 2025-07-24T05:30:14.8473562Z No leftover git process, continuing 2025-07-24T05:30:14.8484373Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-07-24T05:30:14.8485036Z At C:\actions-runner\_work\_temp\1c3c7574-4422-44ec-b4e5-bf7c3c68418c.ps1:9 char:5 2025-07-24T05:30:14.8485621Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-24T05:30:14.8486064Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:30:14.8487167Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-07-24T05:30:14.8487990Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-24T05:30:14.8488597Z 2025-07-24T05:30:14.8964533Z You cannot call a method on a null-valued expression. 2025-07-24T05:30:14.8965054Z At C:\actions-runner\_work\_temp\1c3c7574-4422-44ec-b4e5-bf7c3c68418c.ps1:21 char:5 2025-07-24T05:30:14.8965635Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T05:30:14.8966064Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:30:14.8966481Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-24T05:30:14.8966888Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-24T05:30:14.8967187Z 2025-07-24T05:30:14.9125862Z You cannot call a method on a null-valued expression. 2025-07-24T05:30:14.9126423Z At C:\actions-runner\_work\_temp\1c3c7574-4422-44ec-b4e5-bf7c3c68418c.ps1:21 char:5 2025-07-24T05:30:14.9127020Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T05:30:14.9127451Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:30:14.9127877Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-24T05:30:14.9128284Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-24T05:30:14.9128589Z 2025-07-24T05:30:14.9288152Z You cannot call a method on a null-valued expression. 2025-07-24T05:30:14.9288674Z At C:\actions-runner\_work\_temp\1c3c7574-4422-44ec-b4e5-bf7c3c68418c.ps1:21 char:5 2025-07-24T05:30:14.9289261Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T05:30:14.9289751Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:30:14.9290209Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-24T05:30:14.9290637Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-24T05:30:14.9290940Z 2025-07-24T05:30:14.9459553Z You cannot call a method on a null-valued expression. 2025-07-24T05:30:14.9460088Z At C:\actions-runner\_work\_temp\1c3c7574-4422-44ec-b4e5-bf7c3c68418c.ps1:21 char:5 2025-07-24T05:30:14.9460685Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T05:30:14.9461119Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:30:14.9461543Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-24T05:30:14.9461962Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-24T05:30:14.9462248Z 2025-07-24T05:30:14.9616970Z You cannot call a method on a null-valued expression. 2025-07-24T05:30:14.9617491Z At C:\actions-runner\_work\_temp\1c3c7574-4422-44ec-b4e5-bf7c3c68418c.ps1:21 char:5 2025-07-24T05:30:14.9618082Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T05:30:14.9618556Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:30:14.9618971Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-24T05:30:14.9619391Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-24T05:30:14.9619866Z 2025-07-24T05:30:14.9769467Z You cannot call a method on a null-valued expression. 2025-07-24T05:30:14.9770058Z At C:\actions-runner\_work\_temp\1c3c7574-4422-44ec-b4e5-bf7c3c68418c.ps1:21 char:5 2025-07-24T05:30:14.9770682Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T05:30:14.9771120Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:30:14.9771532Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-24T05:30:14.9771936Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-24T05:30:14.9772231Z 2025-07-24T05:30:14.9931561Z You cannot call a method on a null-valued expression. 2025-07-24T05:30:14.9932397Z At C:\actions-runner\_work\_temp\1c3c7574-4422-44ec-b4e5-bf7c3c68418c.ps1:21 char:5 2025-07-24T05:30:14.9932994Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-24T05:30:14.9933430Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T05:30:14.9933843Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-24T05:30:14.9934255Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-24T05:30:14.9934542Z 2025-07-24T05:30:15.2295480Z Caption CommandLine ProcessId 2025-07-24T05:30:15.2296089Z 2025-07-24T05:30:15.2296425Z System Idle Process 0 2025-07-24T05:30:15.2296865Z 2025-07-24T05:30:15.2297557Z System 4 2025-07-24T05:30:15.2297986Z 2025-07-24T05:30:15.2298926Z Registry 168 2025-07-24T05:30:15.2299326Z 2025-07-24T05:30:15.2300134Z smss.exe 408 2025-07-24T05:30:15.2300533Z 2025-07-24T05:30:15.2301253Z csrss.exe 520 2025-07-24T05:30:15.2301806Z 2025-07-24T05:30:15.2303150Z csrss.exe 596 2025-07-24T05:30:15.2303701Z 2025-07-24T05:30:15.2304052Z wininit.exe 648 2025-07-24T05:30:15.2304456Z 2025-07-24T05:30:15.2304972Z winlogon.exe winlogon.exe 668 2025-07-24T05:30:15.2305418Z 2025-07-24T05:30:15.2306191Z services.exe 740 2025-07-24T05:30:15.2306587Z 2025-07-24T05:30:15.2307487Z lsass.exe C:\Windows\system32\lsass.exe 760 2025-07-24T05:30:15.2307967Z 2025-07-24T05:30:15.2308872Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 888 2025-07-24T05:30:15.2309476Z 2025-07-24T05:30:15.2309945Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 912 2025-07-24T05:30:15.2310542Z 2025-07-24T05:30:15.2311059Z fontdrvhost.exe "fontdrvhost.exe" 936 2025-07-24T05:30:15.2311537Z 2025-07-24T05:30:15.2312553Z fontdrvhost.exe "fontdrvhost.exe" 944 2025-07-24T05:30:15.2313071Z 2025-07-24T05:30:15.2313521Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 128 2025-07-24T05:30:15.2314047Z 2025-07-24T05:30:15.2314835Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 476 2025-07-24T05:30:15.2315402Z 2025-07-24T05:30:15.2315950Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 488 2025-07-24T05:30:15.2316586Z 2025-07-24T05:30:15.2317336Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1112 2025-07-24T05:30:15.2318036Z 2025-07-24T05:30:15.2318333Z dwm.exe "dwm.exe" 1156 2025-07-24T05:30:15.2318724Z 2025-07-24T05:30:15.2319742Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1256 2025-07-24T05:30:15.2320489Z 2025-07-24T05:30:15.2320960Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1316 2025-07-24T05:30:15.2321544Z 2025-07-24T05:30:15.2322085Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1328 2025-07-24T05:30:15.2322747Z 2025-07-24T05:30:15.2323481Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1380 2025-07-24T05:30:15.2324160Z 2025-07-24T05:30:15.2324673Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1432 2025-07-24T05:30:15.2325286Z 2025-07-24T05:30:15.2325848Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1464 2025-07-24T05:30:15.2326429Z 2025-07-24T05:30:15.2327044Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1512 2025-07-24T05:30:15.2327767Z 2025-07-24T05:30:15.2329692Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1536 2025-07-24T05:30:15.2331641Z 2025-07-24T05:30:15.2332142Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1596 2025-07-24T05:30:15.2332805Z 2025-07-24T05:30:15.2333280Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1716 2025-07-24T05:30:15.2333900Z 2025-07-24T05:30:15.2334474Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1724 2025-07-24T05:30:15.2335098Z 2025-07-24T05:30:15.2335618Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1732 2025-07-24T05:30:15.2336238Z 2025-07-24T05:30:15.2336695Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1844 2025-07-24T05:30:15.2337246Z 2025-07-24T05:30:15.2337761Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1916 2025-07-24T05:30:15.2338362Z 2025-07-24T05:30:15.2338916Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1924 2025-07-24T05:30:15.2339602Z 2025-07-24T05:30:15.2340280Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 1952 2025-07-24T05:30:15.2341022Z 2025-07-24T05:30:15.2341517Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 1972 2025-07-24T05:30:15.2342145Z 2025-07-24T05:30:15.2343180Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2032 2025-07-24T05:30:15.2343926Z 2025-07-24T05:30:15.2344408Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2128 2025-07-24T05:30:15.2344998Z 2025-07-24T05:30:15.2345504Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2136 2025-07-24T05:30:15.2346115Z 2025-07-24T05:30:15.2346736Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2256 2025-07-24T05:30:15.2347781Z 2025-07-24T05:30:15.2348472Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2284 2025-07-24T05:30:15.2349230Z 2025-07-24T05:30:15.2349776Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2380 2025-07-24T05:30:15.2350440Z 2025-07-24T05:30:15.2350925Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2468 2025-07-24T05:30:15.2351567Z 2025-07-24T05:30:15.2351959Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2568 2025-07-24T05:30:15.2352507Z 2025-07-24T05:30:15.2353136Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2704 2025-07-24T05:30:15.2353863Z 2025-07-24T05:30:15.2354491Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2712 2025-07-24T05:30:15.2355210Z 2025-07-24T05:30:15.2355730Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2720 2025-07-24T05:30:15.2356382Z 2025-07-24T05:30:15.2356941Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2728 2025-07-24T05:30:15.2357594Z 2025-07-24T05:30:15.2358219Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2736 2025-07-24T05:30:15.2358974Z 2025-07-24T05:30:15.2359497Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2752 2025-07-24T05:30:15.2360136Z 2025-07-24T05:30:15.2360673Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2760 2025-07-24T05:30:15.2361351Z 2025-07-24T05:30:15.2361881Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2768 2025-07-24T05:30:15.2362608Z 2025-07-24T05:30:15.2363363Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3020 2025-07-24T05:30:15.2364197Z 2025-07-24T05:30:15.2364736Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 3028 2025-07-24T05:30:15.2365382Z 2025-07-24T05:30:15.2365898Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3080 2025-07-24T05:30:15.2366565Z 2025-07-24T05:30:15.2366962Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3108 2025-07-24T05:30:15.2367555Z 2025-07-24T05:30:15.2368258Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3132 2025-07-24T05:30:15.2369104Z 2025-07-24T05:30:15.2369766Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3508 2025-07-24T05:30:15.2370525Z 2025-07-24T05:30:15.2371225Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4088 2025-07-24T05:30:15.2371994Z 2025-07-24T05:30:15.2372506Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a77055 /state1:0x41c64e6d 2684 2025-07-24T05:30:15.2373217Z 2025-07-24T05:30:15.2374927Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 2692 2025-07-24T05:30:15.2376734Z 2025-07-24T05:30:15.2377513Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 1676 2025-07-24T05:30:15.2378417Z 2025-07-24T05:30:15.2378783Z vds.exe C:\Windows\System32\vds.exe 1772 2025-07-24T05:30:15.2379245Z 2025-07-24T05:30:15.2379765Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 3336 2025-07-24T05:30:15.2380388Z 2025-07-24T05:30:15.2380992Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 3276 2025-07-24T05:30:15.2381708Z 2025-07-24T05:30:15.2382085Z msdtc.exe C:\Windows\System32\msdtc.exe 2000 2025-07-24T05:30:15.2382565Z 2025-07-24T05:30:15.2383132Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 3944 2025-07-24T05:30:15.2383971Z 2025-07-24T05:30:15.2384697Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 864 2025-07-24T05:30:15.2385425Z 2025-07-24T05:30:15.2385885Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 4240 2025-07-24T05:30:15.2386456Z 2025-07-24T05:30:15.2386948Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 4360 2025-07-24T05:30:15.2387542Z 2025-07-24T05:30:15.2388073Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 4740 2025-07-24T05:30:15.2388699Z 2025-07-24T05:30:15.2389425Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 4920 2025-07-24T05:30:15.2390287Z 2025-07-24T05:30:15.2391946Z 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 4856 2025-07-24T05:30:15.2393625Z 2025-07-24T05:30:15.2394036Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4884 2025-07-24T05:30:15.2396356Z 2025-07-24T05:30:15.2396911Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 4324 2025-07-24T05:30:15.2397555Z 2025-07-24T05:30:15.2398047Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2652 2025-07-24T05:30:15.2398599Z 2025-07-24T05:30:15.2399079Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 1100 2025-07-24T05:30:15.2399671Z 2025-07-24T05:30:15.2400168Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 4928 2025-07-24T05:30:15.2400771Z 2025-07-24T05:30:15.2401330Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 1528 2025-07-24T05:30:15.2401982Z 2025-07-24T05:30:15.2402434Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2316 2025-07-24T05:30:15.2402944Z 2025-07-24T05:30:15.2403470Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2112 1648 4552 2025-07-24T05:30:15.2404087Z 2025-07-24T05:30:15.2404498Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3752 2025-07-24T05:30:15.2405044Z 2025-07-24T05:30:15.2405623Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 1416 2025-07-24T05:30:15.2406329Z 2025-07-24T05:30:15.2407041Z vctip.exe "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\Hostx64\x64\VCTIP.EXE" 4860 2025-07-24T05:30:15.2407782Z 2025-07-24T05:30:15.2408216Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 272 2025-07-24T05:30:15.2408740Z 2025-07-24T05:30:15.2409564Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\1c3c7574-4422-44ec-b4e5-bf7c3c68418c.ps1'" 1680 2025-07-24T05:30:15.2410470Z 2025-07-24T05:30:15.2411056Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 3656 2025-07-24T05:30:15.2411758Z 2025-07-24T05:30:15.2411765Z 2025-07-24T05:30:15.2411769Z 2025-07-24T05:30:15.2694484Z ##[group]Run nick-fields/retry@v3.0.0 2025-07-24T05:30:15.2694776Z with: 2025-07-24T05:30:15.2694956Z shell: bash 2025-07-24T05:30:15.2695156Z timeout_minutes: 5 2025-07-24T05:30:15.2695357Z max_attempts: 3 2025-07-24T05:30:15.2695559Z retry_wait_seconds: 90 2025-07-24T05:30:15.2696583Z command: set +e set -x if [ -n "${EXTRA_DELETE_DIR}" ]; then # It's ok to fail to clean up the extra directory on Windows as it only contains # the build artifacts and doesn't take up much space, i.e. /c/5053411580/build-results rm -rf "${EXTRA_DELETE_DIR}" || true fi rm -rf ./* 2025-07-24T05:30:15.2697676Z polling_interval_seconds: 1 2025-07-24T05:30:15.2697969Z warning_on_retry: true 2025-07-24T05:30:15.2698194Z continue_on_error: false 2025-07-24T05:30:15.2698417Z env: 2025-07-24T05:30:15.2698604Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:30:15.2698981Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:30:15.2699508Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:30:15.2699972Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:30:15.2700467Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:30:15.2700803Z EXTRA_DELETE_DIR: /c/16487210679/build-results/ 2025-07-24T05:30:15.2701105Z ##[endgroup] 2025-07-24T05:30:15.6040867Z + '[' -n /c/16487210679/build-results/ ']' 2025-07-24T05:30:15.6041226Z + rm -rf /c/16487210679/build-results/ 2025-07-24T05:30:15.7069575Z + rm -rf ./AGENTS.md ./BUCK.oss ./BUILD.bazel ./CITATION.cff ./CMakeLists.txt ./CODEOWNERS ./CODE_OF_CONDUCT.md ./CONTRIBUTING.md ./Dockerfile ./GLOSSARY.md ./LICENSE ./MANIFEST.in ./Makefile ./NOTICE ./README.md ./RELEASE.md ./SECURITY.md ./WORKSPACE ./android ./aten ./aten.bzl ./benchmarks ./binaries ./buckbuild.bzl ./build ./build.bzl ./build_variables.bzl ./c10 ./caffe2 ./cmake ./compile_commands.json ./defs.bzl ./dist ./docker.Makefile ./docs ./functorch ./mypy-strict.ini ./mypy.ini ./mypy_plugins ./pt_ops.bzl ./pt_template_srcs.bzl ./pyproject.toml ./pyrefly.toml ./pytest.ini ./requirements-build.txt ./requirements.txt ./sccache-stats-win-vs2022-cuda12.6-py3-46614187338.json ./scripts ./setup.py ./test ./third_party ./tools ./torch ./torch.egg-info ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./version.txt 2025-07-24T05:30:46.7053387Z Command completed after 1 attempt(s). 2025-07-24T05:30:46.7271182Z ##[group]Run handle C:\actions-runner\_work\ 2025-07-24T05:30:46.7271540Z handle C:\actions-runner\_work\ 2025-07-24T05:30:46.7292981Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T05:30:46.7293452Z env: 2025-07-24T05:30:46.7293644Z GIT_DEFAULT_BRANCH: main 2025-07-24T05:30:46.7294033Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-24T05:30:46.7294575Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-24T05:30:46.7295085Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-24T05:30:46.7295490Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-24T05:30:46.7295795Z ##[endgroup] 2025-07-24T05:30:47.0994396Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T05:30:47.1070432Z Finished 2025-07-24T05:30:47.4708995Z 2025-07-24T05:30:47.4709418Z Nthandle v5.0 - Handle viewer 2025-07-24T05:30:47.4709741Z Copyright (C) 1997-2022 Mark Russinovich 2025-07-24T05:30:47.4710060Z Sysinternals - www.sysinternals.com 2025-07-24T05:30:47.4710251Z 2025-07-24T05:30:47.5078929Z powershell.exe pid: 5988 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T05:30:47.5079555Z handle.exe pid: 2900 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T05:30:47.5080136Z handle.exe pid: 3176 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T05:30:47.5080711Z handle64.exe pid: 5364 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-07-24T05:30:47.6288287Z Post job cleanup. 2025-07-24T05:30:47.6410790Z Post job cleanup. 2025-07-24T05:30:48.3358931Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-07-24T05:30:48.3580628Z git version 2.49.0.windows.1 2025-07-24T05:30:48.3653995Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\1d837877-c097-4214-8103-1c024e743a1b\.gitconfig' 2025-07-24T05:30:48.3660018Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\1d837877-c097-4214-8103-1c024e743a1b' before making global git config changes 2025-07-24T05:30:48.3660868Z Adding repository directory to the temporary git global config as a safe directory 2025-07-24T05:30:48.3671999Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-07-24T05:30:48.3958037Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-07-24T05:30:48.4229007Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2025-07-24T05:30:48.8905744Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-07-24T05:30:48.9124716Z http.https://github.com/.extraheader 2025-07-24T05:30:48.9171505Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-07-24T05:30:48.9477842Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2025-07-24T05:30:49.3950078Z A job completed hook has been configured by the self-hosted runner administrator 2025-07-24T05:30:49.3992996Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-07-24T05:30:49.4009388Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-24T05:30:49.4009898Z ##[endgroup] 2025-07-24T05:30:49.7772718Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-24T05:30:49.7823308Z Finished 2025-07-24T05:30:51.3655025Z Evaluate and set job outputs 2025-07-24T05:30:51.3660739Z Cleaning up orphan processes 2025-07-24T05:30:51.6231394Z Terminate orphan process: pid (4860) (vctip)